diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..4a0af36 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,48 @@ +name: GitHub Pages - CI + +on: + push: + paths-ignore: + - "images/**" + - "LICENSE" + - "README.md" + - "README_**" + - "README-**" + branches: + - main + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v4 + with: + ref: main + submodules: true + fetch_depth: 1 + persist-credentials: false + + - name: Setup Hugo 🔧 + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: 'latest' + extended: true + + - name: Build 🔧 + run: | + hugo --buildDrafts --gc --logLevel info --minify + + - name: Deploy 🚀 + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_branch: gh-pages # default: gh-pages + publish_dir: ./public # default: public + # cname: github.com + # user_name: 'github-actions[bot]' + # user_email: 'github-actions[bot]@users.noreply.github.com' + # commit_message: ${{ github.event.head_commit.message }} + # full_commit_message: ${{ github.event.head_commit.message }} + # enable_jekyll: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cb84f7b --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +.DS_Store +Thumbs.db +db.json +*.log +node_modules/ +public/ +.deploy*/ +.hugo_build.lock +_multiconfig.yml +package-lock.json +yarn.lock + +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..59f9ae0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 awesome-actions-template + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..8619e84 --- /dev/null +++ b/README.md @@ -0,0 +1,107 @@ +
+ 中文 | English +
+ +Hugo logo + +
+ +

Hugo Template

+ +

A fast and flexible static site generator built with love by bep, spf13, and friends in Go.

+ +
+ +
+ +
+Demo | +Official | +Docs | +Community +
+ +
+ +## Get Started + +### Define Domain + +Change the `baseURL` in `config.yml` or `config.toml` to your site's URL + +```yml +baseURL: "https://lopins.github.io/hugo-template" +``` + +### [Configure Theme](https://github.com/lopins/hugo-template/issues/2) + +1. pull theme into `themes/` and update it. + + `git submodule add git@github.com:zhaohuabing/hugo-theme-cleanwhite.git themes/cleanwhite && git submodule update --init --recursive` + + `cp -r exampleSite/* ../` + +2. In `config.yml` or `config.toml`, change the value of the `theme` property to "cleanwhite" + +~~3. update `editPost: "https://github.com/lopins/hugo-template/tree/main/content"` in `config.yml` or `config.toml`~~ + +### Push to Github + +`git add . && git commit -m ':wrench:docs(themes): Add or update configuration files' && git push origin main` + +### [Publish Article](https://github.com/lopins/hugo-template/issues/1) + +1. Install + + Click "Use this template" -> "Create a new repository" + +![1. Create a new repository](https://github.com/user-attachments/assets/1046f118-8c2a-4ed8-bc8b-1258941455c4) + +2. Set up + + Set up and enable GitHub Pages service + +![2. Set up GitHub Pages branch](https://github.com/user-attachments/assets/acd90bfd-0a25-4809-a39b-fc5d562f414b) + +3. Publish + + Publish an article on the "hugo branch" of Github. + +![3. Write or Upload an Markdown file](https://github.com/user-attachments/assets/2b1a97ea-ac79-4647-a340-f71569699c11) + +## Notice + +### **Submodule** to Change Theme + +``` +# Add Submodule - Upadte Submodule +git submodule add git@github.com:zhaohuabing/hugo-theme-cleanwhite.git themes/cleanwhite +git submodule update --init --recursive + +# Delete Submodule +git submodule deinit -f themes/cleanwhite +rm -rf .git/modules/themes/cleanwhite +rm -rf themes/cleanwhite +git config --remove-section submodule.themes/cleanwhite +git config -f .gitmodules --remove-section submodule.themes/cleanwhite +git rm --cached themes/cleanwhite +git add . && git commit -m 'Update .gitmodules before removing submodule' + + +# Display Submodule - Pull Submodule - Sync Submodule +git submodule status +git submodule foreach git pull origin main +git submodule sync +``` + +### Permission + +If you meet the problem like `remote: Permission to xxx denied to github-actions[bot].` + +When you push your changes, you need to give the permission to the `github-actions[bot]` in your repo's. + +By following the steps below: `Settings -> Actions -> General -> Workflow permissions -> Read and write permissions -> Save`. + +## License + +[MIT License](LICENSE). \ No newline at end of file diff --git a/README_CN.md b/README_CN.md new file mode 100644 index 0000000..5e169fd --- /dev/null +++ b/README_CN.md @@ -0,0 +1,107 @@ +
+ 中文 | English +
+ +Hugo logo + +
+ +

Hugo Template

+ +

一个由bep、spf13和其好友基于Go构建的快速灵活的静态站点生成器框架。 这是它的模板。

+ +
+ +
+ +
+演示 | +官网 | +文档 | +社区 +
+ +
+ +## 快速开始 + +### 修改域名 + +修改 `config.yml` 或者 `config.toml` 中的 `baseURL` 值 + +```yml +baseURL: "https://lopins.github.io/hugo-template" +``` + +### [配置主题](https://github.com/lopins/hugo-template/issues/2) + +1. 拉取主题并进入 `themes/` 并更新相关信息 + + `git submodule add git@github.com:zhaohuabing/hugo-theme-cleanwhite.git themes/cleanwhite && git submodule update --init --recursive` + + `cp -r exampleSite/* ../` + +2. 在 `config.yml` 或者 `config.toml` 修改 `theme` 属性值为 "cleanwhite"` + +~~3. 在 `config.yml` 或者 `config.toml` 修改 `editPost: "https://github.com/lopins/hugo-template/tree/main/content"`~~ + +### 应用配置 + +`git add . && git commit -m ':wrench:docs(themes): Add or update configuration files' && git push origin main` + +### [发布文章](https://github.com/lopins/hugo-template/issues/1) + +1. 启用站点 + + 点击 "Use this template" -> "Create a new repository" + +![1. Create a new repository](https://github.com/user-attachments/assets/1046f118-8c2a-4ed8-bc8b-1258941455c4) + +2. 配置站点 + + 设置并且启用 GitHub Pages 服务 + +![2. Set up GitHub Pages branch](https://github.com/user-attachments/assets/acd90bfd-0a25-4809-a39b-fc5d562f414b) + +3. 发布文章 + + 发布文章在 `hugo` 分支。 + +![3. Write or Upload an Markdown file](https://github.com/user-attachments/assets/2b1a97ea-ac79-4647-a340-f71569699c11) + +## 特别注意 + +### 使用 **Submodule** 切换主题 + +``` +# Add Submodule - Upadte Submodule +git submodule add git@github.com:zhaohuabing/hugo-theme-cleanwhite.git themes/cleanwhite +git submodule update --init --recursive + +# Delete Submodule +git submodule deinit -f themes/cleanwhite +rm -rf .git/modules/themes/cleanwhite +rm -rf themes/cleanwhite +git config --remove-section submodule.themes/cleanwhite +git config -f .gitmodules --remove-section submodule.themes/cleanwhite +git rm --cached themes/cleanwhite +git add . && git commit -m 'Update .gitmodules before removing submodule' + + +# Display Submodule - Pull Submodule - Sync Submodule +git submodule status +git submodule foreach git pull origin main +git submodule sync +``` + +### 权限问题 + +如果你遇到类似 `remote: Permission to xxx denied to github-actions[bot].` + +当你推送更改时,你需要设置仓库的 `github-actions[bot]` 权限. + +设置步骤: `Settings -> Actions -> General -> Workflow permissions -> Read and write permissions -> Save`. + +## 开源协议 + +[MIT License](LICENSE). diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..815586a --- /dev/null +++ b/config.toml @@ -0,0 +1,69 @@ +baseURL = 'https://www.wooooden.com/' +languageCode = 'zh-CN' +title = '装配师' + +theme = 'huishou' + +enableRobotsTXT = true +paginate = 5 #frontpage pagination +preserveTaxonomyNames = true +hasCJKLanguage = true + +[outputs] + home = ['html', 'rss'] + section = ['html', 'rss'] + taxonomy = ['html'] + term = ['html'] + +[permalinks] + posts = "/news/:slug/" + +[params] + # contentTypeName = "posts" + phoneNumber = '185-1668-7118' + companyName = '佳匠实业' + companyAddress = '上海市松江区石湖荡镇石湖新路95号' + companyStart = '2018' + companyBeian = '沪ICP备2021004498号' + +[menu] + [[menu.main]] + identifier = "home" + name = "首页" + url = "/" + weight = 1 + [[menu.main]] + identifier = "product" + name = "产品中心" + url = "/product/" + weight = 2 + [[menu.main]] + identifier = "case" + name = "案例中心" + url = "/case/" + weight = 3 + [[menu.main]] + identifier = "esg" + name = "ESG理念" + url = "/esg/" + weight = 4 + [[menu.main]] + identifier = "news" + name = "行业资讯" + url = "/news/" + weight = 5 + [[menu.main]] + identifier = "about" + name = "关于我们" + url = "/about/" + weight = 6 + [[menu.main]] + identifier = "kefu" + name = "联系我们" + url = "/kefu/" + weight = 7 + +[module] + [module.hugoVersion] + extended = true + min = "0.125.0" diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..43a1b62 --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,12 @@ +--- +title: "About" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "about" +permalink: "/about/" +layout: "about" +--- + +This is the about page content. \ No newline at end of file diff --git a/content/case/_index.md b/content/case/_index.md new file mode 100644 index 0000000..c96599a --- /dev/null +++ b/content/case/_index.md @@ -0,0 +1,12 @@ +--- +title: "case" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "case" +permalink: "/case/" +layout: "case" +--- + +This is the case page content. \ No newline at end of file diff --git a/content/esg/_index.md b/content/esg/_index.md new file mode 100644 index 0000000..af88828 --- /dev/null +++ b/content/esg/_index.md @@ -0,0 +1,12 @@ +--- +title: "Esg" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "esg" +permalink: "/esg/" +layout: "esg" +--- + +This is the esg page content. \ No newline at end of file diff --git a/content/kefu/_index.md b/content/kefu/_index.md new file mode 100644 index 0000000..3755305 --- /dev/null +++ b/content/kefu/_index.md @@ -0,0 +1,12 @@ +--- +title: "Kefu" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "kefu" +permalink: "/kefu/" +layout: "kefu" +--- + +This is the kefu page content. \ No newline at end of file diff --git a/content/news/_index.md b/content/news/_index.md new file mode 100644 index 0000000..4946f34 --- /dev/null +++ b/content/news/_index.md @@ -0,0 +1,12 @@ +--- +title: "News" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "news" +permalink: "/news/" +layout: "news" +--- + +This is the news page content. \ No newline at end of file diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..e7066c0 --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,7 @@ ++++ +title = 'Posts' +date = 2023-01-01T08:30:00-07:00 +draft = false ++++ + +Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat. diff --git a/content/posts/post-1.md b/content/posts/post-1.md new file mode 100644 index 0000000..3a2ab24 --- /dev/null +++ b/content/posts/post-1.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/1' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/content/posts/post-10.md b/content/posts/post-10.md new file mode 100644 index 0000000..b20b87f --- /dev/null +++ b/content/posts/post-10.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/10' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/content/posts/post-2.md b/content/posts/post-2.md new file mode 100644 index 0000000..2d60b4f --- /dev/null +++ b/content/posts/post-2.md @@ -0,0 +1,34 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/2' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 diff --git a/content/posts/post-3.md b/content/posts/post-3.md new file mode 100644 index 0000000..78d5d25 --- /dev/null +++ b/content/posts/post-3.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/3' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/content/posts/post-4.md b/content/posts/post-4.md new file mode 100644 index 0000000..73b60a6 --- /dev/null +++ b/content/posts/post-4.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/4' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/content/posts/post-5.md b/content/posts/post-5.md new file mode 100644 index 0000000..e617716 --- /dev/null +++ b/content/posts/post-5.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/5' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/content/posts/post-6.md b/content/posts/post-6.md new file mode 100644 index 0000000..4f16e01 --- /dev/null +++ b/content/posts/post-6.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/6' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/content/posts/post-7.md b/content/posts/post-7.md new file mode 100644 index 0000000..c29f5c2 --- /dev/null +++ b/content/posts/post-7.md @@ -0,0 +1,40 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/7' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + + + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。第二树作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + + + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 + + \ No newline at end of file diff --git a/content/posts/post-8.md b/content/posts/post-8.md new file mode 100644 index 0000000..8556a63 --- /dev/null +++ b/content/posts/post-8.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/content/posts/post-9.md b/content/posts/post-9.md new file mode 100644 index 0000000..8d0e953 --- /dev/null +++ b/content/posts/post-9.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/content/product/_index.md b/content/product/_index.md new file mode 100644 index 0000000..1cd237f --- /dev/null +++ b/content/product/_index.md @@ -0,0 +1,12 @@ +--- +title: "Product" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "product" +permalink: "/product/" +layout: "product" +--- + +This is the product page content. \ No newline at end of file diff --git a/static/assets/css/about.css b/static/assets/css/about.css new file mode 100644 index 0000000..45847bb --- /dev/null +++ b/static/assets/css/about.css @@ -0,0 +1,550 @@ +.layout-tilte { + text-align: center; + padding: 50px 0; +} + +.layout-tilte p:nth-child(1) { + font-size: 45px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; + padding-bottom: 20px; +} + +.layout-tilte p:nth-child(2) { + width: 75px; + margin: 0 auto; + border: 2px solid #50972c; +} + +/*头部banner*/ +.banner-about { + height: 867px; + background-image: url(../images/banner.jpg); + background-repeat: no-repeat; + background-position: center; +} +.about-banner-box{ + position: relative; + top: 150px; + color: #ffffff; + margin: 0 20px; +} +.box-logo{ + +} +.box-title{ + font-size: 70px; + margin-top: 55px; + width: 600px; + display: flex; + flex-flow: column; + line-height: 80px; +} +.box-title em{ + width: 160px; + height: 3px; + background-color: #ffffff; + margin-top: 40px; +} +.box-number{ + display: flex; + justify-content: space-between; + width: 750px; +} +.box-number dl{ + width: 230px; + height: 100px; + border: 1px solid; + border-radius: 15px; + margin-top: 80px; + display: flex; + flex-flow: column; + text-align: center; + align-items: center; + justify-content: center; +} +.box-number dt{ + font-size: 40px; +} +.box-number dt em{ + font-size: 24px; + padding-left: 5px; +} +.box-number dd{ + font-size: 18px; +} + +/*品牌介绍*/ +.brand-intro{ + height: 867px; + background-image: url(../images/brand-intro.jpg); + background-repeat: no-repeat; + background-position: center; +} +.intro-box{ + height: 100%; + color: #ffffff; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro-title{ + font-size: 60px; + padding-bottom: 75px; +} +.intro-content{ + font-size: 25px; + line-height: 46px; + padding-bottom: 60px; +} +.intro-video{ + font-size: 25px; + display: flex; + justify-content: center; + text-align: center; + align-items: center; + cursor: pointer; +} +.intro-video img{ + width:28px; + height:28px; + padding-left:10px; +} + + +/*展厅实景*/ +.zt-site{ + height: 867px; + background-image: url(../images/site-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.site-box { + position: relative; +} +.zt-nav{ + padding-bottom: 40px; +} +.zt-nav ul{ + display: flex; + justify-content: center; + font-size: 18px; +} +.zt-nav ul li{ + /*width: 117px;*/ + cursor: pointer; + padding: 0 15px; +} +.zt-nav .active { + background-color: #1f8031; + color: #ffffff; + padding: 5px 15px; + border-radius: 25px; +} +.zt-intro { + height: 527px; + background-color: #fff; + display: flex; +} + +.zt-intro ul { + width: 291px; + height: 527px; + padding: 0 48px; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; +} +.zt-intro ul li:nth-child(1) { + color: #1f8031; + font-size: 39px; + font-weight: 700; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(2) { + font-size: 26px; + line-height: 35px; + color: #8a8a8a; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(3) { + font-size: 22px; + line-height: 30px; + color: #8a8a8a; + letter-spacing: 0.63px; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(4){ + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + align-items: center; +} +.zt-intro ul li:nth-child(4) span:nth-child(1) { + font-size: 22px; + color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; + margin-bottom: 25px; +} +.zt-intro ul li:nth-child(4) span:nth-child(2) { + font-size: 22px; + color: #ffffff; + background-color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; +} +.zt-intro .intro-img { + width: 893px; + height: 527px; +} +.zt-intro .intro-img .swiper-slide{ + height: 527px; +} +.zt-intro .intro-img img{ + width: 100%; + height: 100%; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-button-prev { + top: 555px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #ffffff; + color: #1f8031; +} +.zt-intro .swiper-button-next:after, .zt-intro .swiper-button-prev:after{ + font-size: 14px !important; +} +.zt-intro .swiper-button-prev, .zt-intro .swiper-container-rtl .swiper-button-next { + left: 92% !important; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-container-rtl .swiper-button-prev { + right: 2% !important; +} +.zt-intro .swiper-button-next.swiper-button-disabled, .zt-intro .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +/*企业文化*/ +.qywh{ + height: 867px; + background-image: url(../images/qywh1-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.qywh-box .slide-content{ + display: flex; + color: #ffffff; +} +.qywh-box .slide-content .slide-content-left{ + width: 584px; + padding-left: 120px; + padding-top: 63px; + background-color: rgba(255,255,255,0.1); +} +.qywh-box .slide-content .slide-content-left div:nth-child(1){ + font-size: 32px; + display: flex; + align-items: center; + padding-bottom: 90px; +} +.qywh-box .slide-content .slide-content-left em{ + width: 5px; + height: 29px; + background-color: #1f8031; + margin-right: 13px; + margin-top: 4px; +} +.qywh-box .slide-content .slide-content-left div:nth-child(2){ + font-size: 30px; +} +.qywh-box .slide-content img{ + +} + +.solid-qywh{ + color: #ffffff; + padding-top: 65px; + font-size: 20px; +} +.solid-qywh .swiper-wrapper { + display: flex; + justify-content: center; + border-top: 1px solid; +} +.solid-qywh .swiper-slide { + width: 190px !important; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + padding-top: 15px; + cursor: pointer; +} +.solid-qywh .swiper-slide em:nth-child(1){ + display: inline-block; + width: 10px; + height: 10px; + border-radius: 20px; + background-color: #ffffff; + position: absolute; + top: -6px; + z-index: 99; +} +.solid-qywh .swiper-slide em:nth-child(2){ + display: inline-block; + width: 20px; + height: 20px; + border-radius: 20px; + background-color: rgba(255,255,255,0.3); + position: absolute; + top: -11px; + z-index: 98; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(1){ + background-color: #50972c; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(2){ + background-color: rgba(82,151,45,0.3); +} + +/*荣誉*/ +.part5{ + height: 867px; + background-image: url(../images/banner-certify.jpg); + background-repeat: no-repeat; + background-position: center; +} + +/*发展历程*/ +.course{ + height: 867px; + background-image: url(../images/banner-course.jpg); + background-repeat: no-repeat; + background-position: center; +} +.milestone-tab{ + border-bottom: 1px solid #ffffff !important; +} +.milestone-tab .item-li{ + margin: 0 auto; + text-align: center; + display: flex; + flex-flow: wrap; + align-items: flex-end; + height: 100px !important; + position: relative; +} +.milestone-title { + text-align: center; + /*margin: 0 auto 10px !important;*/ + color: #ffffff; +} +.milestone-title .swiper-slide-thumb-active{ + /*color: #50972c;*/ + /*border-bottom: 2px solid #50972c;*/ + /*font-weight: bold;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li div{ + margin: 0 7px; + border-radius: 50% !important; + position: absolute; + right: 0; +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active1{ + /*width: 1px !important;*/ + /*height: 15px !important;*/ + /*background: #ffffff !important;*/ + /*z-index: 1;*/ + /*right: 10px;*/ + /*bottom: 0px;*/ + /*border-radius: unset !important;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active2{ + width: 20px !important; + height: 20px !important; + z-index: 2; + background: #50972d !important; + right: 3px; + bottom: 3px; + +} + +.milestone-title .swiper-slide-thumb-active span{ + font-size: 60px !important; + top: 0 !important; + left: 125px !important;; +} +.milestone-title .swiper-slide { + width: 195px !important; + padding-right: 10px; + margin: 0 !important; + height: 100px !important; + position: relative !important; +} +.milestone-title .swiper-slide span{ + top: 20px; + left: 155px; + font-size: 30px; +} +.milestone-title .swiper-slide .item-li div{ + width: 1px !important; + height: 15px !important; + background: #ffffff !important; + margin: 0 7px; + position: absolute; + right: 0; + bottom: 0; +} + +.milestone-item dl{ + display: flex; +} +.milestone-item dt{ + width: 494px; + height: 336px; +} +.milestone-item img{ + width: 100%; + /*border-radius: 5px 0 0 5px;*/ +} +.milestone-item dd{ + font-size: 16px; + color: #747272; + padding: 30px 40px; + line-height: 30px; + width: 606px; + height: 276px; + background: #ffffff; + /*border-radius: 0 5px 5px 0;*/ +} +.milestone-item dd p{ + line-height: 30px; +} +.milestone-item dd span{ + font-weight: 700; + color: #50972c; +} +.course-box{ + width: 1180px; + margin-left: 50px; + padding-top: 30px; +} +.course .swiper-button-next, .course .swiper-button-prev { + top: 260px !important; +} +.course .swiper-button-prev, +.course .swiper-container-rtl .swiper-button-next { + left: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} +.course .swiper-button-next:after, .course .swiper-button-prev:after{ + font-size: 16px !important; +} +.course .swiper-button-next, +.course .swiper-container-rtl .swiper-button-prev { + right: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} + + +/*爱心公益*/ +.welfare{ + height: 800px; + +} +.welfare-box{ + position: relative; +} +.welfare-box .swiper-welfare{ + height: 460px; +} +.welfare-box .swiper-welfare .swiper-slide{ + +} +.welfare-box .swiper-welfare .swiper-slide-active{ + /*background-color: #1f8031 !important;*/ + /*color: #ffffff;*/ +} +.welfare-box .swiper-button-next, .welfare-box .swiper-button-prev { + top: 530px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #1f8031; + color: #ffffff; +} +.welfare-box .swiper-button-next:after, .welfare-box .swiper-button-prev:after{ + font-size: 14px !important; +} +.welfare-box .swiper-button-prev, .welfare-box .swiper-container-rtl .swiper-button-next { + left: 89% !important; +} +.welfare-box .swiper-button-next, .welfare-box .swiper-container-rtl .swiper-button-prev { + right: 4% !important; +} +.welfare-box .swiper-button-next.swiper-button-disabled, .welfare-box .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +.welfare-box .swiper-welfare .swiper-slide dl{ + width: 265px; + height: 400px; + padding: 20px; + font-size: 18px; + background-color: #f5f5f5; +} +.welfare-box .swiper-welfare .swiper-slide dl:hover{ + background-color: #1f8031 !important; + color: #ffffff; + cursor: pointer; +} +.welfare-box .swiper-welfare .swiper-slide dl img{ + width: 100%; +} +.welfare-box .swiper-welfare .swiper-slide dt{ + padding-bottom: 35px; +} +.welfare-box .swiper-welfare .swiper-slide dd{ + +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(1){ + padding-bottom: 15px; + font-weight: 700; +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(2){ + line-height: 30px; + font-size: 16px; +} +.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{ + top: unset; + bottom: 0; +} +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ + background-color: #1f8031; +} \ No newline at end of file diff --git a/static/assets/css/animate.min.css b/static/assets/css/animate.min.css new file mode 100644 index 0000000..e7dd655 --- /dev/null +++ b/static/assets/css/animate.min.css @@ -0,0 +1,11 @@ +@charset "UTF-8"; + +/*! + * animate.css -http://daneden.me/animate + * Version - 3.5.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2017 Daniel Eden + */ + +.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:none}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:none}}.wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:none}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:jello;transform-origin:center}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-name:hinge}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:none}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:zoomOutUp}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:slideOutUp} \ No newline at end of file diff --git a/static/assets/css/case.css b/static/assets/css/case.css new file mode 100644 index 0000000..c94867e --- /dev/null +++ b/static/assets/css/case.css @@ -0,0 +1,397 @@ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} + +/*头部轮播*/ +.banner{ + position: relative; + height: 750px; + background-position: top; + background-size: cover; + background-repeat: no-repeat; +} +.banner img{ + width: 100%; +} +.banner video{ + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; + -o-object-position: center top; + object-position: center top; +} +.banner .video-div{ + background-color: rgba(0, 0, 0, 0.4); + z-index: 7; + width: 100%; + height: 100%; + position: absolute; + pointer-events: auto; +} +.banner .banner-box{ + position: absolute; + top: 0; + width: 100%; + height: 100%; + color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + z-index: 8; +} +.banner .title{ + margin-bottom: 100px; +} +.banner .title p:nth-child(1){ + font-size: 65px; + padding-bottom: 50px; + } +.banner .title p:nth-child(2){ + width: 100px; + height: 5px; + background-color: #fff; + margin: 0 auto; +} +.banner .box-number{ + display: flex; + flex-flow: wrap; + justify-content: center; + margin-bottom: 130px; +} +.banner .box-number dl{ + padding: 0 100px; +} +.banner .box-number dt{ + font-size: 54px; +} +.banner .box-number dd{ + font-size: 18px; +} + +/* 案例Item */ +.case { + /*background-image: url(../images/case-bg.jpg);*/ + /*background-repeat: no-repeat;*/ + /*background-position: center;*/ + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + /*color: #ffffff;*/ +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + /*color: #ffffff;*/ +} +.case-tab a:hover{ + /*color: #ffffff;*/ +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + /*color: #ffffff;*/ +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #f4f4f4; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + +/*案例装修*/ +.case-trim{ + background-color: #f5f6f8; + padding-bottom: 30px; +} +.case-trim .case-list{ + +} +.case-trim .case-list .list-title{ + display: flex; + font-size: 16px; + align-items: center; + margin-bottom: 20px; +} +.case-trim .case-list .list-title ul{ + display: flex; +} +.case-trim .case-list .list-title li{ + border: 1px solid #999; + padding: 5px 15px; + margin-right: 15px; + cursor: pointer; +} +.case-trim .case-list .list-title .active{ + background-color: #b90010; + color: #fff; + border: 1px solid #b90010; +} +.case-trim .case-list .list-box{ + display: flex; + flex-flow: wrap; + min-height: 450px; +} +.case-trim .case-list .list-box dl{ + width: 308px; + height: 310px; +} +.case-trim .case-list .list-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.list-box .margin-rb { + margin: 0 15px 15px 0; +} +.case-trim .case-list .list-box dt{ + height: 230px; +} +.case-trim .case-list .list-box dt img{ + width: 100%; + height: 100%; +} +.case-trim .case-list .list-box dd{ + padding: 15px 10px; + background-color: #fff; +} +.case-trim .case-list .list-box dd p:nth-child(1){ + font-size: 16px; + padding-bottom: 10px; +} +.case-trim .case-list .list-box dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +/*案例回收*/ +.case-recycling{ + background-color: #ffffff; +} +.case-recycling .recycling-box{ + display: flex; + flex-flow: wrap; + padding-top: 30px; +} +.case-recycling .recycling-box dl{ + width: 308px; + height: 325px; + position: relative; +} +.case-recycling .recycling-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.case-recycling .recycling-box dt{ + height: 230px; +} +.case-recycling .recycling-box dt img{ + width: 100%; + height: 100%; +} +.case-recycling .recycling-box dd{ + padding: 15px 10px; + background-color: #f5f6f8; + height: 70px; + overflow: hidden; + /*position: absolute;*/ + /*bottom: 0;*/ + /*left: 0;*/ + /*transition: .5s;*/ + /*line-height: 22px;*/ +} +/*.case-recycling .recycling-box dd:hover{*/ + /*height: 220px;*/ +/*}*/ +.case-recycling .recycling-box dd p:nth-child(1){ + font-size: 16px; + font-weight: 700; + padding-bottom: 10px; +} +.case-recycling .recycling-box dd p:nth-child(2){ + font-size: 14px; + /*display: flex;*/ + /*justify-content: space-between;*/ + color: #999; + height: 40px; + overflow: hidden; +} +.recycling-box .margin-rb { + margin: 0 15px 15px 0; +} + +.recycling-mask { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 25px; + background-image: linear-gradient(rgba(255,255,255,.25),#fff); +} + + +.banner-bottom{ + padding: 30px 0; +} + +.case-more { + width: 280px; + height: 45px; + line-height: 45px; + text-align: center; + /*border: 1px solid #50972c;*/ + color: #50972c; + font-size: 20px; + margin: 20px auto 0; + cursor: pointer; +} \ No newline at end of file diff --git a/static/assets/css/certify.css b/static/assets/css/certify.css new file mode 100644 index 0000000..463f748 --- /dev/null +++ b/static/assets/css/certify.css @@ -0,0 +1,82 @@ +@charset "utf-8"; +/* CSS Document */ + +#certify { + position: relative; + width: 1200px; + margin: 0 auto +} + +#certify .swiper-container { + padding-bottom: 120px; + padding-top: 60px; +} + +#certify .swiper-slide { + width: 520px; + height: 408px; + background: #fff; + box-shadow: 0 8px 30px #ddd; +} +#certify .swiper-slide img{ + display:block; + width: 100%; +} +#certify .swiper-slide p { + line-height: 98px; + padding-top: 0; + text-align: center; + color: #636363; + font-size: 18px; + margin: 0; +} + +#certify .swiper-pagination { + width: 100%; + bottom: 20px; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet { + margin: 0 5px; + border: 3px solid #fff; + background-color: #d5d5d5; + width: 10px; + height: 10px; + opacity: 1; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet-active { + border: 3px solid #50972c; + background-color: #50972c; +} + +#certify .swiper-button-prev { + left: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 0; + background-size: 100%; +} + +#certify .swiper-button-prev:hover { + background-position: 0 -46px; + background-size: 100% +} + +#certify .swiper-button-next { + right: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 -93px; + background-size: 100%; +} + +#certify .swiper-button-next:hover { + background-position: 0 -139px; + background-size: 100% +} +#certify .swiper-button-prev::after,#certify .swiper-button-next::after{ + content: ''; +} \ No newline at end of file diff --git a/static/assets/css/esg.css b/static/assets/css/esg.css new file mode 100644 index 0000000..e3985ad --- /dev/null +++ b/static/assets/css/esg.css @@ -0,0 +1,239 @@ +/* 通用Title */ +.layout { + background-color: #fff; +} + +.layout-title { + padding: 60px 0; + text-align: center; +} + +.layout-title p:nth-child(1) { + font-size: 36px; + font-weight: bold; + padding-bottom: 10px; +} + +.layout-title p:nth-child(2) { + font-size: 22px; + margin-top: 6px; + /*color: #747272;*/ +} + + + +/*服务优势*/ +.ys-item{ + +} +.ys-item dl{ + display: flex; + flex-flow: column; + /*justify-content: center;*/ + text-align: left; + width: 200px; + height: 240px; + background: #f7f7f7; + border-radius: 10px; + margin-bottom: 20px; + box-shadow: 0 0 10px 3px #e8e8e8; + padding: 0 40px; +} + +.ys-item dt{ + font-size: 42px; + color: #50972c; + font-family: fantasy; + padding-top: 35px; + height: 50px; +} +.ys-item dd{ + padding-top: 10px; +} +.ys-item dd p:nth-child(1){ + width: 80px; + border: 1px solid #50972c; +} +.ys-item dd p:nth-child(2){ + color: #747272; + letter-spacing: 0.43px; + text-align: justify; + line-height: 25px; + padding-top: 10px; + font-size: 18px; +} + +/*产业*/ +.famous { + position: relative; + border-radius: 5px; + overflow: hidden; +} +.famous .swiper-button-next, +.famous .swiper-button-prev { + top: 360px !important; +} +.famous .swiper-button-prev, +.famous .swiper-container-rtl .swiper-button-next { + left: 74% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + width: 1.97917vw; + height: 1.97917vw; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAITgAACE4AUWWMWAAAAXMSURBVHhe7Z2JmeU0EIQHIoAEYIkAiACIgCUBjgiACIAIIAOWBDgS4EiAIwGOBIAIgP4ZC3rqSX5+tiRbsur76vPM7IwtldvVreN57wYGBgZux1PT8Uh4ZHx1Oj43HV8wAr72+HPir9PxJ+OP0/ccBxyeMb5r/Nz4u/GviX9v5B/GL4xvG/UGnQZB3K+NuYS9xm+Mu4le2zqwhDeNj42Ife363hpgDAjHuV7697tl+Mz4oTF1zmaBwCF6Y9EWSNR9YuRGrIk8xOZvOQfnil3D84mxC1uhE3hvSuDgo28YnzXmfsKIdIT/1Bi7fmDTgr9nJLnFOka08e8lxE0B0d8y/mKMtQliJ82AyEjZBAK/Zty7rJwTnJ8fPrpTUUzjjyCwIiU4lkZfDomPjbEo5nHEIo6MD4za7tD2wwDvwyq0kUTKy8ZWgF3EoptkTR93BQ343qiNI7qPHsUp0Hbtzw/G3XybC/9s1EbhbUfz4lsRsxKivXpkxyKZBEI93Auov+mT7yORXVVsBiG+ATSoJT9eCkaaKjYlahWQif2FexU5ICY2Q/yiwH/9BWFPdpECczXa72J1NslPByNNDVk3QoOMKC9SiWiFQRl0Nmjpl92v1ZcpdVov4daAikMHNdkshMdDk0FYwzsjSI5ei2wWonO5Z/LlFPQJZz57E7hT/oQ8NgNxC6EyWQ2NZhY3B+6hJd/qxDii+ToQ12u0KqpHNF+HRvXNI8YRzcvho5oKJDrp9PR0VLwyHQM+mo4Dl/hqOgJEvunJV+/JUid2CsT144zFSVFtY3ONeAJoPruwj5h1qG18OR0H0lCNFtkHfzR7dwYugEZes0Uu4Ec8q4vwE0KrjwdQ62DCxCc+NnbXABERGlp89aIQvFb0Z7aAeN0Y7gpkgbI0aBSLnv663PDWoNo98GmNaF37K71/OESyFzbsiW4N+vTPRrQmwpKIRTLe1mI0B/h6ejYhekNHhFLoUWSwuJCoUXH0KjLwgfpgfkg9GhECfpuOOZHyZLb09vBxtWRO0wVW7kQAH6jJOTUaExnMfRCoJL4z5l6WYyjuNUsuYIewhznnOGJ2sTcvBhUZoHMe/yE1TZob2MPRrMHbZHHUtA6gj1bAHtZBKfv+/ZfZsNg6fNVRanpUHy/YyxYG37dZa6o1odSr2MnyTrH4FzOgR7F9wp8N1MWhnwm9ie37wYeMkqCT/pdrrBXGxK5aEWQC4wPfhwcBo+WdZv8aw+J3jJp4WxT6+ekYMFvO6sJszUl49h6TF3iPR4tQN7gapHhz+OWSlUdvuLmQUM9s8TGuDTTyml0kwtgQXFcKNm1HPQl0i4bfvZTE1bszcAF1gcXVmvcbPHvYRxoamNG8lpq927Rx72Rg9duDybjFQNxRfSyDnx+CNw/yqKH9CUZSvARvsPEarZrxzPYZjY6xOZoDfFKEI6r/R5ZoDtCo5g6OCuQe2aI5QGvE1ueMc0DnNbKsRnGnfAUCa8zqHRXo4bVAm83RHKCvUDizhahl8P6lrNDE2Oo+5i3QkhfRsyNmIcXewnJAqC9ntQyFljTwDCUfG/K138UXKPQtLNzZnpMjfdMnObsvp6B+3avYMZGrThtTccT2ONf4zEstYIkqMn2uXm1xQS11YA8DGi1nIX0tlvyugQvHtuO2WvoRPFrCwV0iWUED8C1t3K4RsAL4cSxoyEe7i+zRxMuuI0BErZEDD/tuP7xNEwgkuo+4HEbCi+UZ+nD4jTzYRazx8CiCI7CWqIH8vCXLS1oJDILX9D6uRZSmBG4iilMgMmK7RT2Zy6X+LiE65+TctCFmaYEk86aiOIUlgkOijfIKcdaMNLkOf8s5UpHrye9Umaup/SJXhMBSbvFptr+G/5gsBs4Jid4lTwXnYt8KT9K3/KBnIAwzgUuiLhe5Fh5cwqKaQBAdn5zz0VvJuTjnIcStbR1LgDcjPscXjYiUsoZgJxwhn1/niCWkrGZgYGCgDdzd/QN173dVxn6toQAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 0;*/ + /*width: 1.97917vw;*/ + /*height: 1.97917vw;*/ +} +.famous .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.famous .swiper-button-next, +.famous .swiper-container-rtl .swiper-button-prev { + right: 18% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + /*width: 30px;*/ + /*height: 30px;*/ + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVISURBVHgB7Z2NldQ2FIUvHArYVJCXCkIqQKmATQXrVLB0sE4FbCqIkwIgaSADDbBLA+xCAexWAPgxNshPki3P2LJk6ztHx+Ndj3/uvLl6ljQykMlkMqN5gPiguqhm+WOzJO1/OvdNuW2Wb+ty3axfI9PhpC7ndXlZl7u6fJ6o3DX7PIP5AW2GVtwdphN2qPCxFhM9tHWouhR1eYq92EPo1nDr2IaafT2GP1Vd/ujZZ7Io+EUvb3NZl1McFnmPm/deeh7vL6zEVgh7n+zzUb5YFscnwsdy0uy7wooFZw92VW675v9ziOuCj1XU5QZuwS+QEAT315b/rrA8BdyC898JkeOKYj55hfgoYBecr+EZIuU57BFSIqxFHEKJBKyERbRZxRXGpVxLQ7BHN1fmiwcKnwALKk/uEvFHsQs+d1vQEBaCYI+AaL1tBCXs9Uzw4LFFMlcgCuuB829ZsfM1BxVb3oTwCaXkx77wNUmxdwjEBbYhcotN7OeYmXOY3nWK9aNgXvcZZoJgfrIltgNX8vKbTJgBmWFcYnvI1G9yv5a+fINtwhmHDLjJ0lmCaRmE7cKV4ywWUmG7vuyihNmefRSEbBk2bBaicAQVAqU0CaIwUcVIyNE8BIt7dFRXyNE8hMKRKS8hR7MvelRzBmJtdHroeLMS6yUyLv7TXrcdwN5I70m1ET8ErI1+n+FdKRImzhE3gGw2NgLTZh1KrP+LzBB/i/UCHgx+OhkD1mi0C+h3PN5+kzGyjw7SOrjBhLT110gT7qDggJm9J0TjrfaaI5z6NubeEv0r8BTpQVimMpfaFfo/bRGt8x7pcS/WC4QR+1qsU9/GsiJMlRJmH18Ise98j6cb+hXSpkR4sb0TibVlHCXCiq0Ham/7kHfoJ0SJcGJXcAj9SGw4980Jp1sxjAMpmuXvmA/SVx4hLDENgCya5Zxif+MhwnKPuOB0NkgTQ+iI/rMuTxAegpnXct77Kxb68PWsYy2VoW2Q4lzDbyv0tHforC29Cyky453eeW+YAKFFBrqD83sDtYJn6EfOEiJDHK/TYSKzjlvt9WBTX6QQ9tGkixqi4pMNcp1Gpj6hmZ+RHicILzJDYv1qaGM9/EcPCImEdhyzjOwQx2zL4M9NDuo6z4xPJCrkztmxyM5ZY+SA7RZc9hQ8QWYIJdZferznsK7zjVOhqxn5vlH3G+fAvcxXCF2RrfWaq/XuqIF7G0OJ9QojOHjg3gbhDOMg22iReaFCRlJggvpMwcN7Ns7R0dyyQ45qFwUmzM6U2Bl/gjkD2TNZNLdUYoclMiVmuNcgmG27gw0mK+YndLWYdJaDZ8gWwvCkudIySkyMrBhDjj2OBTm33zvMAMG0kJgGxMxNie61f8SMPVDSQraS8v0G87pnDzJ5x7j2yat+wYJTHEm/XqvYNpFfICCuCQZPsR7YLqTIb7DQbI43ML3rAmnDKZytLuIMg7AQBPsksKmmfj/APj3zIpEs4ROwzePP0U5IB/Zj2zf0f0R2c1bCPMkUrISjuIR53p8Q8TeTvc019fwZ4oK9mEcw2aKYb0aivxkj9D+oYGnBW4F3sEcxWwUhIUrYxdYFD+V9LC5bBEfpznFOSUSxC4Lfw2Y4/55a9FZczof7HnjGUfwCK3rCUIV+wblwtPEtPgt/yJ0mwf8RTq1NKATgAcJC2FvKGJ/mIWr36H8oGRc5XNfG52ZfPDbun7q8wsoh7Ds3h6JuivIJ36P3HBvu8yTsRZ/qwZGtsFy5sfdGIW5o6/ChnQWHl/yLg/YnHjZruG2WN83rD83yFVb4rMJMJrM5vgAZc0TZpm6wTAAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 3.125vw;*/ + width: 1.97917vw; + height: 1.97917vw; +} + +.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{ + content: '' !important; +} +.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{ + content: '' !important; +} + +.case-intro { + /*height: 440px;*/ + /*background-color: #fff;*/ + display: flex; + justify-content: space-between; + position: relative; +} +.case-intro img { + /*width: 672px;*/ + /*height: 440px;*/ +} +.case-intro ul { + width: 470px; + height: 440px; + display: flex; + flex-direction: column; + justify-content: center; + padding: 0 30px; +} +.case-intro ul li:nth-child(1) { + font-size: 36px; + font-weight: 700; + text-align: center; +} +.case-intro ul li:nth-child(2) { + font-size: 20px; + /*font-weight: 700;*/ + padding-top: 30px; + letter-spacing: 0.43px; + text-align: justify; + line-height: 30px; + padding-bottom: 60px; +} + +/*资源消耗*/ +.intro2{ + /*height: 540px;*/ +} +.intro2 .intro2-item{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding: 0 100px; +} +.intro2-item dl{ + border: 2px solid #50972d; + border-radius: 50%; + height: 250px; + width: 250px; + font-size: 28px; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro2-item dt{ + color: #50972d; + font-family: fantasy; + font-size: 50px; +} + +.intro2-item dt span{ + font-size: 24px; +} +.intro2-item dd{ + color: #747272; +} +.intro2-bottom{ + font-size: 18px; + color: #747272; + text-align: center; + padding-top: 30px; + letter-spacing: 0.86px; +} + +/*公益*/ +.gy{ + +} +.gy-item-top{ + margin-bottom: 20px; +} +.gy-item-top dl{ + width: 589px; +} +.gy-item-top dl img{ + border-radius: 5px 5px 0 0; +} +.gy-item-top dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; +} +.gy-item-top dd p:nth-child(1){ + font-size: 26px; + padding-bottom: 10px; +} +.gy-item-top dd p:nth-child(2){ + font-size: 18px; + color: #747272; +} + +.gy-item-bottom{ + padding-bottom: 30px; +} +.gy-item-bottom dl{ + width: 293px; +} +.gy-item-bottom dl img{ + border-radius: 5px 5px 0 0; + width: 293px; +} +.gy-item-bottom dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; + height: 100px; + font-size: 18px; +} \ No newline at end of file diff --git a/static/assets/css/help.css b/static/assets/css/help.css new file mode 100644 index 0000000..ffbcb78 --- /dev/null +++ b/static/assets/css/help.css @@ -0,0 +1,67 @@ +.help-nav ul{ + display: flex; + padding: 12px 0; +} + +.help-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + margin-bottom: 20px; +} +.help-box .help-box-left{ + width: 280px; + height: max-content; + background-color: #ffffff; + padding-top: 20px; + padding-bottom: 10px; +} +.help-box .help-box-left ul{ + padding: 0 20px; +} +.help-box .help-box-left ul b{ + margin-bottom: 10px; + font-size: 18px; +} +.help-box .help-box-left ul .active{ + color: #50972c; +} +.help-box .help-box-left ul .active em{ + background-color: #50972c; + width: 3px; + height: 15px; + position: absolute; + left: -20px; + top: 4px; +} +.help-box .help-box-left ul li{ + font-size: 16px; + padding-bottom: 20px; + position: relative; +} +.help-box .help-box-left ul li b{ + /*border-bottom: 3px solid #50972c;*/ + padding-bottom: 5px; +} +.help-box .help-box-right{ + width: 960px; + background-color: #ffffff; + padding: 40px 0; +} +.help-box-right .box-right-content p{ + margin-bottom: 15px !important; +} +.help-box-right .box-right-title{ + font-size: 24px; + font-weight: 700; + margin: 0 60px; + border-bottom: 1px solid #bfbfbf; + padding-bottom: 10px; +} +.help-box-right .box-right-content{ + min-height: 500px; + padding: 10px 60px; + font-size: 16px; + line-height: 25px; + letter-spacing: 1px; +} \ No newline at end of file diff --git a/static/assets/css/index.css b/static/assets/css/index.css new file mode 100644 index 0000000..485cc99 --- /dev/null +++ b/static/assets/css/index.css @@ -0,0 +1,1063 @@ +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +/* part1 */ +.part1 { + padding: 30px 0; + background-color: #f5f6f8; + /*height: 740px;*/ + /*background-image: url(../images/bj1.png);*/ + background-repeat: no-repeat; + background-position: center; +} +.part1_left { + width: 945px; +} +.carousel { + height: 380px; +} +.carousel .swiper-pagination-bullet { + width: 6px; + height: 6px; + background-color: #ffffff; + opacity: 1; + /*border-radius: 2px;*/ +} +.carousel .swiper-pagination-bullet-active { + width: 30px; + height: 6px; + background-color: #469914; + border-radius: 25px; +} +.carousel .swiper-pagination { + /*left: -300px;*/ + bottom: 15px; +} +.swiper-hide{ + display: none; +} +.banner { + position: relative; + width: 1280px; + margin: 0 auto; +} +.banner img{ + width: 945px; + height: 380px; +} +.loaded-img{ + opacity: .3; + transition: opacity .7s ease; +} +.loaded-img-show{ + opacity: 1; +} +.loaded-filter{ + filter: blur(10px); + filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius="50",MakeShadow=false); + transition: filter .7s ease; +} +.loaded{ + filter: none; +} +.carousel .swiper-container .hide { + opacity: 0; +} + +.carousel .swiper-button-next, +.carousel .swiper-button-prev { + transition: opacity 0.5s; +} + +.carousel .swiper-button-next:hover, +.carousel .swiper-button-prev:hover { + background-color: rgba(0, 0, 0, 0.7); +} + +.carousel .swiper-button-prev, +.carousel .swiper-container-rtl .swiper-button-next { + left: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-prev:hover, +.carousel .swiper-container-rtl .swiper-button-next:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next, +.carousel .swiper-container-rtl .swiper-button-prev { + right: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-next:hover, +.carousel .swiper-container-rtl .swiper-button-prev:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next:after, +.carousel .swiper-button-prev:after { + font-size: 20px; +} +.carousel .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{ + pointer-events: auto !important; +} + +.part1_left_bottom{ + height: 110px; + margin-top: 15px; + display: flex; + justify-content: space-between; +} +.part1_left_bottom a:hover{ + color:unset; +} +.part1_left_bottom dl{ + width: 225px; + height: 110px; + display: flex; + justify-content: space-between; + background: #ffffff; + +} +.part1_left_bottom dl:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} +.part1_left_bottom dt{ + width: 120px; + display: flex; + flex-flow: column; + justify-content: center; + padding-left: 15px; +} +.part1_left_bottom dt p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 10px; +} +.part1_left_bottom dt p:nth-child(2){ + font-size: 13px; +} +.part1_left_bottom dd{ + width: 90px; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; +} +.part1_left_bottom dd img{ + width: 60px; + height: 60px; +} + +.part1_right { + width: 320px; + height: 505px; + background-color: #eee; + margin-left: 15px; +} +.part1_right .right-banner{ + /*width: 320px;*/ + height: 145px; + overflow: hidden; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + border-bottom: 1px solid #d6d1d1; + margin: 0 30px; +} + +.part1_right .right-banner p:nth-child(1) span{ + font-size: 16px; + padding-left: 10px; +} +.part1_right .right-banner p:nth-child(2){ + padding-top: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(1){ + background-color: rgb(52, 128, 42); + color: #ffffff; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; + margin-right: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(2){ + background-color: rgb(51, 51, 51); + color: #cec184; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; +} +.right-form{ + padding: 0 30px; + margin-top: 25px; +} +.form-title{ + text-align: center; + padding-bottom: 20px; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} +.form-submit{ + +} + +/* part2 */ +/*.part2 {*/ + /*!*height: 720px;*!*/ + /*background-color: #ffffff;*/ + /*padding-bottom: 50px;*/ +/*}*/ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} +/*.advantage {*/ + /*height: 361px;*/ + /*display: flex;*/ + /*flex-wrap: wrap;*/ + /*justify-content: space-between;*/ + /*align-content: space-between;*/ +/*}*/ +/*.advantage dl {*/ + /*width: 416px;*/ + /*height: 173px;*/ + /*!*padding: 38px 45px;*!*/ + /*background-color: #f5f6f8;*/ + /*display: flex;*/ + /*align-items: center;*/ +/*}*/ +/*.advantage dl:hover {*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ +/*}*/ +/*.advantage dl dd {*/ + /*width: 180px;*/ + /*overflow: hidden;*/ + /*display: flex;*/ + /*align-items: center;*/ + /*justify-content: center;*/ + /**/ +/*}*/ +/*.advantage dl dt {*/ + /*width: 195px;*/ + /*padding: 0px 20px;*/ +/*}*/ +/*.advantage dl dt p:nth-child(1) {*/ + /*font-size: 20px;*/ + /*font-weight: bold;*/ + /*color: #333333;*/ +/*}*/ +/*.advantage dl dt p:nth-child(2) {*/ + /*font-size: 15px;*/ + /*color: #595959;*/ + /*margin-top: 10px;*/ +/*}*/ + +.part2{ + padding-bottom: 50px; + /*background-color: #f5f6f8;*/ +} +.flow-box{ + display: flex; + justify-content: space-between; +} +.flow-box .flow-box-item{ + width: 335px; + height: 350px; + display: flex; + align-items: center; +} +.flow-box .flow-box-item .item-content{ + width: 275px; + height: 350px; + background-image: url(../images/service-bg03.png); + background-repeat: no-repeat; + background-position: center; + position: relative; + overflow: hidden; +} +.flow-box .flow-box-item .item-content dl{ + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + height: 350px; + padding: 0 35px; + position: absolute; + top: 0; + transition: .5s; +} +.flow-box .flow-box-item .item-content dt{ + padding-bottom: 25px; +} +.flow-box .flow-box-item .item-content dt img{ + width: 73px; + height: 73px; +} +.flow-box .flow-box-item .item-content dd{ + text-align: center; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(1){ + font-size: 24px; + font-weight: 700; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(2){ + font-size: 18px; + color: #999; +} +.flow-box .flow-box-item .item-content .item-content-bottom{ + background: linear-gradient(to right, #109a30, #67d682); + height: 40px; + line-height: 40px; + color: #ffffff; + font-size: 17px; + text-align: center; + position: absolute; + width: 275px; + bottom: -40px; + transition: .5s; +} +.flow-box .flow-box-item .item-ico { + width: 60px; + height: 60px; + text-align: center; + display: flex; + align-items: center; + justify-content: center; +} +.flow-box .flow-box-item .item-content:hover dl{ + top: -15px; +} +.flow-box .flow-box-item .item-content:hover .item-content-bottom{ + bottom: 0; +} +.flow-bottom{ + display: flex; + justify-content: center; + padding-top: 35px; +} +.flow-bottom p{ + font-size: 16px; + color: #999999; + font-style: italic; + border-bottom: 1px solid; +} + +/* part3 */ +.part3 { + /*height: 950px;*/ + background-color: #f5f6f8; + padding-bottom: 50px; +} +.faClass { + background-color: #f4f4f4; + border-left: 3px solid #34802a; + font-weight: bold; +} +.scheme_box { + display: flex; + justify-content: space-between; +} +.scheme_left { + width: 213px; + height: 540px; + background-image: url(../images/fa-bg01.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + flex-flow: column; + align-items: center; +} +.scheme_left ul{ + display: flex; + flex-flow: column; + align-items: center; + padding-top: 20px; + padding-bottom: 68px; +} +.scheme_left ul li{ + width: 151px; + height: 44px; + line-height: 44px; + padding-left: 19px; + font-size: 16px; +} +.scheme_left .consult-more{ + font-size: 14px; +} +.scheme_left .consult-more p:nth-child(1){ + padding-bottom: 20px; +} +.scheme_left .consult-more p:nth-child(1) a:hover{ + color: #34802a; +} +.scheme_left .consult-more p:nth-child(2){ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 6px 16px; + text-align: center; +} +.scheme_right { + width: 1067px; +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} + +.scheme_right li { + width: 211px; + /* height: 239px; */ + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right li .scheme_li{ + width: 181px; + height: 253px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + + /*display: inline-block;*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ + /*-webkit-box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + /*box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 181px; + height: 134px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} + +/* part4 */ +.part4 { + /*height: 660px;*/ + background-color: #ffffff; + padding-bottom: 50px; +} +.ecology-box { + /*height: 664px;*/ + position: relative; +} +.ecology-box .gallery-solid { + border-bottom: 1px solid #dfe1e6; +} +.ecology-box .gallery-thumbs { + width: 970px; +} +.ecology-box .gallery-thumbs .swiper-wrapper { + align-items: center; + justify-content: center; +} +.ecology-box .gallery-thumbs .swiper-slide { + width: 250px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-button-prev { + top: 40px !important; +} +.ecology-box .swiper-button-prev, +.ecology-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.ecology-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +:root { + --swiper-navigation-size: 56px !important; +} +.ecology-box .swiper-slide-thumb-active span{ + color: #50972d; + border-bottom:2px solid #50972d; +} + +.gallery-top{ + margin-top: 40px; +} +.ecology-nav .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.ecology-intro { + height: 400px; + background-image: url(../images/tx-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; +} +.ecology-intro .intro-item{ + display: flex; + flex-flow: column; + justify-content: center; + width: 615px; + height: 400px; + padding-left: 60px; + position: relative; +} +.ecology-intro .item-title{ + font-size: 22px; + font-weight: bold; + padding-bottom: 40px; +} +.ecology-intro .item-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 20px; +} +.ecology-intro .item-box dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + width: 300px; + height: 86px; + align-items: center; + margin-bottom: 15px; +} +.ecology-intro .item-box dt{ + width: 80px; + text-align: center; +} +.ecology-intro .item-box dt img{ + width: 39px; + height: 39px; +} +.ecology-intro .item-box dd{ + +} +.ecology-intro .item-box dd p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 9px; +} +.ecology-intro .item-box dd p:nth-child(2){ + font-size: 14px; + color: #999999; +} +.ecology-intro .item-bottom span{ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 8px 19px; +} +.ecology-intro .intro-logo{ + width: 605px; + height: 400px; + overflow: hidden; + display: flex; + justify-content: center; + align-items: center; +} +.ecology-intro .intro-logo img{ + width: 400px; +} +/* 滑过透明层 */ +.glideover-hover { + overflow: hidden; + position: relative; +} +.glideover-hover:before { + content: ""; + position: absolute; + top: 0; + left: -100%; + display: block; + height: 100%; + width: 50%; + z-index: 999; + background-color: rgba(255,255,255,.3); + -webkit-transition: all 1s ease 0s; + -moz-transition: all 1s ease 0s; + -o-transition: all 1s ease 0s; + transition: all 1s ease 0s; + -ms-transform: skewX(-20deg); + -webkit-transform: skewX(-20deg); + -o-transform: skewX(-20deg); + transform: skewX(-20deg); + background: -webkit-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -moz-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -o-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=rgba(255, 255, 255, 0.4),GradientType=0.9); +} +.glideover-hover:hover:before { + left: 100%; +} +/* part5 */ +.part5{ + padding-bottom: 50px; +} +.service-box{ + background-color: #ffffff; + height: 380px; + display: flex; + justify-content: space-between; +} +.service-box a{ + position: relative; +} +.service-box dl{ + width: 308px; + height: 380px; + padding: 15px; + display: block; + box-sizing: border-box; + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + white-space: normal; +} +.service-box dl:hover{ + + opacity: 1; + transition: all .3s linear; + background-image: url(../images/service-bg01.png); + background-repeat: no-repeat; + background-position: center; +} + +.service-box dt{ + padding-bottom: 40px; +} +.service-box dt img{ + +} +.service-box dd{ + text-align: center; + padding: 0 20px; +} +.service-box dd p:nth-child(1){ + font-size: 20px; + font-weight: bold; + padding-bottom: 20px; +} +.service-box dd p:nth-child(2){ + font-size: 14px; +} + +/* part6 */ +.part6 { + background-image: url(../images/case-bg.jpg); + background-repeat: no-repeat; + background-position: center; + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + color: #ffffff; +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + color: #ffffff; +} +.case-tab a:hover{ + color: #ffffff; +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + color: #ffffff; +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #ffffff; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + + +.part7{ + padding-bottom: 50px; +} +.charity-box{ + background-image: url(../images/charity-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + justify-content: space-between; + height: 424px; +} +.charity-box .charity-left{ + width: 600px; + padding: 0 40px; +} +.charity-box .charity-left dl{ + display: flex; + flex-flow: column; + justify-content: center; + height: 424px; +} +.charity-box .charity-left dd:nth-child(1){ + font-size: 20px; + font-weight: 700; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(2){ + color: #999; + line-height: 22px; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(3){ + display: flex; + justify-content: space-between; + padding-bottom: 20px; +} +.charity-box .charity-left dd:nth-child(3) .dd-item{ + width: 180px; + height: 110px; + background-color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.charity-box .charity-left dd:nth-child(3) .dd-item span{ + font-size: 26px; + color: #34802a; + font-weight: 700; +} +.charity-box .charity-left dd:nth-child(3) .dd-item em{ + font-size: 16px; + color: #34802a; +} +.charity-box .charity-left dd:nth-child(3) .dd-item:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} + + +.charity-box .charity-left dd:nth-child(4){ + color: #999999; + text-align: center; + padding-bottom: 10px; +} +.charity-box .charity-left dd:nth-child(5){ + text-align: center; +} +.charity-box .charity-left dd:nth-child(5) a{ + color: #34802a; + font-weight: 600; +} +.charity-box .charity-right{ + width: 600px; +} +.charity-box .charity-right dl{ + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + height: 424px; + } +.charity-box .charity-right dt{ + padding-bottom: 35px; + +} +.charity-box .charity-right dd{ + color: #999999; + padding: 0 40px; +} + +.news{ + /* padding-bottom: 50px; */ +} +.news-box{ + display: flex; + justify-content: space-between; +} +.news-box-left{ + width: 416px; +} +.news-box-left a:hover{ + color: #34802a !important; +} +.news-box-left dl{ + +} +.news-box-left dt{ + width: 416px; + height: 274px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} + +.news-box-left dd{ + padding: 20px; + background-color: #f6f6f6; +} +.news-box-left dd p:nth-child(1){ + font-size: 16px; + height: 42px; + margin-bottom: 19px; +} +.news-box-left dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +.news-box-right{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + width: 850px; +} +.news-box-right a:hover{ + color: #34802a !important; +} +.news-box-right dl{ + background-color: #f6f6f6; + height: 122px; + width: 418px; + margin-bottom: 14px; +} +.news-box-right dt{ + padding: 20px 20px 0 20px; + height: 38px; + margin-bottom: 20px; +} + +.news-box-right dd:nth-child(1){ + font-size: 16px; + padding-bottom: 20px; +} +.news-box-right dd:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; + padding: 0 20px; +} \ No newline at end of file diff --git a/static/assets/css/info.css b/static/assets/css/info.css new file mode 100644 index 0000000..b75a05f --- /dev/null +++ b/static/assets/css/info.css @@ -0,0 +1,308 @@ +.part1{ + height: 300px; + background-image: url(../images/banner.png); + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center top; + background-size: 100% 100%; +} +.part2 { + +} +.part2-tab-calss{ + display: flex; + margin-top: 12px; +} +.part2-tab-calss .class-right{ + +} +.part2-tab-calss .class-right ul{ + display: flex; + justify-content: left; + font-size: 14px; +} +.part2-tab-calss .class-right ul li{ + height: 20px; + line-height: 20px; +} +.part2-tab-calss .class-right ul li:hover{ + color: #50972c; + cursor: pointer; +} + +.part3 { + /*height: 1550px;*/ + + margin-top: 12px; + padding-bottom: 30px; +} +.part3-news{ + display: flex; + justify-content: space-between; +} +.part3-news-left{ + width: 960px; + background: #ffffff; + text-align: justify; +} +.part3-news-left .info-title{ + font-size: 24px; + font-weight: 600; + padding: 45px 85px 17px; + text-align: left; +} +.part3-news-left .part3-news-screen{ + padding-bottom: 25px; + font-size: 14px; + border-bottom: 1px solid #999; + margin: 0 85px; +} +.part3-news-screen ul{ + display: flex; + justify-content: left; + color: #777; +} +.part3-news-screen ul li{ + padding-right: 30px; +} + +.part3-news-left .info-remark{ + width: 750px; + /* height: 105px; */ + background-color: #fafafa; + margin: 0 auto; + margin-top: 20px; + padding: 20px; + font-size: 16px; + line-height: 26px; + color: #999; +} + +.part3-news-left .info-content{ + padding: 20px 85px; + font-size: 16px !important; + line-height: 30px !important; + color: #575d6c !important; + letter-spacing: 1px !important; + /*text-indent: 2em !important;*/ +} +.part3-news-left .info-content img{ + /*display: initial !important;*/ + /* height: 100% !important; */ + width: 100% !important; + /* max-width: 790px !important; */ +} +.part3-news-left .info-content p{ + margin-bottom: 15px !important; +} +.part3-news-right{ + width: 480px; + margin-left: 28px; +} +.news-right-banner{ + background-color: #fff; +} +.news-right-item{ + width: 440px; + background-color: #fff; + padding: 10px 20px; +} +.news_right_title{ + display: flex; + align-items: center; + justify-content: space-between; + font-size: 20px; + color: #333333; + font-weight: bold; + margin-bottom: 10px; +} +.news-right-item ul{ + padding-bottom: 30px; + border-bottom: 1px solid #595959; +} +.news-right-item ul li{ + margin-top: 26px; +} +.news-right-item ul li p:nth-child(1) { + width: 50px; + height: 20px; + line-height: 20px; + padding-left: 4px; + background-image: url(../images/i3.png); + background-repeat: no-repeat; + font-size: 14px; + color: #fff; + letter-spacing: 2px; +} +.news-right-item ul li p:nth-child(2) { + width: 375px; + line-height: 20px; + font-size: 15px; + color: #333; + margin-left: 10px; +} +.examine { + font-size: 15px; + color: #575d6c; + text-align: center; + margin-top: 24px; + cursor: pointer; +} + +.info-btn{ + margin: 0 85px; + text-align: center; + padding-bottom: 45px; + padding-top: 30px; +} +.info-btn .btn-dz{ + width: 140px; + border: 1px solid #34802a; + color: #34802a; + display: flex; + justify-content: center; + align-items: center; + border-radius: 25px; + font-size: 25px; + margin: 0 auto; + height: 50px; + cursor: pointer; +} +.info-btn .active{ + color: #ffffff; + background-color: #34802a; +} +.info-btn .btn-dz img{ + width: 35px; +} +.info-btn .btn-dz span{ + line-height: 40px; + height: 35px; + padding-left: 5px; +} + +.info-page ul{ + margin: 0 85px; + font-size: 16px; + background-color: #ffffff; + display: flex; + justify-content: space-between; + border-top: 1px solid #999; +} +.info-page ul li{ + color: #333333; + width: 375px; + padding: 20px 0; +} +.info-page ul li span{ + color: #777; + cursor: pointer; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + /*margin-top: 15px;*/ + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 2px solid #999; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 2px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -2px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 445px; + background-repeat: no-repeat; + background-position: center; + margin-bottom: 15px; + /*background-size: cover;*/ +} +/**********************内容右侧End**********************/ + + diff --git a/static/assets/css/layui.css b/static/assets/css/layui.css new file mode 100644 index 0000000..36bf38e --- /dev/null +++ b/static/assets/css/layui.css @@ -0,0 +1 @@ +blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{display:inline-block;border:none;vertical-align:middle}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h1,h2,h3{font-weight:400}h4,h5,h6{font-size:100%;font-weight:400}button,input,select,textarea{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:1.6;color:#333;color:rgba(0,0,0,.85);font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:0;line-height:0;margin:10px 0;padding:0;border:none!important;border-bottom:1px solid #eee!important;clear:both;overflow:hidden;background:0 0}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.layui-edge{position:relative;display:inline-block;vertical-align:middle;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent;overflow:hidden}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-show-v{visibility:visible!important}.layui-hide-v{visibility:hidden!important}@font-face{font-family:layui-icon;src:url(../fonts/iconfont.eot);src:url(../fonts/iconfont.eot) format('embedded-opentype'),url(../fonts/iconfont.woff2) format('woff2'),url(../fonts/iconfont.woff) format('woff'),url(../fonts/iconfont.ttf) format('truetype'),url(../fonts/iconfont.svg) 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-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{position:relative;width:1160px;margin:0 auto}.layui-header{position:relative;z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:relative;left:200px;right:0;top:0;bottom:0;z-index:900;width:auto;box-sizing:border-box}.layui-layout-body{overflow-x:hidden}.layui-layout-admin .layui-header{position:fixed;top:0;left:0;right:0;background-color:#23262e}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:absolute;top:60px;padding-bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;z-index:990;height:44px;line-height:44px;padding:0 15px;box-shadow:-1px 0 4px rgb(0 0 0 / 12%);background-color:#fafafa}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px;box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%)}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:"";display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:767.98px){.layui-container{padding:0 15px}.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:720px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:960px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1150px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:1.6;border-left:5px solid #5fb878;border-radius:0 2px 2px 0;background-color:#fafafa}.layui-quote-nm{border-style:solid;border-width:1px;border-left-width:5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:0;border-top-width:1px}.layui-field-box{padding:15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#eee}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5fb878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#5f5f5f}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#fafafa;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:1.6;color:#5f5f5f}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel{position:relative;border-width:1px;border-style:solid;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);background-color:#fff;color:#5f5f5f}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #eee;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-bg-red{background-color:#ff5722!important;color:#fff!important}.layui-bg-orange{background-color:#ffb800!important;color:#fff!important}.layui-bg-green{background-color:#009688!important;color:#fff!important}.layui-bg-cyan{background-color:#2f4056!important;color:#fff!important}.layui-bg-blue{background-color:#1e9fff!important;color:#fff!important}.layui-bg-black{background-color:#393d49!important;color:#fff!important}.layui-bg-gray{background-color:#fafafa!important;color:#5f5f5f!important}.layui-badge-rim,.layui-border,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-panel,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#eee}.layui-border{border-width:1px;border-style:solid;color:#5f5f5f!important}.layui-border-red{border-width:1px;border-style:solid;border-color:#ff5722!important;color:#ff5722!important}.layui-border-orange{border-width:1px;border-style:solid;border-color:#ffb800!important;color:#ffb800!important}.layui-border-green{border-width:1px;border-style:solid;border-color:#009688!important;color:#009688!important}.layui-border-cyan{border-width:1px;border-style:solid;border-color:#2f4056!important;color:#2f4056!important}.layui-border-blue{border-width:1px;border-style:solid;border-color:#1e9fff!important;color:#1e9fff!important}.layui-border-black{border-width:1px;border-style:solid;border-color:#393d49!important;color:#393d49!important}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.6;font-size:14px;color:#5f5f5f}.layui-text h1,.layui-text h2,.layui-text h3,.layui-text h4,.layui-text h5,.layui-text h6{font-weight:500;color:#333}.layui-text h1{font-size:32px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text h4{font-size:16px}.layui-text h5{font-size:14px}.layui-text h6{font-size:13px}.layui-text a:not(.layui-btn){color:#01aaed}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ol,.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text ol li{margin-top:5px;list-style-type:decimal}.layui-text em,.layui-word-aux{color:#999!important;padding-left:5px!important;padding-right:5px!important}.layui-text p{margin:15px 0}.layui-text p:first-child{margin-top:0}.layui-text p:last-child{margin-bottom:0}.layui-text blockquote:not(.layui-elem-quote){padding:5px 15px;border-left:5px solid #eee}.layui-text pre:not(.layui-code){padding:15px;font-family:Lucida Console,Consolas,Courier New;background-color:#fafafa}.layui-font-12{font-size:12px!important}.layui-font-14{font-size:14px!important}.layui-font-16{font-size:16px!important}.layui-font-18{font-size:18px!important}.layui-font-20{font-size:20px!important}.layui-font-red{color:#ff5722!important}.layui-font-orange{color:#ffb800!important}.layui-font-green{color:#009688!important}.layui-font-cyan{color:#2f4056!important}.layui-font-blue{color:#01aaed!important}.layui-font-black{color:#000!important}.layui-font-gray{color:#c2c2c2!important}.layui-btn{display:inline-block;vertical-align:middle;height:38px;line-height:38px;border:1px solid transparent;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border-radius:2px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{padding:0 2px;vertical-align:middle\0;vertical-align:bottom}.layui-btn-primary{border-color:#d2d2d2;background:0 0;color:#5f5f5f}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1e9fff}.layui-btn-warm{background-color:#ffb800}.layui-btn-danger{background-color:#ff5722}.layui-btn-checked{background-color:#5fb878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border-color:#eee!important;background-color:#fbfbfb!important;color:#d2d2d2!important;cursor:not-allowed!important;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:12px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#d2d2d2;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #d2d2d2}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;color:rgba(0,0,0,.85);border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#eee!important}.layui-input:focus,.layui-textarea:focus{border-color:#d2d2d2!important}.layui-textarea{position:relative;min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{position:relative;float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block,.layui-input-inline{position:relative}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{position:relative;float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#ff5722!important}.layui-form-select{position:relative}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #eee;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f6f6f6;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5fb878;color:#fff}.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.layui-form-selected .layui-edge{margin-top:-3px\0}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;display:inline-block;vertical-align:middle;height:30px;line-height:30px;margin-right:10px;padding-right:30px;background-color:#fff;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox *{display:inline-block;vertical-align:middle}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5fb878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5fb878}.layui-form-checked i,.layui-form-checked:hover i{color:#5fb878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#5f5f5f}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5fb878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5fb878!important;background-color:#5fb878;color:#fff}.layui-checkbox-disabled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2!important}.layui-form-checked.layui-checkbox-disabled[lay-skin=primary] i{background:#eee!important;border-color:#eee!important}.layui-checkbox-disabled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;display:inline-block;vertical-align:middle;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5fb878;background-color:#5fb878}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disabled{border-color:#eee!important}.layui-checkbox-disabled span{background-color:#eee!important}.layui-checkbox-disabled i{border-color:#eee!important}.layui-checkbox-disabled em{color:#d2d2d2!important}.layui-checkbox-disabled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio{display:inline-block;vertical-align:middle;line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{display:inline-block;vertical-align:middle;font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio:hover *,.layui-form-radioed,.layui-form-radioed>i{color:#5fb878}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled *{color:#c2c2c2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#fafafa;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0;border-right-width:1px}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto!important;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #eee}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;border-radius:2px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393d49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#eee;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #eee}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{display:inline-block;width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{display:inline-block;vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;margin:10px 0;background-color:#fff;color:#5f5f5f}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr{background-color:#fafafa}.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#eee}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0;border-bottom-width:1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0;border-right-width:1px}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:50px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:30px;line-height:20px;padding-top:5px;padding-right:5px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view{margin:10px 0}.layui-table-view .layui-table{position:relative;width:auto;margin:0;border:0;border-collapse:separate}.layui-table-view .layui-table[lay-skin=line]{border-width:0;border-right-width:1px}.layui-table-view .layui-table[lay-skin=row]{border-width:0;border-bottom-width:1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0;border-bottom-width:1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-column{position:relative;width:100%;min-height:41px;padding:8px 16px;border-width:0;border-bottom-width:1px}.layui-table-column .layui-btn-container{margin-bottom:-8px}.layui-table-column .layui-btn-container .layui-btn{margin-right:8px;margin-bottom:8px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-tool-panel li{padding:0 10px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%}.layui-table-tool-panel li:hover{background-color:#f6f6f6}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{padding-left:28px}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0;border-left-width:1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#5f5f5f}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#5f5f5f}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:38px;line-height:28px;padding:6px 15px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01aaed}.layui-table-cell .layui-btn{vertical-align:inherit}.layui-table-cell[align=center]{-webkit-box-pack:center}.layui-table-cell[align=right]{-webkit-box-pack:end}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{text-align:center;-webkit-box-pack:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:30px 15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0;border-left-width:1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0;border-bottom-width:1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-total{margin-bottom:-1px;border-width:0;border-top-width:1px;overflow:hidden}.layui-table-page{z-index:880;border-width:0;border-top-width:1px;margin-bottom:-1px;white-space:nowrap;overflow:hidden}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-11px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-pagebar{float:right;line-height:23px}.layui-table-pagebar .layui-btn-sm{margin-top:-1px}.layui-table-pagebar .layui-btn-xs{margin-top:2px}.layui-table-view select[lay-ignore]{display:inline-block}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;z-index:900;min-width:100%;min-height:100%;padding:5px 14px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15);background-color:#fff}.layui-table-edit:focus{border-color:#5fb878!important}input.layui-input.layui-table-edit{height:100%}select.layui-table-edit{padding:0 0 0 10px;border-color:#d2d2d2}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0;border-left-width:1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-49px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#5f5f5f}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#5f5f5f;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-list{margin:10px 0}.layui-upload-choose{max-width:200px;padding:0 10px;color:#999;font-size:14px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-upload-drag{position:relative;display:inline-block;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-form{display:inline-block}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;display:inline-block;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-btn-container .layui-upload-choose{padding-left:0}.layui-menu{position:relative;margin:5px 0;background-color:#fff;box-sizing:border-box}.layui-menu *{box-sizing:border-box}.layui-menu li,.layui-menu-body-title a{padding:5px 15px}.layui-menu li{position:relative;margin:1px 0;width:calc(100% + 1px);line-height:26px;color:rgba(0,0,0,.8);font-size:14px;white-space:nowrap;cursor:pointer;transition:all .3s}.layui-menu li:hover{background-color:#f6f6f6}.layui-menu-item-parent:hover>.layui-menu-body-panel{display:block;animation-name:layui-fadein;animation-duration:.3s;animation-fill-mode:both;animation-delay:.2s}.layui-menu-item-group .layui-menu-body-title,.layui-menu-item-parent .layui-menu-body-title{padding-right:25px}.layui-menu .layui-menu-item-divider:hover,.layui-menu .layui-menu-item-group:hover,.layui-menu .layui-menu-item-none:hover{background:0 0;cursor:default}.layui-menu .layui-menu-item-group>ul{margin:5px 0 -5px}.layui-menu .layui-menu-item-group>.layui-menu-body-title{color:rgba(0,0,0,.35);user-select:none}.layui-menu .layui-menu-item-none{color:rgba(0,0,0,.35);cursor:default}.layui-menu .layui-menu-item-none{text-align:center}.layui-menu .layui-menu-item-divider{margin:5px 0;padding:0;height:0;line-height:0;border-bottom:1px solid #eee;overflow:hidden}.layui-menu .layui-menu-item-down:hover,.layui-menu .layui-menu-item-up:hover{cursor:pointer}.layui-menu .layui-menu-item-up>.layui-menu-body-title{color:rgba(0,0,0,.8)}.layui-menu .layui-menu-item-up>ul{visibility:hidden;height:0;overflow:hidden}.layui-menu .layui-menu-item-down:hover>.layui-menu-body-title>.layui-icon,.layui-menu .layui-menu-item-up>.layui-menu-body-title:hover>.layui-icon{color:#000}.layui-menu .layui-menu-item-down>ul{visibility:visible;height:auto}.layui-menu .layui-menu-item-checked,.layui-menu .layui-menu-item-checked2{background-color:#f6f6f6!important;color:#5fb878}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#5fb878}.layui-menu .layui-menu-item-checked:after{position:absolute;right:0;top:0;bottom:0;border-right:3px solid #5fb878;content:""}.layui-menu-body-title{position:relative;overflow:hidden;text-overflow:ellipsis}.layui-menu-body-title a{display:block;margin:-5px -15px;color:rgba(0,0,0,.8)}.layui-menu-body-title a:hover{transition:all .3s}.layui-menu-body-title>.layui-icon{position:absolute;right:0;top:0;font-size:14px}.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-menu-body-title>.layui-icon-right{right:-1px}.layui-menu-body-panel{display:none;position:absolute;top:-7px;left:100%;z-index:1000;margin-left:13px;padding:5px 0}.layui-menu-body-panel:before{content:"";position:absolute;width:20px;left:-16px;top:0;bottom:0}.layui-menu-body-panel-left{left:auto;right:100%;margin:0 13px 0}.layui-menu-body-panel-left:before{left:auto;right:-16px}.layui-menu-lg li{line-height:32px}.layui-menu-lg .layui-menu-body-title a:hover,.layui-menu-lg li:hover{background:0 0;color:#5fb878}.layui-menu-lg li .layui-menu-body-panel{margin-left:14px}.layui-menu-lg li .layui-menu-body-panel-left{margin:0 15px 0}.layui-dropdown{position:absolute;left:-999999px;top:-999999px;z-index:77777777;margin:5px 0;min-width:100px}.layui-dropdown:before{content:"";position:absolute;width:100%;height:6px;left:0;top:-6px}.layui-nav{position:relative;padding:0 20px;background-color:#393d49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar{content:"";position:absolute;left:0;top:0;width:0;height:5px;background-color:#5fb878;transition:all .2s;-webkit-transition:all .2s;pointer-events:none}.layui-nav-bar{z-index:1000}.layui-nav[lay-bar=disabled] .layui-nav-bar{display:none}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{position:absolute;top:0;right:3px;left:auto!important;margin-top:0;font-size:12px;cursor:pointer;transition:all .2s;-webkit-transition:all .2s}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{transform:rotate(180deg)}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #eee;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#5f5f5f;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#f6f6f6;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#f6f6f6;color:#000}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-child-r{left:auto;right:0}.layui-nav-child-c{text-align:center}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:40px}.layui-nav-tree .layui-nav-item a{position:relative;height:40px;line-height:40px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item>a{padding-top:5px;padding-bottom:5px}.layui-nav-tree .layui-nav-more{right:15px}.layui-nav-tree .layui-nav-item>a .layui-nav-more{padding:5px 0}.layui-nav-tree .layui-nav-bar{width:5px;height:0}.layui-side .layui-nav-tree .layui-nav-bar{width:2px}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-bar{background-color:#009688}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child dd{margin:0}.layui-nav-tree .layui-nav-child a{color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child{display:block;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5fb878!important}.layui-breadcrumb a cite{color:#5f5f5f;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block;padding:0 15px;margin:0 -15px}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:"";width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#eee;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:15px 0}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#ff5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5fb878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#fafafa}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5fb878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5fb878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#ff5722}.layui-timeline-item:before{content:"";position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:first-child:before{display:block}.layui-timeline-item:last-child:before{display:none}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px;line-height:22px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#ff5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#5f5f5f}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-5px 6px 0}.layui-nav .layui-badge{margin-top:-10px}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\0;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:none 0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\0;opacity:1;left:20px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#eee;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9f9f9f;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#5f5f5f;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #d9d9d9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:12px}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#eee}.layui-transfer-box{position:relative;display:inline-block;vertical-align:middle;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#5f5f5f}.layui-transfer-active{margin:0 15px;display:inline-block;vertical-align:middle}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5fb878;border-color:#5fb878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#fbfbfb;border-color:#eee;color:#d2d2d2}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f6f6f6;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#ffb800}.layui-rate li i.layui-icon{margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#fff;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;left:-999999px;top:-999999px;z-index:77777777;width:280px;margin:5px 0;padding:7px;background:#fff;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #fff;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#ff0,#0f0,#0ff,#00f,#f0f,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#5f5f5f}.layui-slider{height:4px;background:#eee;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#fff;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:77777777;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:"";position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #eee;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-14px}.layui-slider-input-btn{position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #eee}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #eee}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:33px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:"";position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{display:inline-block;vertical-align:middle;cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:"";position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{display:inline-block;vertical-align:middle;position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#5f5f5f}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:"";position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-spread>.layui-tree-entry .layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#5f5f5f}.layui-tree-btnGroup{visibility:hidden;display:inline-block;vertical-align:middle;position:relative}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{position:relative;display:inline-block;vertical-align:middle;height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;animation-duration:.3s;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .2s;-webkit-transition:all .2s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,15px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,15px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@keyframes layui-down{0%{opacity:.3;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-down{animation-name:layui-down}@keyframes layui-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-downbit{animation-name:layui-downbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@keyframes layui-scalesmall{0%{opacity:.3;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall{animation-name:layui-scalesmall}@keyframes layui-scalesmall-spring{0%{opacity:.3;transform:scale(1.5)}80%{opacity:.8;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall-spring{animation-name:layui-scalesmall-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file diff --git a/static/assets/css/news.css b/static/assets/css/news.css new file mode 100644 index 0000000..b4e9352 --- /dev/null +++ b/static/assets/css/news.css @@ -0,0 +1,298 @@ +/*头部轮播推荐*/ +.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{ + width: 140px; + right: 0; + left: unset; + bottom: 20px; +} +.swiper-news .swiper-pagination-bullet{ + background: #ffffff; + opacity: unset; + width: 12px; + height: 12px; +} +.swiper-news .swiper-pagination-bullet-active { + background-color: #469914; +} +.swiper-news{ + height: 415px; +} +.swiper-news .swiper-slide{ + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} +.swiper-news .swiper-slide span{ + position: absolute; + bottom: 20px; + left: 10px; + color: #ffffff; + font-size: 20px; + width: 490px; + z-index: 1; +} +.news-top{ + display: flex; + justify-content: space-between; + margin-top: 20px; +} +.top-swiper{ + width: 640px; + height: 415px; +} +.top-item{ + display: flex; + flex-flow: wrap; + width: 625px; + height: 415px; + justify-content: space-between; +} +.top-item dl{ + width: 305px; + height: 200px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.top-item dl dd{ + font-size: 18px; + color: #ffffff; + position: absolute; + bottom: 10px; + width: 285px; + margin: 0 10px; + z-index: 1; +} + +.mask{ + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient(180deg,rgba(0,0,0,.05) 5%,rgba(0,0,0,.65)); + transition: .5s; +} + +/*内容*/ +.news-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 50px; +} +.box-left{ + margin-top: 15px; +} +.box-list{ + width: 960px; +} +.box-left .box-tab{ + margin-bottom: 15px; +} +.box-left .box-tab ul{ + background-color: #ffffff; + display: flex; + position: relative; +} +.box-left .box-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; + margin: 0 15px; + +} +.box-left .box-tab .active{ + border-bottom: 3px solid #50972c; +} +.box-left .box-tab .active-1{ + color: #50972c; + font-weight: 700; +} +.box-left .box-tab ul li em{ + position: absolute; + top: 12px; + right: 0; + height: 21px; + width: 2px; + background: #999; +} +.box-content{ + min-height: 500px; +} +.box-content a:hover{ + color: unset; +} +.box-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + margin-bottom: 15px; +} +.box-list dl:hover{ + box-shadow: 0 0 5px 3px #e8e8e8; +} +.box-list dt{ + width: 260px; + height: 180px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; + margin: 15px; +} +.box-list dd{ + width: 630px; + margin: 15px 10px; + display: flex; + flex-flow: column; + justify-content: center; + padding-right: 20px; +} +.box-list dd p:nth-child(1){ + font-size: 20px; + padding-bottom: 10px; +} +.box-list dd p:nth-child(2){ + font-size: 14px; + height: 54px; + line-height: 26px; + margin-bottom: 30px; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + letter-spacing: 1px; + color: #777; +} +.box-list dl .item-bottom{ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #777; +} + +.box-list dl .item-bottom span{ + background-color: #f3f2f2; + /* padding: 7px 12px; */ + margin-right: 10px; + width: 80px; + height: 30px; + line-height: 30px; + display: inline-block; + text-align: center; +} +.box-list dl .item-bottom span:hover{ + color: #50972c; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + margin-top: 15px; + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 3px solid #f3f2f2; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 3px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -3px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 461px; + background-repeat: no-repeat; + background-position: center; + background-size: cover; +} +/**********************内容右侧End**********************/ diff --git a/static/assets/css/product-detail.css b/static/assets/css/product-detail.css new file mode 100644 index 0000000..d46056c --- /dev/null +++ b/static/assets/css/product-detail.css @@ -0,0 +1,258 @@ +/*主图主结构*/ +.preview-wrap{width: 450px; } +.preview-wrap #magnifier-wrap{position: relative; width: 450px;} +.preview-wrap #magnifier-wrap > span{cursor: not-allowed;position: absolute; bottom: 0; width: 20px; height: 75px; line-height: 75px; text-align: center;border: 1px solid #e5e5e5;} +.preview-wrap #magnifier-wrap > span.ns-text-color-gray{cursor: pointer;} +.preview-wrap #magnifier-wrap .spec-left-btn{left: 0;} +.preview-wrap #magnifier-wrap .spec-right-btn{right: 0;} + + +/*显示图*/ +.preview-wrap #magnifier-wrap .magnifier-main{position: relative; width: 450px; height: 450px; line-height: 450px; text-align: center;} +.preview-wrap #magnifier-wrap .magnifier-main img{width: 100%;height:100% } +.preview-wrap #magnifier-wrap .magnifier-drag{position: absolute; top: 0; left: 0; background-color: #fede4f; opacity: 0.4; filter: alpha(opacity=40); cursor: move;} +.preview-wrap #magnifier-wrap .magnifier-pop{position: absolute; top: 0; overflow: hidden; background: #fff url(../images/loading.gif) no-repeat center center; z-index: 99;} +/*組合图*/ +.preview-wrap #magnifier-wrap .spec-items{position: relative; width: 550px; height: 90px; overflow: hidden; margin: 0 auto;} +.preview-wrap #magnifier-wrap .spec-items ul{ +position: absolute; +top: 15px; +left: 0; +display: flex; +} +.preview-wrap #magnifier-wrap .spec-items ul *{-webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s;} +.preview-wrap #magnifier-wrap .spec-items li{ +width: 75px; +height: 73px; +overflow: hidden; +margin-right: 5px; +border: 1px solid #999; +cursor: pointer; +opacity: .5; +display: flex; +flex-flow: column; +align-items: center; +text-align: center; +justify-content: center; +} +.preview-wrap #magnifier-wrap .spec-items li.ns-border-color-gray{border: 1px solid #e5e5e5; opacity: 1} +.preview-wrap #magnifier-wrap .spec-items li img{width: 100%;} + +/*隐藏放大*/ +.mag-target-img {position: absolute;top: 0;left: 0;} +.info-left .preview-wrap {width: 600px;} +.info-left .preview-wrap #magnifier-wrap .magnifier-main{width: 600px;height: 450px;line-height: 450px;} +.info-left .preview-wrap #magnifier-wrap{width: 600px;} +.info-left .basic-info-wrap {float:left;width:645px;margin-left: 10px;} + + +/*头部导航标题*/ +.product-nav-txt{ + height: 30px; + line-height: 30px; + padding: 12px 0; + display: flex; +} + +.product-nav-txt .arrow{ + margin: 0 7px; + font-family: sans-serif; + color: #8c8c8c; +} + +.product-nav-txt .finish{ + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/*主体头部*/ +.product-info{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; + margin-bottom: 20px; +} +.product-info .info-left{ + width: 600px; +} +.product-info .info-right{ + width: 570px; + padding: 0 55px; + display: flex; + flex-flow: column; + justify-content: center; +} +.info-right .info-title{ + +} +.info-right .info-title p:nth-child(1){ + font-size: 22px; + font-weight: 700; + padding-bottom: 15px; +} +.info-right .info-title p:nth-child(2){ + font-size: 14px; + color: #999; + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3) em{ + color: #d90114; +} +.info-right .info-title p:nth-child(3) .price{ + font-size: 36px; + color: #d90114; +} +.info-right .info-title p:nth-child(3) .freight{ + border: 1px solid #999; + padding: 2px; + margin: 0 20px; + font-size: 12px; +} +.info-right .info-title p:nth-child(3) del{ + color: #999; +} +.info-right .info-title p:nth-child(4){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(5){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(6){ + padding-bottom: 20px; +} +.info-right .info-button{ + display: flex; + font-size: 20px; + border-bottom: 1px solid #f5f5f5; + padding-bottom: 40px; + margin-bottom: 20px; +} +.info-right .info-button .btn-zx{ + width: 160px; + height: 46px; + background-color: #d90114; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + margin-right: 10px; + cursor: pointer; +} +.info-right .info-button .btn-yy{ + width: 160px; + height: 46px; + background-color: #458122; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; +} +.info-right .info-desc{ + +} +.info-right .info-desc p:nth-child(1){ + padding-bottom: 20px; +} +.info-right .info-desc p:nth-child(1) span{ + color: #458122; +} +.info-right .info-desc p:nth-child(2){ + color: #999; + line-height: 22px; +} + +/*商品详情*/ +.product-detail{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; +} +.product-detail .detail-left{ + width: 600px; +} +.product-detail .detail-left-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-detail .detail-left ul{ + height: 177px; + color: #555; + display: flex; + flex-flow: column; + /*justify-content: space-between;*/ +} +.product-detail .detail-left ul li{ + list-style: disc; + list-style-position: inside; + height: 35px; + line-height: 35px; +} +.detail-right{ + width: 600px; +} +.detail-right .detail-right-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.detail-right .detail-right-param{ + display: flex; + flex-flow: wrap; + color: #555; + border-right: 1px solid #999; + border-bottom: 1px solid #999; +} +.detail-right .detail-right-param dl{ + width: 298.5px; + height: 43px; + display: flex; + align-items: center; + border-top: 1px solid #999; + border-left: 1px solid #999; +} +.detail-right .detail-right-param dt{ + width: 70px; + height: 44px; + line-height: 44px; + text-align: center; + border-right: 1px solid #999; +} +.detail-right .detail-right-param dd{ + height: 44px; + width: 199px; + line-height: 44px; + padding-left: 30px; +} + +/*商品图片详情*/ +.product-img{ + background-color: #fff; + padding: 0 30px; +} +.product-img .img-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-img .img-detail{ + display: flex; + flex-flow: wrap; + justify-content: space-between; +} +.product-img .img-detail .img-detail-li{ + width: 600px; + height: 450px; + padding-bottom: 20px; +} +.product-img .img-detail img{ + width: 100%; +} diff --git a/static/assets/css/product.css b/static/assets/css/product.css new file mode 100644 index 0000000..634aaa9 --- /dev/null +++ b/static/assets/css/product.css @@ -0,0 +1,172 @@ +.crumbs-nav{ height:30px; line-height:30px; padding:12px 0;display: flex;justify-content: space-between;} +.crumbs-nav span{ color:#8c8c8c; float:left;} +.crumbs-nav-item{ float:left; margin-right:7px; position:relative;} +.crumbs-nav-item .arrow{ font-family: simsun;} +.crumbs-nav-item a span{ color:#555;} +.crumbs-nav-item .menu-drop{ float:left; margin-right:7px; background-color:#fff;} +.crumbs-nav-item .icon-right{ font-size:12px;} +.cn-goodsName{ width:300px; display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; float:left; color:#8c8c8c;} + +.crumbs-nav span.arrow{ margin:0 7px; font-family:sans-serif; color:#8c8c8c;} +.crumbs-nav span.finish{ display:inline-block; width:300px; height:25px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;} + +.selector{ background-color:#fff; margin-bottom:15px;} +.selector .s-line{ border:1px dotted #d2d2d2; margin-top:-1px;} +.selector .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.selector .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.selector .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.selector .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.selector .s-l-v-list li{ float:left; width:100px; overflow:hidden; margin-right:10px;} +.selector .s-l-v-list li.curr a,.selector .s-l-v-list li a.shaixuan{ color:#f42424;} + +.selector .s-l-opt{ position:absolute; top:10px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.selector .s-l-opt a{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c;} +.selector .s-l-opt a:hover{ border-color:#f42424; color:#f42424;} +.selector .s-l-opt a .iconfont{ font-size:12px; float:left; margin-top:2px;} +.selector .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.selector .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.selector .s-l-opt .s-l-multiple{ padding:0 5px;} +.selector .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#f42424;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} + + +/*产品内容*/ +.product-tab{ + display: flex; + justify-content: space-between; + border-bottom: 1px solid #f0f0f0; + margin-bottom: 20px; + padding-bottom: 7px; + padding-left: 5px; +} +.tab-left{ + display: flex; + font-size: 22px; + justify-content: center; + align-items: center; + flex-flow: wrap; +} +.tab-left .selected-txt{ + font-weight: 700; +} +.tab-left .selected{ + width: 100%; + height: 2px; + background-color: #50972c; + position: absolute; + bottom: -7px; + left: 0; +} +.tab-left p:nth-child(1){ + position: relative; +} +.tab-left p:nth-child(2){ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 15px; +} +.tab-left p:nth-child(3){ + position: relative; +} +.tab-left img{ + position: absolute; + right: -30px; + top: 0; +} +.tab-right{ + font-size: 14px; +} +.tab-right .selected{ + color: #50972c; +} +.tab-right .tab-line{ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 10px; +} +.tab-right ul{ + display: flex; + flex-flow: wrap; + align-items: center; + height: 100%; +} +.tab-right ul li{ + display: flex; + align-items: center; +} +.scheme_right { + /*width: 1067px;*/ +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} +.scheme_right li { + width: 242px; + height: 292px; + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right .margin-rb{ + margin: 0 15px 15px 0; +} +.scheme_right li .scheme_li{ + width: 212px; + height: 277px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 212px; + height: 159px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} +#goods-page{ + text-align: center; + padding: 20px 0;; +} + + diff --git a/static/assets/css/select.css b/static/assets/css/select.css new file mode 100644 index 0000000..a3654c4 --- /dev/null +++ b/static/assets/css/select.css @@ -0,0 +1,117 @@ +/*商品筛选功能*/ +.right-extra{ width:100%; position:relative; background-color:#fff; margin-bottom:15px;} +.right-extra .u_cloose{ border:1px dashed #d2d2d2; height:25px; padding:12px 12px 12px 30px;} +.right-extra .u_cloose dl{ color:#8c8c8c;} +.right-extra .u_cloose dt{ float:left; line-height:25px;} +.right-extra .u_cloose dd{ float:left;} +.right-extra .u_cloose dd .get_item{ position:relative; height:23px; line-height:23px; border:1px dotted #d2d2d2; padding:0 0 0 8px; margin-right:10px; float:left;} +.right-extra .u_cloose dd .get_item b{ font-weight:normal;} +.right-extra .u_cloose dd .get_item em{ color:#50972c;} +.right-extra .u_cloose dd .get_item a{ + color: #50972c !important; +} +.right-extra .u_cloose dd .get_item:hover a{ background-color:#50972c; color: #ffffff !important;} +.right-extra .u_cloose dd .get_item:hover{ border-color:#50972c;} + +.right-extra .u_cloose .give_up_all{ float:right; margin-right:0; line-height:25px;} + +.screen-item .s-line{ border:1px dashed #d2d2d2; margin-top:-1px;} +.screen-item .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.s-line .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.s-line .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.s-line .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.brand_select_more{ max-height:111px; position:relative;} + +.extend .brand_select_more{ min-height:111px; height:auto;} + +.extend .ps-container>.ps-scrollbar-y-rail, +.extend .ps-container>.ps-scrollbar-x-rail, +.extend .ps-container:hover>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-x-rail, +.multiple .ps-container:hover>.ps-scrollbar-y-rail{ opacity:1; filter: alpha(opacity=100);} + +/*品牌*/ +.wrap_brand .brand_div{ overflow:hidden; zoom:1;padding-top: 1px;} +.wrap_brand .brand_img_word{ float:left; width:110px; height:40px; border:1px solid #ddd; margin:-1px -1px 0 0; background-color:#fff; position:relative; text-align:center;} +.wrap_brand .brand_img_word a{ display:block; width:110px; height:40px; line-height:40px; zoom:1; overflow:hidden;} +.wrap_brand .brand_img_word span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; width:100%; display:block;} +.wrap_brand .brand_img_word img{ width:118px; height:52px;} +.wrap_brand .brand_img_word:hover{ position:relative; z-index:5; border-color:#50972c;} +.wrap_brand .brand_img_word:hover a{ border-color:#50972c;color:#50972c;} +.wrap_brand .brand_img_word:hover .logo{ display:none;} +.wrap_brand .brand_img_word i{ display:none; width:12px; height:12px; background:url(../images/dsc-icon.png) no-repeat; position:absolute; top:1px; right:1px;} +.brand_img{ + height: 28px; + overflow: hidden; +} + +.brand_auto .brand_range{ float:left; margin-right:30px;} +.brand_auto .brand_range a:hover{color:#50972c;} + +/*类型*/ +.type_auto .type_range{ float:left; margin-right:30px;} +.type_auto .type_range a:hover{color:#50972c;} + +/*地区*/ +.area_auto .area_range{ float:left; margin-right:30px;} +.area_auto .area_range a:hover{color:#50972c;} + +/*成色*/ +.new_auto .new_range{ float:left; margin-right:30px;} +.new_auto .new_range a:hover{color:#50972c;} + +/*颜色*/ +.s-l-value .color_list_color{ margin:4px 0;} +.s-l-value .color_list_color .color_divdd{ width:auto; height:auto; margin-right:20px; display:inline-block; float:left;} +.s-l-value .color_list_color .color_divdd dd{ height:20px; width:20px; text-align:center; line-height:20px; margin-right:0; position:relative;} +.s-l-value .color_list_color .color_divdd dd span{ height:18px; width:18px; display:block; border:1px solid #dcdcdc;} + +.screen-item .selected{ + font-weight: 700; + color: #50972c !important; +} + +/*操作*/ +.s-line .s-l-opt{ position:absolute; top:15px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.s-line .s-l-opt div{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c; cursor:pointer;} +.s-line .s-l-opt div:hover{ border-color:#50972c; color:#50972c;} +.s-line .s-l-opt div .iconfont{ font-size:12px; float:left; margin-top:1px;} +.s-line .s-l-opt div .icon-reduce{ margin-top:1px;} + +.s-line .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.s-line .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.s-line .s-l-opt .s-l-multiple{ padding:0 5px; float:right;} +.s-line .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +/*属性*/ +.s-l-value .item_list{ overflow:hidden;} +.s-l-value .item_list dd{ float:left; margin-right:40px; width:auto; height:28px; white-space:nowrap;} +.s-l-value .item_list dd strong{ font-weight:normal;} +.s-l-value .item_list .get_me a{ cursor:pointer;} +.s-l-value .item_list .get_me span{ background: url(../images/checkbox_12x12.png) no-repeat; display: block; float: left; height: 12px; margin:9px 5px 0 0; width: 12px;} +.s-l-value .item_list .selected span{ background: url(../images/checked_12x12.png) no-repeat;} + +.tw_buttom{ text-align:center; padding:10px 0 5px; display:none;} +.tw_buttom span{ width:48px; height:23px; line-height:23px; border:1px solid #d2d2d2; background-color:#fff; color:#8c8c8c; display:inline-block; font-size:12px; cursor:pointer;} +.tw_buttom .sure{ background-color:#50972c; border-color:#50972c; color:#fff; margin-right:10px;} +.tw_buttom .disabled{ display:none;} + +/*更多选项*/ +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#50972c;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} +.s-more strong{ font-weight:normal;} + + + +.multiple .all_a_z, +.multiple .zimu_list, +.multiple .enter_yes_no, +.multiple .tw_buttom{ display:block;} +.multiple .wrap_brand{ display:none;} + +.ohide{ height:28px;} +.extend .ohide,.multiple .ohide{ height:auto;} +.same_li .s-l-opt .choose_open{ display:none;} diff --git a/static/assets/css/style.min.css b/static/assets/css/style.min.css new file mode 100644 index 0000000..8000876 --- /dev/null +++ b/static/assets/css/style.min.css @@ -0,0 +1,703 @@ +html { + height: 100%; + width: 100%; + font-size: 16px; +} + +* { -webkit-user-select: none; } + +body, +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +code, +form, +fieldset, +legend, +input, +textarea, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; +} + +body { + width: 100%; + height: 100%; + font-family: "Microsoft Yahei"; + color: #000; + background-color: #fff; +} + +strong { + font-weight: bold; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; + font-weight: bold; + ; +} + +section, +header, +article, +time, +nav, +footer, +figure, +figcaption { + display: block; + margin: 0; + padding: 0; +} + +input:focus, +a:focus { + outline: none; +} + +fieldset, +img { + display: block; + border: 0; +} + +ol, +ul { + list-style: none; +} + +caption, +th { + text-align: left; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; +} + +q:before, +q:after { + content: ''; +} + +em { + font-style: normal +} + +abbr, +acronym { + border: 0; + font-variant: normal; +} + +sup { + vertical-align: text-top; +} + +sub { + vertical-align: text-bottom; +} + +button, +input, +textarea, +select { + font-family: tahoma, arial, simsun, sans-serif; + font-size: inherit; + font-weight: inherit; + line-height: 1.5; + vertical-align: middle; +} + +button, +input, +textarea, +select { + *font-size: 100%; +} + +textarea { + resize: none; +} + +legend { + color: #000; +} + +a { + vertical-align: baseline; + cursor: pointer; + color: #000; +} + +a, +a:visited { + text-decoration: none; +} + +/* 公共css */ +.wrap { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.w1578{ + width: 1578px; + margin: 0 auto; +} +.w1200{ + width: 1200px; + margin: 0 auto; +} +.w1280{ + width: 1280px; + margin: 0 auto; +} + +.shangqiao{ + cursor: pointer; +} + +.flexR{ + display: flex; +} + +.flexRC{ + display: flex; + justify-content: center; + align-items: center; +} + +.flexW{ + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-content: space-between; +} + +.flexC{ + display: flex; + flex-direction: column; +} +.flexCC{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.flexCB{ + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; +} + +[v-cloak] { + display: none !important; +} + +section { + margin-top: 70px; + flex: 1; + letter-spacing: .43px; +} + +#cnzz_stat_icon_1262038122{ + display: none; +} +#cnzz_stat_icon_1262038122 img{ + width: 0; + height: 0; +} + +.color-green{ + color: #50972c; +} + +.color-grey{ + color: #9a9a9a; +} +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + + +/*右侧导航*/ +.rightMenu{ + display: block; + width: 66px; + height: auto; + position: fixed; + top: 40%; + right: 30px; + z-index: 90; + box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08); +} +.rightMenu li{ + height: 76px; + background: #fff; + position: relative; + text-align: center; + font-size: 12px; + color: #666666; + line-height: 20px; +} +.rightMenu li>a{ + display: block; + width: 100%; + height: 100%; + position: relative; + color: #666666; + text-align: center; + padding-top: 15px; +} +.rightMenu li::after{ + content: ""; + display: block; + width: 40px; + height: 1px; + background: #ebebeb; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -20px; +} +.rightMenu li:last-child::after{ + display: none; +} +.rightMenu li span{ + display: block; + width: 100%; + height: 26px; + margin: 0 auto 7px; + text-align: center; +} +.rightMenu li span img{ + display: block; + margin: 0 auto; +} +.rightMenu li span .img2{ + display: none; +} +.rightMenu li em{ + display: block; + width: 20px; + height: 20px; + text-align: center; + line-height: 20px; + border-radius: 50%; + overflow: visible; + position: absolute; + top: 5px; + right: 8px; + background: #50982c; + color: #fff; + font-size: 12px; +} +.rightMenu li:hover em{ + background: #b2d600; + color: #50982c; +} +.rightMenu li:hover{ + background: #50982c; +} +.rightMenu li:hover::after{ + display: none; +} +.rightMenu li:hover a{ + color: #fff; +} +.rightMenu li:hover span .img1{ + display: none; +} +.rightMenu li:hover span .img2{ + display: block; +} +.rightMenu li.zhiding a{ + padding-top: 14px; +} +.rightMenu li.zhiding span{ + margin: 0; +} + +.rightMenu li:nth-child(1){ + +} + +.rightMenu .rightMenu-show{ + display: none; + position: absolute; + left: -150px; + top: 0; + background-color: #ffffff; + padding: 10px 0; + width: 150px; + height: 56px; + line-height: 30px; + box-shadow: -5px 0px 10px 0 rgb(0 0 0 / 8%); +} +.rightMenu .rightMenu-show p:nth-child(1){ + font-size: 20px; + font-weight: 700; + color: #50972d; + /*padding-bottom: 10px;*/ +} + +/*底部悬浮表单*/ +.footerForm{ + display: block; + width: 100%; + height: 110px; + position: fixed; + bottom: -80px; + left: 0; + z-index: 90; +} +.footerForm-in{ + position: relative; + text-align: center; + font-size: 0; + height: 80px; + padding: 20px 0; +} +.footerForm-in span{ + font-size: 26px; + color: #fbc35d; + line-height: 40px; + margin-right: 90px; + display: inline-block; +} +.footerForm-in input{ + display: inline-block; + vertical-align: top; + width: 260px; + height: 40px; + border-radius: 4px; + background: #fff; + margin-right: 10px; + padding: 0 16px; + font-size: 14px; + color: #333; +} +.footerForm-in button{ + display: inline-block; + vertical-align: top; + width: 110px; + height: 40px; + border-radius: 4px; + background: #50982c; + text-align: center; + font-size: 14px; + color: #fff; + border: none; +} +.footerForm-kefu{ + display: inline-block; + vertical-align: top; + width: 128px; + position: relative; + margin-left: 54px; + margin-right: 56px; + height: 40px; +} +.footerForm-kefu img{ + position: absolute; + bottom: -20px; + left: 0; + display: block; + width: 128px; +} +.footerForm .colse{ + display: block; + width: 392px; + height: 30px; + background-repeat: no-repeat; + background-position: center; + background-image: url(../images/close-01.png); + cursor: pointer; + z-index: 19; + margin: 0 auto; +} +.footerForm .check-open{ + background-image: url(../images/close-02.png); +}.header { + width: 100%; + height: 70px; + background-color: #FFFFFF; + position: fixed; + top: 0; + z-index: 999; + box-shadow: 0 0 2px 2px #E8E8ED; + font-family: MicrosoftYaHei; +} + +.header header { + width: 100%; + max-width: 1280px; + height: 70px; + margin: 0 auto; + display: flex; + align-items: center; +} + +.header-left { + width: 124px; +} + +.header ul { + margin:0 auto; + /* width: 560px; */ + font-size: 16px; + letter-spacing: 2px; + display: flex; + justify-content: space-between; + margin-left: 20px; + /* margin-right: 582px; */ +} + +.header ul li { + width: 130px; + text-align: center; + display: block; +} + +/* .header ul li a { + width: 150px; + display: block; +} */ + +.header ul li a em{ + color: #f10000; + font-size: 14px; +} + +.header-right{ + float: right; + width: 215px; + font-size: 20px; + color: #333333; + font-weight: bold; +} + +.activity { + color: #50972c !important; +} + +@media (max-width: 1680px){ + .header header { + max-width: 1200px; + } + + .header ul { + margin-right: 204px; + } +} +.footer { + width: 100%; + height: 300px; +} +.footer a { + color: #575d6c; +} +.footer footer { + width: 100%; + /*height: 250px;*/ + color: #575d6c; + background-color: #f0eff0; +} +.footer-mode { + /*height: 200px;*/ + /*background-color: rgb(37, 37, 37);*/ +} +.logo{ + padding: 0 60px; +} +.nav { + width: 225px; + height: 273px; + /* padding: 0 80px; */ + display: flex; + flex-direction: column; +} +.nav li{ + padding-bottom: 20px; +} +.nav li b{ + color: #333; +} +.mode-link{ + width: 1px; + height: 273px; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.mode-link .link-center{ + background-color: #bfbfbf; + height: 150px; + width: 1px; +} +.contact { + padding: 0 85px; + display: flex; + flex-direction: column; + text-align: center; +} +.contact p:nth-child(1) { + padding-bottom: 25px; +} +.contact p:nth-child(2) { + font-size: 18px; +} +.contact p:nth-child(3) { + font-family: Impact; + font-size: 34px; + letter-spacing: 1px; + margin-top: 4px; + color: #34802a; +} +.contact p:nth-child(4) { + font-size: 14px; + padding-bottom: 25px; + margin-top: 4px; +} +.contact p:nth-child(5) { + margin-bottom: 12px; +} +.contact ul{ + display: flex; + justify-content: center; +} +.contact ul li{ + position: relative; +} +.contact ul li:hover .qrcode-no{ + display: none !important; +} +.contact ul li:hover .qrcode-yes{ + display: block !important; +} +.contact ul li .qrcode-img{ + position: absolute; + top: -110px; + left: -38px; + display: none; +} + +.footer-links{ + margin-top: 10px; +} +.footer-links .links-box{ + border-top: 1px solid #bfbfbf; + border-bottom: 1px solid #bfbfbf; + padding-top: 25px; + padding-bottom: 10px; + display: flex; + flex-flow: wrap; +} +.links-box .links-left{ + width: 80px; +} +.links-box .links-right{ + width: 1200px; +} +.links-box .links-right ul{ + display: flex; + flex-flow: wrap; +} +.links-box .links-right ul li{ + padding-right: 15px; + padding-bottom: 15px; +} + +.attention{ + font-size: 14px; + text-align: center; + line-height: 24px; + padding-left: 60px; +} +.copyright { + /*background-color: rgb(51, 51, 51);*/ + font-size: 14px; + text-align: center; + color: #575d6c; + padding: 10px; +} +.copyright .w1200 { + height: 50px; +} +.copyright .w1200 p:nth-child(2) { + margin: 0 30px; +} +.navColor{ + color: #50972c!important; +} + +.footer-guarantee{ + +} +.footer-guarantee dl{ + display: flex; + height: 90px; +} +.footer-guarantee dt{ + width: 60px; + display: flex; + justify-content: center; + align-items: center; +} + +.footer-guarantee dd{ + width: 225px; + display: flex; + flex-flow: column; + justify-content: center; +} +.footer-guarantee dd p:nth-child(1){ + padding-bottom: 2px; + font-size: 18px; + font-weight: 700; +} +.footer-guarantee dd p:nth-child(2){ + font-size: 14px; +} \ No newline at end of file diff --git a/static/assets/css/swiper.css b/static/assets/css/swiper.css new file mode 100644 index 0000000..5b83729 --- /dev/null +++ b/static/assets/css/swiper.css @@ -0,0 +1,13 @@ +/** + * Swiper 6.6.2 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2021 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: May 19, 2021 + */ + +@font-face{font-family:swiper-icons;src:url('../fonts/3d7c5314e98e4535b1cbd2cb23e5d046.woff') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} \ No newline at end of file diff --git a/static/assets/fonts/iconfont.eot b/static/assets/fonts/iconfont.eot new file mode 100644 index 0000000..622d7ec Binary files /dev/null and b/static/assets/fonts/iconfont.eot differ diff --git a/static/assets/fonts/iconfont.svg b/static/assets/fonts/iconfont.svg new file mode 100644 index 0000000..999ca1f --- /dev/null +++ b/static/assets/fonts/iconfont.svg @@ -0,0 +1,554 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/assets/fonts/iconfont.ttf b/static/assets/fonts/iconfont.ttf new file mode 100644 index 0000000..06e30f9 Binary files /dev/null and b/static/assets/fonts/iconfont.ttf differ diff --git a/static/assets/fonts/iconfont.woff b/static/assets/fonts/iconfont.woff new file mode 100644 index 0000000..66a1783 Binary files /dev/null and b/static/assets/fonts/iconfont.woff differ diff --git a/static/assets/fonts/iconfont.woff2 b/static/assets/fonts/iconfont.woff2 new file mode 100644 index 0000000..47e9980 Binary files /dev/null and b/static/assets/fonts/iconfont.woff2 differ diff --git a/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg b/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg new file mode 100644 index 0000000..3f0fc24 Binary files /dev/null and b/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg differ diff --git a/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg b/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg new file mode 100644 index 0000000..6bf5f4e Binary files /dev/null and b/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg differ diff --git a/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg b/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg new file mode 100644 index 0000000..5f46ab9 Binary files /dev/null and b/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg differ diff --git a/static/assets/images/15fa28620538174287af554a39b17989.jpg b/static/assets/images/15fa28620538174287af554a39b17989.jpg new file mode 100644 index 0000000..55ac58d Binary files /dev/null and b/static/assets/images/15fa28620538174287af554a39b17989.jpg differ diff --git a/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg b/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg new file mode 100644 index 0000000..9c0b00f Binary files /dev/null and b/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg differ diff --git a/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg b/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg new file mode 100644 index 0000000..d9a3ee0 Binary files /dev/null and b/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg differ diff --git a/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg b/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg new file mode 100644 index 0000000..019fe41 Binary files /dev/null and b/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg differ diff --git a/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg b/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg new file mode 100644 index 0000000..dec2b83 Binary files /dev/null and b/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg differ diff --git a/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg b/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg new file mode 100644 index 0000000..9e744c3 Binary files /dev/null and b/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg differ diff --git a/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg b/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg new file mode 100644 index 0000000..c940cbc Binary files /dev/null and b/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg differ diff --git a/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg b/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg new file mode 100644 index 0000000..12b15fc Binary files /dev/null and b/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg differ diff --git a/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg b/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg new file mode 100644 index 0000000..9b4de8d Binary files /dev/null and b/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg differ diff --git a/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg b/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg new file mode 100644 index 0000000..a2eb386 Binary files /dev/null and b/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg differ diff --git a/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg b/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg new file mode 100644 index 0000000..3e33aa7 Binary files /dev/null and b/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg differ diff --git a/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg b/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg new file mode 100644 index 0000000..e84ea76 Binary files /dev/null and b/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg differ diff --git a/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg b/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg new file mode 100644 index 0000000..fb847dd Binary files /dev/null and b/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg differ diff --git a/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg b/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg new file mode 100644 index 0000000..d39c3d2 Binary files /dev/null and b/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg differ diff --git a/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg b/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg new file mode 100644 index 0000000..d035ee5 Binary files /dev/null and b/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg differ diff --git a/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg b/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg new file mode 100644 index 0000000..c1fcdf8 Binary files /dev/null and b/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg differ diff --git a/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg b/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg new file mode 100644 index 0000000..ebfc8e9 Binary files /dev/null and b/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg differ diff --git a/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg b/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg new file mode 100644 index 0000000..4a004ed Binary files /dev/null and b/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg differ diff --git a/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg b/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg new file mode 100644 index 0000000..72c95e6 Binary files /dev/null and b/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg differ diff --git a/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg b/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg new file mode 100644 index 0000000..7e7d5a9 Binary files /dev/null and b/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg differ diff --git a/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg b/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg new file mode 100644 index 0000000..8470b0f Binary files /dev/null and b/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg differ diff --git a/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg b/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg new file mode 100644 index 0000000..7e6e221 Binary files /dev/null and b/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg differ diff --git a/static/assets/images/acbf278b22be871a9897b07667844faa.jpg b/static/assets/images/acbf278b22be871a9897b07667844faa.jpg new file mode 100644 index 0000000..b53f649 Binary files /dev/null and b/static/assets/images/acbf278b22be871a9897b07667844faa.jpg differ diff --git a/static/assets/images/banner-certify.jpg b/static/assets/images/banner-certify.jpg new file mode 100644 index 0000000..5bfd765 Binary files /dev/null and b/static/assets/images/banner-certify.jpg differ diff --git a/static/assets/images/banner-course.jpg b/static/assets/images/banner-course.jpg new file mode 100644 index 0000000..b070536 Binary files /dev/null and b/static/assets/images/banner-course.jpg differ diff --git a/static/assets/images/banner-esg.jpg b/static/assets/images/banner-esg.jpg new file mode 100644 index 0000000..9d80408 Binary files /dev/null and b/static/assets/images/banner-esg.jpg differ diff --git a/static/assets/images/banner-esg1.jpg b/static/assets/images/banner-esg1.jpg new file mode 100644 index 0000000..1718060 Binary files /dev/null and b/static/assets/images/banner-esg1.jpg differ diff --git a/static/assets/images/banner-right.jpg b/static/assets/images/banner-right.jpg new file mode 100644 index 0000000..933ea6f Binary files /dev/null and b/static/assets/images/banner-right.jpg differ diff --git a/static/assets/images/banner.jpg b/static/assets/images/banner.jpg new file mode 100644 index 0000000..09f7964 Binary files /dev/null and b/static/assets/images/banner.jpg differ diff --git a/static/assets/images/banner.png b/static/assets/images/banner.png new file mode 100644 index 0000000..af05602 Binary files /dev/null and b/static/assets/images/banner.png differ diff --git a/static/assets/images/bj1.png b/static/assets/images/bj1.png new file mode 100644 index 0000000..64e7ced Binary files /dev/null and b/static/assets/images/bj1.png differ diff --git a/static/assets/images/brand-intro.jpg b/static/assets/images/brand-intro.jpg new file mode 100644 index 0000000..885b0ea Binary files /dev/null and b/static/assets/images/brand-intro.jpg differ diff --git a/static/assets/images/case-bg.jpg b/static/assets/images/case-bg.jpg new file mode 100644 index 0000000..8f30a11 Binary files /dev/null and b/static/assets/images/case-bg.jpg differ diff --git a/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg b/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg new file mode 100644 index 0000000..6a5bcef Binary files /dev/null and b/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg differ diff --git a/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg b/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg new file mode 100644 index 0000000..9bdeb6c Binary files /dev/null and b/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg differ diff --git a/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg b/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg new file mode 100644 index 0000000..76e9b01 Binary files /dev/null and b/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg differ diff --git a/static/assets/images/charity-bg.png b/static/assets/images/charity-bg.png new file mode 100644 index 0000000..d67ebd7 Binary files /dev/null and b/static/assets/images/charity-bg.png differ diff --git a/static/assets/images/checkbox_12x12.png b/static/assets/images/checkbox_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/static/assets/images/checkbox_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/assets/images/checked_12x12.png b/static/assets/images/checked_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/static/assets/images/checked_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/assets/images/close-01.png b/static/assets/images/close-01.png new file mode 100644 index 0000000..c991022 Binary files /dev/null and b/static/assets/images/close-01.png differ diff --git a/static/assets/images/close-02.png b/static/assets/images/close-02.png new file mode 100644 index 0000000..dab5dee Binary files /dev/null and b/static/assets/images/close-02.png differ diff --git a/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg b/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg differ diff --git a/static/assets/images/dsc-icon.png b/static/assets/images/dsc-icon.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/static/assets/images/dsc-icon.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/assets/images/e440d56b738e29b417278f88aa534490.jpg b/static/assets/images/e440d56b738e29b417278f88aa534490.jpg new file mode 100644 index 0000000..ef2c994 Binary files /dev/null and b/static/assets/images/e440d56b738e29b417278f88aa534490.jpg differ diff --git a/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg b/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg new file mode 100644 index 0000000..3c076a6 Binary files /dev/null and b/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg differ diff --git a/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg b/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg new file mode 100644 index 0000000..afa4edf Binary files /dev/null and b/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg differ diff --git a/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg b/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg new file mode 100644 index 0000000..9a28705 Binary files /dev/null and b/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg differ diff --git a/static/assets/images/fa-bg01.png b/static/assets/images/fa-bg01.png new file mode 100644 index 0000000..13f69ae Binary files /dev/null and b/static/assets/images/fa-bg01.png differ diff --git a/static/assets/images/i3.png b/static/assets/images/i3.png new file mode 100644 index 0000000..fe8561e Binary files /dev/null and b/static/assets/images/i3.png differ diff --git a/static/assets/images/jn.png b/static/assets/images/jn.png new file mode 100644 index 0000000..ee7c1ae Binary files /dev/null and b/static/assets/images/jn.png differ diff --git a/static/assets/images/loading.gif b/static/assets/images/loading.gif new file mode 100644 index 0000000..5b33f7e Binary files /dev/null and b/static/assets/images/loading.gif differ diff --git a/static/assets/images/logo.png b/static/assets/images/logo.png new file mode 100644 index 0000000..64c8058 Binary files /dev/null and b/static/assets/images/logo.png differ diff --git a/static/assets/images/qywh1-bg.jpg b/static/assets/images/qywh1-bg.jpg new file mode 100644 index 0000000..b9ad6a2 Binary files /dev/null and b/static/assets/images/qywh1-bg.jpg differ diff --git a/static/assets/images/search.png b/static/assets/images/search.png new file mode 100644 index 0000000..415fa53 Binary files /dev/null and b/static/assets/images/search.png differ diff --git a/static/assets/images/service-bg01.png b/static/assets/images/service-bg01.png new file mode 100644 index 0000000..d9059ab Binary files /dev/null and b/static/assets/images/service-bg01.png differ diff --git a/static/assets/images/service-bg03.png b/static/assets/images/service-bg03.png new file mode 100644 index 0000000..e0275a8 Binary files /dev/null and b/static/assets/images/service-bg03.png differ diff --git a/static/assets/images/site-bg.jpg b/static/assets/images/site-bg.jpg new file mode 100644 index 0000000..817599c Binary files /dev/null and b/static/assets/images/site-bg.jpg differ diff --git a/static/assets/images/tx-bg.png b/static/assets/images/tx-bg.png new file mode 100644 index 0000000..8d25357 Binary files /dev/null and b/static/assets/images/tx-bg.png differ diff --git a/static/assets/images/video.jpg b/static/assets/images/video.jpg new file mode 100644 index 0000000..6543e48 Binary files /dev/null and b/static/assets/images/video.jpg differ diff --git a/static/assets/images/wm_button_icon.png b/static/assets/images/wm_button_icon.png new file mode 100644 index 0000000..cb4f816 Binary files /dev/null and b/static/assets/images/wm_button_icon.png differ diff --git a/static/assets/js/about.js b/static/assets/js/about.js new file mode 100644 index 0000000..56b56d6 --- /dev/null +++ b/static/assets/js/about.js @@ -0,0 +1,462 @@ +var vm = new Vue({ + el: '#content', + data: { + site_tab_idx:0, + site_content_sel:[], + site_content_list:[ + { + city: "李桥店展厅", + area: "12000", + address: "北京市顺义区Y603(沿沙路)楚天子谋大厦", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj4.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj5.jpg', + ] + }, + { + city: "青浦展厅", + area: "12000", + address: "上海市青浦区嘉松中路3568号", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-qp-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-5.jpg', + ] + }, + { + city: "浦东展厅", + area: "5000", + address: "上海市浦东新区秀沿路128号11号楼3F第二树", + url: "https://pd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd05.jpg', + ] + }, + { + city: "闵行展厅", + area: "5000", + address: "上海市松江区申光路168号6栋115号", + url: "https://mh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-mh-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-5.jpg', + ] + }, + { + city: "广州展厅", + area: "11000", + address: "广州市番禺区丽景路78号", + url: "https://gz.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/gz1.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz05.jpg', + ] + }, + { + city: "深圳展厅", + area: "8000", + address: "深圳市南山区麻磡社区奇星路47号", + url: "https://sz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz05.jpg', + ] + }, + { + city: "天津展厅", + area: "7500", + address: "天津市北辰区青光镇铁锅店村104国道旁", + url: "https://tj.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj05.jpg', + ] + }, + { + city: "武汉展厅", + area: "5000", + address: "武汉市洪山区白沙洲大道2号(华中城物流建材大市场)4栋3楼", + url: "https://wh.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh05.jpg', + ] + }, + { + city: "杭州展厅", + area: "6000", + address: "杭州市萧山区义蓬街道南沙路17号", + url: "https://hz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz05.jpg', + ] + }, + { + city: "成都展厅", + area: "8000", + address: "成都市双流区西航港大道中三段2667号第二树", + url: "https://cd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd05.jpg', + ] + }, + { + city: "重庆展厅", + area: "6000", + address: "重庆市江北区江北城组团A07地块(江北嘴金融城旁)俊豪ICFC,A座305", + url: "https://cq.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq05.jpg', + ] + }, + { + city: "香港展厅", + area: "800", + address: "香港特别行政区观塘区九龙湾启祥道9号信和工商中心7F", + url: "https://hk.deartree.com/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg05.jpg', + ] + }, + { + city: "双桥店展厅", + area: "1200", + address: "北京市朝阳区豆各庄乡Find未来园区二楼", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj-sq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-4.jpg', + ] + }, + { + city: "金桥店展厅", + area: "750", + address: "上海市浦东新区金苏路200号金桥万创中心F栋", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-jq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-5.jpg', + ] + }, + ], + }, + created() { + if (/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i + .test(navigator.userAgent)) { + //window.location.href = "/wap/about"; + } + // this.site_content_sel = this.site_content_list[0]; + }, + methods: { + clickSiteTab: function(idx) { + this.site_tab_idx = idx; + // this.site_content_sel = this.site_content_list[idx]; + showSite(); + }, + + } +}); +showSite(); +//展厅 +function showSite() { + var swiperSite = new Swiper('.swiper-site', { + initialSlide:0, + observer:true,//修改swiper自己或子元素时,自动初始化swiper + autoplay: false, + speed:2000, + loop: true, + // slidesPerView: 1, + navigation: { + nextEl: '.swiper-next-site', + prevEl: '.swiper-prev-site', + }, + }); +} + + + +//展厅 +// var gallerySite = new Swiper('.gallery-site', { +// slidesPerView: 11, +// freeMode: true, +// watchSlidesVisibility: true, +// watchSlidesProgress: true, +// }); +// var galleryTop = new Swiper('.gallery-top', { +// autoplay: false, +// loop: true, +// thumbs: { +// swiper: gallerySite, +// }, +// }); +//企业文化 +var solidQywh = new Swiper('.solid-qywh', { + slidesPerView: 6, + freeMode: true, + watchSlidesVisibility: true, + watchSlidesProgress: true, +}); +var swiperQywh = new Swiper('.swiper-qywh', { + autoplay: false, + speed:2000, + loop: true, + loopedSlides: 6, + thumbs: { + swiper: solidQywh, + }, +}); +//荣誉 +certifySwiper = new Swiper('#certify .swiper-container', { + watchSlidesProgress: true, + slidesPerView: 'auto', + centeredSlides: true, + loop: true, + loopedSlides: 5, + autoplay: false, + navigation: { + nextEl: '.swiper-next-certify', + prevEl: '.swiper-prev-certify', + }, + pagination: { + el: '.swiper-pagination-certify', + clickable :true, + }, + on: { + progress: function(progress) { + for (i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i); + var slideProgress = this.slides[i].progress; + modify = 1; + if (Math.abs(slideProgress) > 1) { + modify = (Math.abs(slideProgress) - 1) * 0.3 + 1; + } + translate = slideProgress * modify * 260 + 'px'; + scale = 1 - Math.abs(slideProgress) / 5; + zIndex = 999 - Math.abs(Math.round(10 * slideProgress)); + slide.transform('translateX(' + translate + ') scale(' + scale + ')'); + slide.css('zIndex', zIndex); + slide.css('opacity', 1); + if (Math.abs(slideProgress) > 3) { + slide.css('opacity', 0); + } + } + }, + setTransition: function(swiper, transition) { + for (var i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i) + slide.transition(transition); + } + + } + } +}) +//里程碑 +var proTab = new Swiper('.milestone-tab', { + speed:1000, + // spaceBetween: 6, + slidesPerView: 5, + freeMode: true, + watchSlidesProgress: true, +}); +var swiper = new Swiper(".milestone-content", { + speed:1000, + // spaceBetween: 6, + thumbs: { + swiper: proTab, + }, + navigation: { + nextEl: '.swiper-next-course', + prevEl: '.swiper-prev-course', + }, +}); +//爱心公益 +var swiperWelfare = new Swiper('.swiper-welfare', { + autoplay: false, + // loop: true, + slidesPerView: 4, + spaceBetween: 20, + pagination: { + el: ".swiper-pagination-welfare", + type: "progressbar", + }, + navigation: { + nextEl: '.swiper-next-welfare', + prevEl: '.swiper-prev-welfare', + }, +}); +// swiperWelfare.el.onmouseover = function() { //鼠标放上暂停轮播 +// swiperWelfare.autoplay.stop(); +// } +// swiperWelfare.el.onmouseleave = function() { +// swiperWelfare.autoplay.start(); +// } + +/* *********************************************************************************************/ +var wow = new WOW( + { + boxClass: 'wow', // 需要执行动画的元素的 class(默认是wow) + animateClass: 'animated', // animation.css 动画的 class(默认是animated) + offset: 100, // 距离可视区域多少开始执行动画(默认为0) + mobile: true, // 是否在移动设备上执行动画(默认为true) + live: true, // 异步加载的内容是否有效(默认为true) + callback: function (box) { + // 每次动画启动时都会触发这个回调函数 + //传入的参数是动画DOM节点 + }, + scrollContainer: null // 可选滚动容器选择器,否则使用窗口 + } +); +wow.init(); +function playVideo(opt) { + if (typeof (opt) == "undefined") { + alert("请传入必要参数!"); + return; + } + if (typeof (opt.elemt) == "undefined") { + alert("请指定播放器要插入的对象!"); + return; + } + if (typeof (opt.src) == "undefined") { + alert("请指定要播放视频的路径!"); + return; + } + var _this = this; + _this.elemt = opt.elemt; //播放器要插入的对象 + _this.src = opt.src; //视频的URL(必设) + _this.width = opt.width > 0 ? opt.width + "" : "100%"; //宽度(默认100%) + _this.height = opt.height > 0 ? opt.height + "" : ""; //高度(默认100%) + _this.autoplay = opt.autoplay == "false" ? "autoplay" : ""; //自动播放(true为自动播放) + _this.poster = opt.poster; //视频封面,播放时的封面图片 + _this.preload = opt.preload == "true" ? "preload" : ""; //预加载(true时启动加载) + _this.loop = opt.loop == "false" ? "loop" : ""; //循环播放(true时循环播放) + var str = ""; + _this.elemt.innerHTML = str; //将str放到要插入的对象中 + $('video').bind('contextmenu', function () { return false; }); +} + +$('.videoShow').on('click', function () { + var video = 'https://cdn.jsdelivr.net/gh/lopinv/wooooden.com@main/docs/assets/images/about.mp4'; + var emhtml = '
'; + emhtml = emhtml + ' + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg b/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg new file mode 100644 index 0000000..bea4075 Binary files /dev/null and b/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg differ diff --git a/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg b/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg new file mode 100644 index 0000000..c5c8491 Binary files /dev/null and b/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg differ diff --git a/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg b/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg new file mode 100644 index 0000000..9a9b8dd Binary files /dev/null and b/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg differ diff --git a/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg b/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg new file mode 100644 index 0000000..9fc9413 Binary files /dev/null and b/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg differ diff --git a/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg b/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg new file mode 100644 index 0000000..5d12649 Binary files /dev/null and b/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg differ diff --git a/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg b/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg new file mode 100644 index 0000000..f181693 Binary files /dev/null and b/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg differ diff --git a/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg b/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg new file mode 100644 index 0000000..df76b4f Binary files /dev/null and b/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg differ diff --git a/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg b/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg new file mode 100644 index 0000000..d4280bf Binary files /dev/null and b/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg differ diff --git a/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg b/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg new file mode 100644 index 0000000..9ddf3cd Binary files /dev/null and b/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg differ diff --git a/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg b/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg new file mode 100644 index 0000000..4295712 Binary files /dev/null and b/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg differ diff --git a/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg b/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg new file mode 100644 index 0000000..d1cc8e3 Binary files /dev/null and b/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg differ diff --git a/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg b/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg new file mode 100644 index 0000000..919ab96 Binary files /dev/null and b/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg differ diff --git a/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg b/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg new file mode 100644 index 0000000..9728423 Binary files /dev/null and b/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg differ diff --git a/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg b/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg new file mode 100644 index 0000000..2ac683d Binary files /dev/null and b/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg differ diff --git a/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg b/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg differ diff --git a/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg b/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg new file mode 100644 index 0000000..be85b5a Binary files /dev/null and b/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg differ diff --git a/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg b/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg new file mode 100644 index 0000000..2c25bdf Binary files /dev/null and b/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg differ diff --git a/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg b/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg new file mode 100644 index 0000000..7172e65 Binary files /dev/null and b/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg differ diff --git a/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg b/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg new file mode 100644 index 0000000..f39e71c Binary files /dev/null and b/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg differ diff --git a/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg b/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg new file mode 100644 index 0000000..0e3bf0e Binary files /dev/null and b/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg differ diff --git a/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg b/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg new file mode 100644 index 0000000..9d42945 Binary files /dev/null and b/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg differ diff --git a/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg b/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg new file mode 100644 index 0000000..499389d Binary files /dev/null and b/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg differ diff --git a/static/assets/picture/cc01.png b/static/assets/picture/cc01.png new file mode 100644 index 0000000..c641a79 Binary files /dev/null and b/static/assets/picture/cc01.png differ diff --git a/static/assets/picture/cc02.png b/static/assets/picture/cc02.png new file mode 100644 index 0000000..dabfe19 Binary files /dev/null and b/static/assets/picture/cc02.png differ diff --git a/static/assets/picture/cc03.png b/static/assets/picture/cc03.png new file mode 100644 index 0000000..b684a71 Binary files /dev/null and b/static/assets/picture/cc03.png differ diff --git a/static/assets/picture/cc04.png b/static/assets/picture/cc04.png new file mode 100644 index 0000000..6732603 Binary files /dev/null and b/static/assets/picture/cc04.png differ diff --git a/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg b/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg new file mode 100644 index 0000000..78e5de0 Binary files /dev/null and b/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg differ diff --git a/static/assets/picture/ccjc-bg-3.png b/static/assets/picture/ccjc-bg-3.png new file mode 100644 index 0000000..b46d10d Binary files /dev/null and b/static/assets/picture/ccjc-bg-3.png differ diff --git a/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg b/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg new file mode 100644 index 0000000..dee3a74 Binary files /dev/null and b/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg differ diff --git a/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg b/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg new file mode 100644 index 0000000..0814450 Binary files /dev/null and b/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg differ diff --git a/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg b/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg new file mode 100644 index 0000000..cda4531 Binary files /dev/null and b/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg differ diff --git a/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg b/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg new file mode 100644 index 0000000..9a5872e Binary files /dev/null and b/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg differ diff --git a/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg b/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg new file mode 100644 index 0000000..edbc208 Binary files /dev/null and b/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg differ diff --git a/static/assets/picture/charity01.png b/static/assets/picture/charity01.png new file mode 100644 index 0000000..8a6c784 Binary files /dev/null and b/static/assets/picture/charity01.png differ diff --git a/static/assets/picture/charity02.png b/static/assets/picture/charity02.png new file mode 100644 index 0000000..09a966b Binary files /dev/null and b/static/assets/picture/charity02.png differ diff --git a/static/assets/picture/charity03.png b/static/assets/picture/charity03.png new file mode 100644 index 0000000..725b287 Binary files /dev/null and b/static/assets/picture/charity03.png differ diff --git a/static/assets/picture/cy01.jpg b/static/assets/picture/cy01.jpg new file mode 100644 index 0000000..f7a4069 Binary files /dev/null and b/static/assets/picture/cy01.jpg differ diff --git a/static/assets/picture/cy02.jpg b/static/assets/picture/cy02.jpg new file mode 100644 index 0000000..a044bd1 Binary files /dev/null and b/static/assets/picture/cy02.jpg differ diff --git a/static/assets/picture/cy03.jpg b/static/assets/picture/cy03.jpg new file mode 100644 index 0000000..6b979c9 Binary files /dev/null and b/static/assets/picture/cy03.jpg differ diff --git a/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg b/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg new file mode 100644 index 0000000..c19de70 Binary files /dev/null and b/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg differ diff --git a/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg b/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg new file mode 100644 index 0000000..7eeed5e Binary files /dev/null and b/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg differ diff --git a/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg b/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg new file mode 100644 index 0000000..0782763 Binary files /dev/null and b/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg differ diff --git a/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg b/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg new file mode 100644 index 0000000..8abb499 Binary files /dev/null and b/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg differ diff --git a/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg b/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg new file mode 100644 index 0000000..c0ae003 Binary files /dev/null and b/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg differ diff --git a/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg b/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg new file mode 100644 index 0000000..0016572 Binary files /dev/null and b/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg differ diff --git a/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg b/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg new file mode 100644 index 0000000..ea9f135 Binary files /dev/null and b/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg differ diff --git a/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg b/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg new file mode 100644 index 0000000..08fa3e9 Binary files /dev/null and b/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg differ diff --git a/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg b/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg new file mode 100644 index 0000000..c21d248 Binary files /dev/null and b/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg differ diff --git a/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg b/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg new file mode 100644 index 0000000..d94f5d4 Binary files /dev/null and b/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg differ diff --git a/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg b/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg new file mode 100644 index 0000000..eafc287 Binary files /dev/null and b/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg differ diff --git a/static/assets/picture/dz2.png b/static/assets/picture/dz2.png new file mode 100644 index 0000000..303db09 Binary files /dev/null and b/static/assets/picture/dz2.png differ diff --git a/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg b/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg new file mode 100644 index 0000000..37f31a8 Binary files /dev/null and b/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg differ diff --git a/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg b/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg new file mode 100644 index 0000000..263b204 Binary files /dev/null and b/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg differ diff --git a/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg b/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg new file mode 100644 index 0000000..db1c3f3 Binary files /dev/null and b/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg differ diff --git a/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg b/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg new file mode 100644 index 0000000..c30b446 Binary files /dev/null and b/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg differ diff --git a/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg b/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg new file mode 100644 index 0000000..a591ae9 Binary files /dev/null and b/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg differ diff --git a/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg b/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg new file mode 100644 index 0000000..54c3709 Binary files /dev/null and b/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg differ diff --git a/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg b/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg new file mode 100644 index 0000000..2759d0d Binary files /dev/null and b/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg differ diff --git a/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg b/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg new file mode 100644 index 0000000..8abfdb6 Binary files /dev/null and b/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg differ diff --git a/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg b/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg new file mode 100644 index 0000000..043da66 Binary files /dev/null and b/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg differ diff --git a/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg b/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg new file mode 100644 index 0000000..891879d Binary files /dev/null and b/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg differ diff --git a/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg b/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg new file mode 100644 index 0000000..6348c01 Binary files /dev/null and b/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg differ diff --git a/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg b/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg new file mode 100644 index 0000000..7868437 Binary files /dev/null and b/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg differ diff --git a/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg b/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg new file mode 100644 index 0000000..5afe0e5 Binary files /dev/null and b/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg differ diff --git a/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg b/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg new file mode 100644 index 0000000..a60e6fe Binary files /dev/null and b/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg differ diff --git a/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg b/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg new file mode 100644 index 0000000..ba2a073 Binary files /dev/null and b/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg differ diff --git a/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg b/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg new file mode 100644 index 0000000..bdc4192 Binary files /dev/null and b/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg differ diff --git a/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg b/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg new file mode 100644 index 0000000..fa4e90d Binary files /dev/null and b/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg differ diff --git a/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg b/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg new file mode 100644 index 0000000..e004d27 Binary files /dev/null and b/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg differ diff --git a/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg b/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg new file mode 100644 index 0000000..e18ed71 Binary files /dev/null and b/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg differ diff --git a/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg b/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg new file mode 100644 index 0000000..72c1410 Binary files /dev/null and b/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg differ diff --git a/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg b/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg new file mode 100644 index 0000000..9daeae6 Binary files /dev/null and b/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg differ diff --git a/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg b/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg new file mode 100644 index 0000000..2779494 Binary files /dev/null and b/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg differ diff --git a/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg b/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg new file mode 100644 index 0000000..7dd96fb Binary files /dev/null and b/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg differ diff --git a/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg b/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg new file mode 100644 index 0000000..f1a1985 Binary files /dev/null and b/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg differ diff --git a/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg b/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg new file mode 100644 index 0000000..2877be8 Binary files /dev/null and b/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg differ diff --git a/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg b/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg new file mode 100644 index 0000000..b47943d Binary files /dev/null and b/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg differ diff --git a/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg b/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg new file mode 100644 index 0000000..fe491c5 Binary files /dev/null and b/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg differ diff --git a/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg b/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg new file mode 100644 index 0000000..1f3de60 Binary files /dev/null and b/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg differ diff --git a/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg b/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg new file mode 100644 index 0000000..dfc6d58 Binary files /dev/null and b/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg differ diff --git a/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg b/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg new file mode 100644 index 0000000..5374346 Binary files /dev/null and b/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg differ diff --git a/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg b/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg new file mode 100644 index 0000000..7e14139 Binary files /dev/null and b/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg differ diff --git a/static/assets/picture/flow01.png b/static/assets/picture/flow01.png new file mode 100644 index 0000000..c4113f0 Binary files /dev/null and b/static/assets/picture/flow01.png differ diff --git a/static/assets/picture/flow02.png b/static/assets/picture/flow02.png new file mode 100644 index 0000000..3ea8481 Binary files /dev/null and b/static/assets/picture/flow02.png differ diff --git a/static/assets/picture/flow03.png b/static/assets/picture/flow03.png new file mode 100644 index 0000000..70aeb43 Binary files /dev/null and b/static/assets/picture/flow03.png differ diff --git a/static/assets/picture/flow04.png b/static/assets/picture/flow04.png new file mode 100644 index 0000000..9f2a503 Binary files /dev/null and b/static/assets/picture/flow04.png differ diff --git a/static/assets/picture/footer-bz1.png b/static/assets/picture/footer-bz1.png new file mode 100644 index 0000000..06b0b0a Binary files /dev/null and b/static/assets/picture/footer-bz1.png differ diff --git a/static/assets/picture/footer-bz2.png b/static/assets/picture/footer-bz2.png new file mode 100644 index 0000000..7610893 Binary files /dev/null and b/static/assets/picture/footer-bz2.png differ diff --git a/static/assets/picture/footer-bz3.png b/static/assets/picture/footer-bz3.png new file mode 100644 index 0000000..10a3cc1 Binary files /dev/null and b/static/assets/picture/footer-bz3.png differ diff --git a/static/assets/picture/footer-bz4.png b/static/assets/picture/footer-bz4.png new file mode 100644 index 0000000..e8b6916 Binary files /dev/null and b/static/assets/picture/footer-bz4.png differ diff --git a/static/assets/picture/gy01.jpg b/static/assets/picture/gy01.jpg new file mode 100644 index 0000000..8de0b1f Binary files /dev/null and b/static/assets/picture/gy01.jpg differ diff --git a/static/assets/picture/gy01.png b/static/assets/picture/gy01.png new file mode 100644 index 0000000..764629e Binary files /dev/null and b/static/assets/picture/gy01.png differ diff --git a/static/assets/picture/gy02.jpg b/static/assets/picture/gy02.jpg new file mode 100644 index 0000000..8146a3f Binary files /dev/null and b/static/assets/picture/gy02.jpg differ diff --git a/static/assets/picture/gy02.png b/static/assets/picture/gy02.png new file mode 100644 index 0000000..aa32cb7 Binary files /dev/null and b/static/assets/picture/gy02.png differ diff --git a/static/assets/picture/gy03.jpg b/static/assets/picture/gy03.jpg new file mode 100644 index 0000000..dbcf656 Binary files /dev/null and b/static/assets/picture/gy03.jpg differ diff --git a/static/assets/picture/gy04.jpg b/static/assets/picture/gy04.jpg new file mode 100644 index 0000000..f4aba71 Binary files /dev/null and b/static/assets/picture/gy04.jpg differ diff --git a/static/assets/picture/gy05.jpg b/static/assets/picture/gy05.jpg new file mode 100644 index 0000000..5510c30 Binary files /dev/null and b/static/assets/picture/gy05.jpg differ diff --git a/static/assets/picture/gy06.jpg b/static/assets/picture/gy06.jpg new file mode 100644 index 0000000..169e5ac Binary files /dev/null and b/static/assets/picture/gy06.jpg differ diff --git a/static/assets/picture/gy07.jpg b/static/assets/picture/gy07.jpg new file mode 100644 index 0000000..8551f2e Binary files /dev/null and b/static/assets/picture/gy07.jpg differ diff --git a/static/assets/picture/gy08.jpg b/static/assets/picture/gy08.jpg new file mode 100644 index 0000000..1577e74 Binary files /dev/null and b/static/assets/picture/gy08.jpg differ diff --git a/static/assets/picture/gy09.jpg b/static/assets/picture/gy09.jpg new file mode 100644 index 0000000..57883fe Binary files /dev/null and b/static/assets/picture/gy09.jpg differ diff --git a/static/assets/picture/gy10.jpg b/static/assets/picture/gy10.jpg new file mode 100644 index 0000000..d5705bb Binary files /dev/null and b/static/assets/picture/gy10.jpg differ diff --git a/static/assets/picture/gy11.jpg b/static/assets/picture/gy11.jpg new file mode 100644 index 0000000..9d17617 Binary files /dev/null and b/static/assets/picture/gy11.jpg differ diff --git a/static/assets/picture/gy12.jpg b/static/assets/picture/gy12.jpg new file mode 100644 index 0000000..898913a Binary files /dev/null and b/static/assets/picture/gy12.jpg differ diff --git a/static/assets/picture/gy13.jpg b/static/assets/picture/gy13.jpg new file mode 100644 index 0000000..ce2b657 Binary files /dev/null and b/static/assets/picture/gy13.jpg differ diff --git a/static/assets/picture/gy14.jpg b/static/assets/picture/gy14.jpg new file mode 100644 index 0000000..696c798 Binary files /dev/null and b/static/assets/picture/gy14.jpg differ diff --git a/static/assets/picture/gy15.jpg b/static/assets/picture/gy15.jpg new file mode 100644 index 0000000..9478d86 Binary files /dev/null and b/static/assets/picture/gy15.jpg differ diff --git a/static/assets/picture/gy16.jpg b/static/assets/picture/gy16.jpg new file mode 100644 index 0000000..696ccb7 Binary files /dev/null and b/static/assets/picture/gy16.jpg differ diff --git a/static/assets/picture/gy17.jpg b/static/assets/picture/gy17.jpg new file mode 100644 index 0000000..bba2869 Binary files /dev/null and b/static/assets/picture/gy17.jpg differ diff --git a/static/assets/picture/gy18.jpg b/static/assets/picture/gy18.jpg new file mode 100644 index 0000000..f143d60 Binary files /dev/null and b/static/assets/picture/gy18.jpg differ diff --git a/static/assets/picture/gy19.jpg b/static/assets/picture/gy19.jpg new file mode 100644 index 0000000..e6ffafc Binary files /dev/null and b/static/assets/picture/gy19.jpg differ diff --git a/static/assets/picture/gy20.jpg b/static/assets/picture/gy20.jpg new file mode 100644 index 0000000..808a230 Binary files /dev/null and b/static/assets/picture/gy20.jpg differ diff --git a/static/assets/picture/gy21.jpg b/static/assets/picture/gy21.jpg new file mode 100644 index 0000000..759966a Binary files /dev/null and b/static/assets/picture/gy21.jpg differ diff --git a/static/assets/picture/gy22.jpg b/static/assets/picture/gy22.jpg new file mode 100644 index 0000000..13142cf Binary files /dev/null and b/static/assets/picture/gy22.jpg differ diff --git a/static/assets/picture/gy23.jpg b/static/assets/picture/gy23.jpg new file mode 100644 index 0000000..a9d84ed Binary files /dev/null and b/static/assets/picture/gy23.jpg differ diff --git a/static/assets/picture/gy24.jpg b/static/assets/picture/gy24.jpg new file mode 100644 index 0000000..1a94bdc Binary files /dev/null and b/static/assets/picture/gy24.jpg differ diff --git a/static/assets/picture/hot.png b/static/assets/picture/hot.png new file mode 100644 index 0000000..8a2a1ce Binary files /dev/null and b/static/assets/picture/hot.png differ diff --git a/static/assets/picture/hs01.png b/static/assets/picture/hs01.png new file mode 100644 index 0000000..7a3b1c1 Binary files /dev/null and b/static/assets/picture/hs01.png differ diff --git a/static/assets/picture/hs02.png b/static/assets/picture/hs02.png new file mode 100644 index 0000000..bbdfaa0 Binary files /dev/null and b/static/assets/picture/hs02.png differ diff --git a/static/assets/picture/hs03.png b/static/assets/picture/hs03.png new file mode 100644 index 0000000..b07e0ce Binary files /dev/null and b/static/assets/picture/hs03.png differ diff --git a/static/assets/picture/hs04.png b/static/assets/picture/hs04.png new file mode 100644 index 0000000..0059fcf Binary files /dev/null and b/static/assets/picture/hs04.png differ diff --git a/static/assets/picture/ico-dy-no.png b/static/assets/picture/ico-dy-no.png new file mode 100644 index 0000000..fb3030d Binary files /dev/null and b/static/assets/picture/ico-dy-no.png differ diff --git a/static/assets/picture/ico-dy-yes.png b/static/assets/picture/ico-dy-yes.png new file mode 100644 index 0000000..0bb8c76 Binary files /dev/null and b/static/assets/picture/ico-dy-yes.png differ diff --git a/static/assets/picture/ico-wb-no.png b/static/assets/picture/ico-wb-no.png new file mode 100644 index 0000000..961ac6b Binary files /dev/null and b/static/assets/picture/ico-wb-no.png differ diff --git a/static/assets/picture/ico-wb-yes.png b/static/assets/picture/ico-wb-yes.png new file mode 100644 index 0000000..29ac21e Binary files /dev/null and b/static/assets/picture/ico-wb-yes.png differ diff --git a/static/assets/picture/ico-wx-no.png b/static/assets/picture/ico-wx-no.png new file mode 100644 index 0000000..1a5aeb1 Binary files /dev/null and b/static/assets/picture/ico-wx-no.png differ diff --git a/static/assets/picture/ico-wx-yes.png b/static/assets/picture/ico-wx-yes.png new file mode 100644 index 0000000..d77daf9 Binary files /dev/null and b/static/assets/picture/ico-wx-yes.png differ diff --git a/static/assets/picture/index-jjxs.png b/static/assets/picture/index-jjxs.png new file mode 100644 index 0000000..8d4fb00 Binary files /dev/null and b/static/assets/picture/index-jjxs.png differ diff --git a/static/assets/picture/kzks-hs.png b/static/assets/picture/kzks-hs.png new file mode 100644 index 0000000..599154c Binary files /dev/null and b/static/assets/picture/kzks-hs.png differ diff --git a/static/assets/picture/lc-23.jpg b/static/assets/picture/lc-23.jpg new file mode 100644 index 0000000..e25e39c Binary files /dev/null and b/static/assets/picture/lc-23.jpg differ diff --git a/static/assets/picture/lc-24-495.jpg b/static/assets/picture/lc-24-495.jpg new file mode 100644 index 0000000..a921a30 Binary files /dev/null and b/static/assets/picture/lc-24-495.jpg differ diff --git a/static/assets/picture/logo.png b/static/assets/picture/logo.png new file mode 100644 index 0000000..e7dd0b5 Binary files /dev/null and b/static/assets/picture/logo.png differ diff --git a/static/assets/picture/logo3.png b/static/assets/picture/logo3.png new file mode 100644 index 0000000..628346c Binary files /dev/null and b/static/assets/picture/logo3.png differ diff --git a/static/assets/picture/qrcode-dy.png b/static/assets/picture/qrcode-dy.png new file mode 100644 index 0000000..4c5e9eb Binary files /dev/null and b/static/assets/picture/qrcode-dy.png differ diff --git a/static/assets/picture/qrcode-wb.png b/static/assets/picture/qrcode-wb.png new file mode 100644 index 0000000..3184b0e Binary files /dev/null and b/static/assets/picture/qrcode-wb.png differ diff --git a/static/assets/picture/qrcode-wx.png b/static/assets/picture/qrcode-wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/static/assets/picture/qrcode-wx.png differ diff --git a/static/assets/picture/qywh1.png b/static/assets/picture/qywh1.png new file mode 100644 index 0000000..5c915b7 Binary files /dev/null and b/static/assets/picture/qywh1.png differ diff --git a/static/assets/picture/qywh2.png b/static/assets/picture/qywh2.png new file mode 100644 index 0000000..012ed1a Binary files /dev/null and b/static/assets/picture/qywh2.png differ diff --git a/static/assets/picture/qywh3.png b/static/assets/picture/qywh3.png new file mode 100644 index 0000000..bdda47d Binary files /dev/null and b/static/assets/picture/qywh3.png differ diff --git a/static/assets/picture/qywh4.png b/static/assets/picture/qywh4.png new file mode 100644 index 0000000..b76fe42 Binary files /dev/null and b/static/assets/picture/qywh4.png differ diff --git a/static/assets/picture/qywh5.png b/static/assets/picture/qywh5.png new file mode 100644 index 0000000..ade0433 Binary files /dev/null and b/static/assets/picture/qywh5.png differ diff --git a/static/assets/picture/right-next.png b/static/assets/picture/right-next.png new file mode 100644 index 0000000..046e135 Binary files /dev/null and b/static/assets/picture/right-next.png differ diff --git a/static/assets/picture/rightnav-01.png b/static/assets/picture/rightnav-01.png new file mode 100644 index 0000000..f50fe4e Binary files /dev/null and b/static/assets/picture/rightnav-01.png differ diff --git a/static/assets/picture/rightnav-03.png b/static/assets/picture/rightnav-03.png new file mode 100644 index 0000000..507dd72 Binary files /dev/null and b/static/assets/picture/rightnav-03.png differ diff --git a/static/assets/picture/rightnav-04.png b/static/assets/picture/rightnav-04.png new file mode 100644 index 0000000..1f583ac Binary files /dev/null and b/static/assets/picture/rightnav-04.png differ diff --git a/static/assets/picture/rightnav-05.png b/static/assets/picture/rightnav-05.png new file mode 100644 index 0000000..12d427d Binary files /dev/null and b/static/assets/picture/rightnav-05.png differ diff --git a/static/assets/picture/rightnav-on-01.png b/static/assets/picture/rightnav-on-01.png new file mode 100644 index 0000000..b228ac1 Binary files /dev/null and b/static/assets/picture/rightnav-on-01.png differ diff --git a/static/assets/picture/rightnav-on-03.png b/static/assets/picture/rightnav-on-03.png new file mode 100644 index 0000000..e71592f Binary files /dev/null and b/static/assets/picture/rightnav-on-03.png differ diff --git a/static/assets/picture/rightnav-on-04.png b/static/assets/picture/rightnav-on-04.png new file mode 100644 index 0000000..fcadf35 Binary files /dev/null and b/static/assets/picture/rightnav-on-04.png differ diff --git a/static/assets/picture/rightnav-on-05.png b/static/assets/picture/rightnav-on-05.png new file mode 100644 index 0000000..3e290cc Binary files /dev/null and b/static/assets/picture/rightnav-on-05.png differ diff --git a/static/assets/picture/service-1.jpg b/static/assets/picture/service-1.jpg new file mode 100644 index 0000000..5ace678 Binary files /dev/null and b/static/assets/picture/service-1.jpg differ diff --git a/static/assets/picture/service02.png b/static/assets/picture/service02.png new file mode 100644 index 0000000..13fb833 Binary files /dev/null and b/static/assets/picture/service02.png differ diff --git a/static/assets/picture/service03.png b/static/assets/picture/service03.png new file mode 100644 index 0000000..914059d Binary files /dev/null and b/static/assets/picture/service03.png differ diff --git a/static/assets/picture/service04.png b/static/assets/picture/service04.png new file mode 100644 index 0000000..a3035a1 Binary files /dev/null and b/static/assets/picture/service04.png differ diff --git a/static/assets/picture/top-ico1.png b/static/assets/picture/top-ico1.png new file mode 100644 index 0000000..4a89927 Binary files /dev/null and b/static/assets/picture/top-ico1.png differ diff --git a/static/assets/picture/top-ico2.png b/static/assets/picture/top-ico2.png new file mode 100644 index 0000000..d993a54 Binary files /dev/null and b/static/assets/picture/top-ico2.png differ diff --git a/static/assets/picture/top-ico3.png b/static/assets/picture/top-ico3.png new file mode 100644 index 0000000..8e5eec8 Binary files /dev/null and b/static/assets/picture/top-ico3.png differ diff --git a/static/assets/picture/top-ico4.png b/static/assets/picture/top-ico4.png new file mode 100644 index 0000000..448d23e Binary files /dev/null and b/static/assets/picture/top-ico4.png differ diff --git a/static/assets/picture/wx.png b/static/assets/picture/wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/static/assets/picture/wx.png differ diff --git a/static/assets/picture/xs01.png b/static/assets/picture/xs01.png new file mode 100644 index 0000000..623bbd2 Binary files /dev/null and b/static/assets/picture/xs01.png differ diff --git a/static/assets/picture/xs02.png b/static/assets/picture/xs02.png new file mode 100644 index 0000000..429f14e Binary files /dev/null and b/static/assets/picture/xs02.png differ diff --git a/static/assets/picture/xs03.png b/static/assets/picture/xs03.png new file mode 100644 index 0000000..98436e0 Binary files /dev/null and b/static/assets/picture/xs03.png differ diff --git a/static/assets/picture/xs04.png b/static/assets/picture/xs04.png new file mode 100644 index 0000000..0673eaf Binary files /dev/null and b/static/assets/picture/xs04.png differ diff --git a/static/assets/picture/ys01.png b/static/assets/picture/ys01.png new file mode 100644 index 0000000..2face8e Binary files /dev/null and b/static/assets/picture/ys01.png differ diff --git a/static/assets/picture/ys02.png b/static/assets/picture/ys02.png new file mode 100644 index 0000000..89994ed Binary files /dev/null and b/static/assets/picture/ys02.png differ diff --git a/static/assets/picture/ys03.png b/static/assets/picture/ys03.png new file mode 100644 index 0000000..6291fbf Binary files /dev/null and b/static/assets/picture/ys03.png differ diff --git a/static/assets/picture/ys04.png b/static/assets/picture/ys04.png new file mode 100644 index 0000000..d6c90f9 Binary files /dev/null and b/static/assets/picture/ys04.png differ diff --git a/static/assets/picture/ys05.png b/static/assets/picture/ys05.png new file mode 100644 index 0000000..919d9e1 Binary files /dev/null and b/static/assets/picture/ys05.png differ diff --git a/static/assets/picture/ys06.png b/static/assets/picture/ys06.png new file mode 100644 index 0000000..7c2df59 Binary files /dev/null and b/static/assets/picture/ys06.png differ diff --git a/static/assets/picture/zl.png b/static/assets/picture/zl.png new file mode 100644 index 0000000..328ccf2 Binary files /dev/null and b/static/assets/picture/zl.png differ diff --git a/static/assets/picture/zl01.png b/static/assets/picture/zl01.png new file mode 100644 index 0000000..047f228 Binary files /dev/null and b/static/assets/picture/zl01.png differ diff --git a/static/assets/picture/zl02.png b/static/assets/picture/zl02.png new file mode 100644 index 0000000..8b48f96 Binary files /dev/null and b/static/assets/picture/zl02.png differ diff --git a/static/assets/picture/zl03.png b/static/assets/picture/zl03.png new file mode 100644 index 0000000..93b364b Binary files /dev/null and b/static/assets/picture/zl03.png differ diff --git a/static/assets/picture/zl04.png b/static/assets/picture/zl04.png new file mode 100644 index 0000000..ecf7727 Binary files /dev/null and b/static/assets/picture/zl04.png differ diff --git a/static/assets/picture/zs01.png b/static/assets/picture/zs01.png new file mode 100644 index 0000000..c2487b4 Binary files /dev/null and b/static/assets/picture/zs01.png differ diff --git a/static/assets/picture/zs02.png b/static/assets/picture/zs02.png new file mode 100644 index 0000000..0b1e362 Binary files /dev/null and b/static/assets/picture/zs02.png differ diff --git a/static/assets/picture/zs03.png b/static/assets/picture/zs03.png new file mode 100644 index 0000000..4b6d8ca Binary files /dev/null and b/static/assets/picture/zs03.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..67f8b77 Binary files /dev/null and b/static/favicon.ico differ diff --git a/themes/.gitkeep b/themes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/themes/huishou/LICENSE b/themes/huishou/LICENSE new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/themes/huishou/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/themes/huishou/README.md b/themes/huishou/README.md new file mode 100644 index 0000000..7cec74e --- /dev/null +++ b/themes/huishou/README.md @@ -0,0 +1,7 @@ +# Theme Name + +## Features + +## Installation + +## Configuration diff --git a/themes/huishou/archetypes/default.md b/themes/huishou/archetypes/default.md new file mode 100644 index 0000000..82a3fd5 --- /dev/null +++ b/themes/huishou/archetypes/default.md @@ -0,0 +1,12 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +author = "" +tags = ["", ""] +keywords = ["", ""] +description = "" +readingTime = false +hideComments = false +draft = true +url = '/news/1' ++++ diff --git a/themes/huishou/config.toml b/themes/huishou/config.toml new file mode 100644 index 0000000..815586a --- /dev/null +++ b/themes/huishou/config.toml @@ -0,0 +1,69 @@ +baseURL = 'https://www.wooooden.com/' +languageCode = 'zh-CN' +title = '装配师' + +theme = 'huishou' + +enableRobotsTXT = true +paginate = 5 #frontpage pagination +preserveTaxonomyNames = true +hasCJKLanguage = true + +[outputs] + home = ['html', 'rss'] + section = ['html', 'rss'] + taxonomy = ['html'] + term = ['html'] + +[permalinks] + posts = "/news/:slug/" + +[params] + # contentTypeName = "posts" + phoneNumber = '185-1668-7118' + companyName = '佳匠实业' + companyAddress = '上海市松江区石湖荡镇石湖新路95号' + companyStart = '2018' + companyBeian = '沪ICP备2021004498号' + +[menu] + [[menu.main]] + identifier = "home" + name = "首页" + url = "/" + weight = 1 + [[menu.main]] + identifier = "product" + name = "产品中心" + url = "/product/" + weight = 2 + [[menu.main]] + identifier = "case" + name = "案例中心" + url = "/case/" + weight = 3 + [[menu.main]] + identifier = "esg" + name = "ESG理念" + url = "/esg/" + weight = 4 + [[menu.main]] + identifier = "news" + name = "行业资讯" + url = "/news/" + weight = 5 + [[menu.main]] + identifier = "about" + name = "关于我们" + url = "/about/" + weight = 6 + [[menu.main]] + identifier = "kefu" + name = "联系我们" + url = "/kefu/" + weight = 7 + +[module] + [module.hugoVersion] + extended = true + min = "0.125.0" diff --git a/themes/huishou/content/about/_index.md b/themes/huishou/content/about/_index.md new file mode 100644 index 0000000..43a1b62 --- /dev/null +++ b/themes/huishou/content/about/_index.md @@ -0,0 +1,12 @@ +--- +title: "About" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "about" +permalink: "/about/" +layout: "about" +--- + +This is the about page content. \ No newline at end of file diff --git a/themes/huishou/content/case/_index.md b/themes/huishou/content/case/_index.md new file mode 100644 index 0000000..c96599a --- /dev/null +++ b/themes/huishou/content/case/_index.md @@ -0,0 +1,12 @@ +--- +title: "case" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "case" +permalink: "/case/" +layout: "case" +--- + +This is the case page content. \ No newline at end of file diff --git a/themes/huishou/content/esg/_index.md b/themes/huishou/content/esg/_index.md new file mode 100644 index 0000000..af88828 --- /dev/null +++ b/themes/huishou/content/esg/_index.md @@ -0,0 +1,12 @@ +--- +title: "Esg" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "esg" +permalink: "/esg/" +layout: "esg" +--- + +This is the esg page content. \ No newline at end of file diff --git a/themes/huishou/content/kefu/_index.md b/themes/huishou/content/kefu/_index.md new file mode 100644 index 0000000..3755305 --- /dev/null +++ b/themes/huishou/content/kefu/_index.md @@ -0,0 +1,12 @@ +--- +title: "Kefu" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "kefu" +permalink: "/kefu/" +layout: "kefu" +--- + +This is the kefu page content. \ No newline at end of file diff --git a/themes/huishou/content/news/_index.md b/themes/huishou/content/news/_index.md new file mode 100644 index 0000000..4946f34 --- /dev/null +++ b/themes/huishou/content/news/_index.md @@ -0,0 +1,12 @@ +--- +title: "News" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "news" +permalink: "/news/" +layout: "news" +--- + +This is the news page content. \ No newline at end of file diff --git a/themes/huishou/content/posts/_index.md b/themes/huishou/content/posts/_index.md new file mode 100644 index 0000000..e7066c0 --- /dev/null +++ b/themes/huishou/content/posts/_index.md @@ -0,0 +1,7 @@ ++++ +title = 'Posts' +date = 2023-01-01T08:30:00-07:00 +draft = false ++++ + +Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat. diff --git a/themes/huishou/content/posts/post-1.md b/themes/huishou/content/posts/post-1.md new file mode 100644 index 0000000..3a2ab24 --- /dev/null +++ b/themes/huishou/content/posts/post-1.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/1' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-10.md b/themes/huishou/content/posts/post-10.md new file mode 100644 index 0000000..b20b87f --- /dev/null +++ b/themes/huishou/content/posts/post-10.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/10' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-2.md b/themes/huishou/content/posts/post-2.md new file mode 100644 index 0000000..2d60b4f --- /dev/null +++ b/themes/huishou/content/posts/post-2.md @@ -0,0 +1,34 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/2' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 diff --git a/themes/huishou/content/posts/post-3.md b/themes/huishou/content/posts/post-3.md new file mode 100644 index 0000000..78d5d25 --- /dev/null +++ b/themes/huishou/content/posts/post-3.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/3' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-4.md b/themes/huishou/content/posts/post-4.md new file mode 100644 index 0000000..73b60a6 --- /dev/null +++ b/themes/huishou/content/posts/post-4.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/4' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-5.md b/themes/huishou/content/posts/post-5.md new file mode 100644 index 0000000..e617716 --- /dev/null +++ b/themes/huishou/content/posts/post-5.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/5' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-6.md b/themes/huishou/content/posts/post-6.md new file mode 100644 index 0000000..4f16e01 --- /dev/null +++ b/themes/huishou/content/posts/post-6.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/6' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-7.md b/themes/huishou/content/posts/post-7.md new file mode 100644 index 0000000..c29f5c2 --- /dev/null +++ b/themes/huishou/content/posts/post-7.md @@ -0,0 +1,40 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/7' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + + + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。第二树作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + + + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 + + \ No newline at end of file diff --git a/themes/huishou/content/posts/post-8.md b/themes/huishou/content/posts/post-8.md new file mode 100644 index 0000000..8556a63 --- /dev/null +++ b/themes/huishou/content/posts/post-8.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/themes/huishou/content/posts/post-9.md b/themes/huishou/content/posts/post-9.md new file mode 100644 index 0000000..8d0e953 --- /dev/null +++ b/themes/huishou/content/posts/post-9.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/themes/huishou/content/product/_index.md b/themes/huishou/content/product/_index.md new file mode 100644 index 0000000..1cd237f --- /dev/null +++ b/themes/huishou/content/product/_index.md @@ -0,0 +1,12 @@ +--- +title: "Product" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "product" +permalink: "/product/" +layout: "product" +--- + +This is the product page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/config.toml b/themes/huishou/exampleSite/config.toml new file mode 100644 index 0000000..815586a --- /dev/null +++ b/themes/huishou/exampleSite/config.toml @@ -0,0 +1,69 @@ +baseURL = 'https://www.wooooden.com/' +languageCode = 'zh-CN' +title = '装配师' + +theme = 'huishou' + +enableRobotsTXT = true +paginate = 5 #frontpage pagination +preserveTaxonomyNames = true +hasCJKLanguage = true + +[outputs] + home = ['html', 'rss'] + section = ['html', 'rss'] + taxonomy = ['html'] + term = ['html'] + +[permalinks] + posts = "/news/:slug/" + +[params] + # contentTypeName = "posts" + phoneNumber = '185-1668-7118' + companyName = '佳匠实业' + companyAddress = '上海市松江区石湖荡镇石湖新路95号' + companyStart = '2018' + companyBeian = '沪ICP备2021004498号' + +[menu] + [[menu.main]] + identifier = "home" + name = "首页" + url = "/" + weight = 1 + [[menu.main]] + identifier = "product" + name = "产品中心" + url = "/product/" + weight = 2 + [[menu.main]] + identifier = "case" + name = "案例中心" + url = "/case/" + weight = 3 + [[menu.main]] + identifier = "esg" + name = "ESG理念" + url = "/esg/" + weight = 4 + [[menu.main]] + identifier = "news" + name = "行业资讯" + url = "/news/" + weight = 5 + [[menu.main]] + identifier = "about" + name = "关于我们" + url = "/about/" + weight = 6 + [[menu.main]] + identifier = "kefu" + name = "联系我们" + url = "/kefu/" + weight = 7 + +[module] + [module.hugoVersion] + extended = true + min = "0.125.0" diff --git a/themes/huishou/exampleSite/content/about/_index.md b/themes/huishou/exampleSite/content/about/_index.md new file mode 100644 index 0000000..43a1b62 --- /dev/null +++ b/themes/huishou/exampleSite/content/about/_index.md @@ -0,0 +1,12 @@ +--- +title: "About" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "about" +permalink: "/about/" +layout: "about" +--- + +This is the about page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/case/_index.md b/themes/huishou/exampleSite/content/case/_index.md new file mode 100644 index 0000000..c96599a --- /dev/null +++ b/themes/huishou/exampleSite/content/case/_index.md @@ -0,0 +1,12 @@ +--- +title: "case" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "case" +permalink: "/case/" +layout: "case" +--- + +This is the case page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/esg/_index.md b/themes/huishou/exampleSite/content/esg/_index.md new file mode 100644 index 0000000..af88828 --- /dev/null +++ b/themes/huishou/exampleSite/content/esg/_index.md @@ -0,0 +1,12 @@ +--- +title: "Esg" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "esg" +permalink: "/esg/" +layout: "esg" +--- + +This is the esg page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/kefu/_index.md b/themes/huishou/exampleSite/content/kefu/_index.md new file mode 100644 index 0000000..3755305 --- /dev/null +++ b/themes/huishou/exampleSite/content/kefu/_index.md @@ -0,0 +1,12 @@ +--- +title: "Kefu" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "kefu" +permalink: "/kefu/" +layout: "kefu" +--- + +This is the kefu page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/news/_index.md b/themes/huishou/exampleSite/content/news/_index.md new file mode 100644 index 0000000..4946f34 --- /dev/null +++ b/themes/huishou/exampleSite/content/news/_index.md @@ -0,0 +1,12 @@ +--- +title: "News" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "news" +permalink: "/news/" +layout: "news" +--- + +This is the news page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/_index.md b/themes/huishou/exampleSite/content/posts/_index.md new file mode 100644 index 0000000..e7066c0 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/_index.md @@ -0,0 +1,7 @@ ++++ +title = 'Posts' +date = 2023-01-01T08:30:00-07:00 +draft = false ++++ + +Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat. diff --git a/themes/huishou/exampleSite/content/posts/post-1.md b/themes/huishou/exampleSite/content/posts/post-1.md new file mode 100644 index 0000000..3a2ab24 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-1.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/1' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-10.md b/themes/huishou/exampleSite/content/posts/post-10.md new file mode 100644 index 0000000..b20b87f --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-10.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/10' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-2.md b/themes/huishou/exampleSite/content/posts/post-2.md new file mode 100644 index 0000000..2d60b4f --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-2.md @@ -0,0 +1,34 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/2' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 diff --git a/themes/huishou/exampleSite/content/posts/post-3.md b/themes/huishou/exampleSite/content/posts/post-3.md new file mode 100644 index 0000000..78d5d25 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-3.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/3' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-4.md b/themes/huishou/exampleSite/content/posts/post-4.md new file mode 100644 index 0000000..73b60a6 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-4.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/4' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-5.md b/themes/huishou/exampleSite/content/posts/post-5.md new file mode 100644 index 0000000..e617716 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-5.md @@ -0,0 +1,74 @@ ++++ +title = '封闭式和开放式办公家具设计的利与弊,哪种布局更适合您的企业?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +description = '封闭式办公家具和开放式办公家具,两种不同风格的家具所营造的办公环境及氛围各有特点,哪一种更适合您的企业呢?本期内容为您来解答。' +tags = ['二手办公家具' , '二手办公桌椅', '办公家具设计'] +readingTime = false +hideComments = false +draft = false +url = '/news/5' ++++ + +在当今竞争激烈的商业环境中,办公空间的设计布局对企业的运营效率和员工满意度具有重要影响。封闭式和开放式办公家具设计是当前最常见的两种布局方式,它们各自有其优势和劣势。本文将详细分析这两种布局的特点,帮助您找到最适合企业需求的办公设计方案。 + +![1713402353933682.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402353933682.jpg) + +封闭式布局 + +![1713402325415972.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240418/1713402325415972.jpg) + +开放式布局 + +**封闭式办公家具设计布局** + +封闭式办公环境设计,也称为传统式办公环境设计,是指利用墙壁或隔断将办公空间分隔成若干独立空间的布局。每个房间都有一人或多人办公,一般是按照工作任务或职能分工的不同来设计。 + +1.封闭式办公家具设计的优势: + +(1)满足单独办公和无噪音办公环境的理想要求,提高安全性。 + +(2)有助于员工集中精力,减少外部干扰,加强内部沟通。 + +(3)保密性强,适合从事专业性强、分工细致的工作。 + +2.封闭式办公设计的劣势: + +(1)建筑成本和能源成本较高。 + +(2)费用较大。 + +(3)影响管理的经营效益。 + +**开放式办公家具设计布局** + +开放式家具布局是指按照工作职能、业务活动和技术分工来确定组织员工的工作部门和工作团队、小组的区划布局。此布局一般分为全开放式办公环境设计和半开放式办公环境设计。 + +1.开放式办公设计的优势: + +(1)降低企业成本,开放式办公工位价格低于封闭式办公工位。 + +(2)提高办公空间利用率,节省面积。 + +(3)管理者与员工接触更多,便于交流,尤其对于团队来说,增强团队凝聚力。 + +(4)便于管理者监督和指导员工。 + +(5)共享办公设备,实现集中化管理和服务。 + +(6)开放式的空间让人感到宏大、舒适,工作无束缚。 + +2.开放式办公设计的劣势: + +(1)环境嘈杂,影响注意力集中,尤其是对于程序员、设计师等职位。 + +(2)安全性相对较差,私人重要物品需妥善保管。 + +(3)个人空间减少,隐私较难保护。 + +**封闭式与开放式办公家具设计的适用性** + +两种不同的办公设计所营造的办公环境及氛围各有特点。如果公司工作中需要频繁沟通交流、氛围轻松开放、空间布局有限等条件下,较适合选择开放式办公设计。反之,如果注重个人工作的独立完成性、工作严谨度高、注重私密性等条件下,则适合选择封闭式办公设计。 + +总之,在选择办公设计时,应结合公司整体风格、空间划分以及最大限度地方便员工高效完成工作的前提条件。希望通过本文的解析,为您提供有针对性的办公设计决策参考。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-6.md b/themes/huishou/exampleSite/content/posts/post-6.md new file mode 100644 index 0000000..4f16e01 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-6.md @@ -0,0 +1,42 @@ ++++ +title = '二手与全新办公家具的组合采购方案能为企业带来哪些益处?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +description = '二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。' +tags = ['二手办公家具' , '二手办公桌椅', '二手办公家具市场'] +readingTime = false +hideComments = false +draft = false +url = '/news/6' ++++ + +在当今的办公环境中,家具的选择和布局直接影响到企业的形象、员工的工作效率以及舒适度。随着环保意识的提升和成本控制的需求增加,越来越多的企业开始考虑采用二手与全新办公家具相结合的采购方案。这种策略不仅有助于减少企业的初始投资,而且在保持办公空间美观和功能性的同时,促进了资源的有效利用。 + +![1728541528845257.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541528845257.jpg) + +**一、显著的成本控制** + +首先,二手办公家具的价格通常远低于全新产品,这对于初创企业或预算有限的企业来说,无疑具有极大的吸引力。通过购买二手家具,企业可以在满足基本办公需求的同时,大幅降低办公环境的建设成本。此外,对于需要定期更新或升级家具的企业来说,选择二手家具进行部分替换,也能有效避免一次性大额支出,从而减轻财务压力。 + +据相关统计数据显示,与全新办公家具相比,二手家具的平均价格可降低30%至50%。这一成本优势使得二手家具在市场上越来越受欢迎。同时,随着二手市场的规范化和完善,消费者在购买二手家具时的担忧逐渐减少,这进一步促进了二手家具市场的繁荣。 + +**二、资源循环利用,环保节能** + +二手办公家具的再利用是实现资源循环利用、减少浪费的有效方式。在全球环保意识日益增强的当下,企业选择二手家具不仅是履行社会责任的表现,也是对自身形象的积极塑造。通过减少新家具的生产需求,企业可以降低对自然资源的消耗,减少生产过程中的能源消耗和环境污染。 + +此外,二手家具通常经过时间的检验,其材质和工艺相对成熟稳定,使用寿命较长。因此,在确保办公家具质量的同时,选择二手家具还能在一定程度上延长其使用寿命,减少因频繁更换家具而产生的废弃物。 + +![1728541546151419.jpg](https://www.jdwy.cn//Upload/ueditor/image/20241010/1728541546151419.jpg) + +**三、灵活多样的搭配方案** + +二手与全新组合的办公家具采购方案,为企业提供了灵活多样的搭配选择。企业可以根据自身需求和预算情况,灵活选择二手和全新家具的比例和类型。例如,对于需要频繁更换或移动的办公桌椅等常用家具,企业可以选择价格相对较低的二手产品;而对于需要展示企业形象、体现专业性的会议室家具等,则可以选择品质更高、设计更新颖的全新产品。 + +这种灵活多样的搭配方式,不仅有助于企业在控制成本的同时满足多样化的办公需求,还能使办公环境更加和谐统一、美观大方。同时,通过精心挑选和搭配二手与全新家具,企业还能创造出独具特色的办公氛围和文化底蕴。 + +**四、提升员工满意度与归属感** + +办公环境的好坏直接影响员工的工作状态和心情。一个舒适、美观、实用的办公环境不仅能提高员工的工作效率和创造力,还能增强员工的归属感和满意度。通过选择二手与全新组合的办公家具采购方案,企业可以在控制成本的同时,为员工打造一个既实用又美观的办公环境。 + +综上所述,二手与全新组合的办公家具采购方案具有显著的成本控制优势、环保节能效益、灵活多样的搭配方案以及提升员工满意度与归属感等多重优势。在未来的办公家具采购中,企业应充分考虑这一策略并积极实践,以实现经济效益与社会效益的双赢。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-7.md b/themes/huishou/exampleSite/content/posts/post-7.md new file mode 100644 index 0000000..c29f5c2 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-7.md @@ -0,0 +1,40 @@ ++++ +title = '大型企业适合采购二手办公家具吗?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +description = '由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。' +tags = ['二手办公家具' , '二手办公桌椅', '采购二手办公家具'] +readingTime = false +hideComments = false +draft = false +url = '/news/7' ++++ + +由于企业成本控制、环保意识增强等,大型企业也开始选择二手办公家具来满足发展的需求。但是大企是否适合采购二手办公家具,主要取决于以下几个因素: + +1. 经济效益:二手办公家具相比全新家具通常价格更低,对于希望控制投入成本的企业来说,这是一个经济实惠的选择。 + +2. 环保意识:选择二手家具有助于减少资源消耗和环境影响,符合很多企业的可持续发展策略。 + +3. 短期需求:如果企业正处于快速扩张或装修阶段,可能只需要临时的办公配置,二手家具可以满足这种短期需求。 + + + +在决定选择二手办公家具时也应考虑以下几点: + +质量检查:确保二手家具的质量符合使用标准,避免频繁维修带来的额外成本。 + +卫生与安全:考虑家具的清洁度和安全性,特别是对于有特殊卫生要求的办公环境。 + +整体美观:对于注重品牌形象的企业,需考虑二手家具是否符合整体的品牌风格和形象。 + +综合来看,大型企业完全可以考虑采购二手办公家具,但需要做好充分的市场调研和质量评估。第二树作为全国连锁的规模最大的二手办公家具服务商,可为全国各类企业提供采购、租赁、回收等一站式办公家具服务,现已经为不少大企、名企提供过相关服务,比如阿里、滴滴、字节等。 + + + +![1722563156129916.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240802/1722563156129916.jpg) + +2022年8月滴滴公司采购142件二手办公家具 + + \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-8.md b/themes/huishou/exampleSite/content/posts/post-8.md new file mode 100644 index 0000000..8556a63 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-8.md @@ -0,0 +1,28 @@ ++++ +title = '买二手人体工学椅需要注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +description = '在购买二手人体工学椅时,除了遵循一般的人体工学椅选购原则外,还需要额外注意以下几点,以避免潜在的问题和风险。' +tags = ['二手办公家具' , '二手办公桌椅', '人体工学椅'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +![1716348704818367.jpeg](https://www.jdwy.cn/Upload/ueditor/image/20240522/1716348704818367.jpeg) + +1. 检查磨损程度:仔细查看椅子磨损情况,特别是椅面、扶手、调节机制等易损部位。网布椅面应无明显破损,皮革或织物表面应无裂纹。如有瑕疵卖方应指出。 + +2. 检查功能是否完好:确认工学椅的调节功能,如座椅高度、倾斜锁定、腰靠调整、扶手升降等都能正常工作。有些大牌工学椅的某项功能是缺失的,得了解清楚。 + +3. 椅子的品牌与型号:选择知名品牌和经过市场验证的二手工学椅,这些椅子通常有较好的耐用性。同时,品牌二手椅子在市场上更容易找到配件和维修服务。 + +4.保修与退换政策:了解卖家是否提供保修或退换服务。尽量选择靠谱的卖家,比如我们会根据产品情况提供半年-3年售后质保服务。 + +5.椅子的清洁与卫生:了解椅子的清洁情况,二手椅子可能带有使用的痕迹,如污渍、异味等。如不想自己清洗,可选择企业卖家,可提供清洗消毒服务,坐的也更安心。 + +6.选择靠谱商家和平台很重要:买二手工学椅建议选择有规模的商家或者服务商,这些商家通常是从企业批量回收,椅子的状况更好把控,成色和质量会更好。 + +遵循上述建议,不仅能帮助您挑选到合适的二手人体工学椅,还能确保整个购买流程顺畅且安全。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/posts/post-9.md b/themes/huishou/exampleSite/content/posts/post-9.md new file mode 100644 index 0000000..8d0e953 --- /dev/null +++ b/themes/huishou/exampleSite/content/posts/post-9.md @@ -0,0 +1,36 @@ ++++ +title = '企业采购员工办公桌工位该注意哪些方面?' +date = 2024-10-10T10:26:00+08:00 +author = "lopins" +keywords = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +description = '选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。' +tags = ['二手办公家具' , '二手办公桌椅', '员工办公桌'] +readingTime = false +hideComments = false +draft = false +url = '/news/8' ++++ + +选择员工工位时,需要综合考虑多种因素以确保员工的舒适度、工作效率以及团队协作效果。以下是一些关键因素和建议: + +![1713842046463910.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842046463910.jpg) + +![1713842074606517.jpg](https://www.jdwy.cn/Upload/ueditor/image/20240423/1713842074606517.jpg) + +**一、根据工作性质选择:** + +对于需要高度专注、独立工作的岗位(如程序员、编辑等),应选择较为安静、干扰较少的区域;而对于频繁需要团队讨论、创意碰撞的岗位(如设计师、策划人员等),可选择开放式或者设有小型会议室、讨论区的工位布局。 + +**二、根据空间布局与动线选择:** + +根据公司文化和工作需求,选择开放式办公区(利于交流与协作)、半开放式(兼顾私密与交流)或封闭式(提供较高隔音与私密性)的工位设计。 + +合理规划工位间的距离和排列方式,避免过道狭窄导致的通行不便。可以采用直排、环形、L型、蜂窝状等布局形式,确保空间利用率和员工互动便利性。 + +确保主要通道不穿过工作区域,减少对员工的打扰。同时,便捷通达打印机、茶水间、洗手间等公共设施。 + +**三、根据舒适度与人体工程学选择:** + +保证工位长度(1-1.6米)、工位宽度(一般至少0.6米),以适应不同体型的员工,并能放置必要的办公设备。选用可调节高度的办公桌和符合人体工程学的座椅,确保员工坐姿舒适,减轻长时间工作对颈部、腰部、手臂的压力。每个工位附近应配备充足的电源插座,方便员工使用电脑、手机等设备。 + +综上所述,选择员工工位时应兼顾工作需求、空间布局、舒适度、设施设备、个性化等多个方面,旨在营造一个既高效又舒适的工作环境,促进员工满意度和生产力的提升。 \ No newline at end of file diff --git a/themes/huishou/exampleSite/content/product/_index.md b/themes/huishou/exampleSite/content/product/_index.md new file mode 100644 index 0000000..1cd237f --- /dev/null +++ b/themes/huishou/exampleSite/content/product/_index.md @@ -0,0 +1,12 @@ +--- +title: "Product" +date: 2024-10-29 +tags: + - tag1 + - tag2 +slug: "product" +permalink: "/product/" +layout: "product" +--- + +This is the product page content. \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/about.css b/themes/huishou/exampleSite/static/assets/css/about.css new file mode 100644 index 0000000..45847bb --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/about.css @@ -0,0 +1,550 @@ +.layout-tilte { + text-align: center; + padding: 50px 0; +} + +.layout-tilte p:nth-child(1) { + font-size: 45px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; + padding-bottom: 20px; +} + +.layout-tilte p:nth-child(2) { + width: 75px; + margin: 0 auto; + border: 2px solid #50972c; +} + +/*头部banner*/ +.banner-about { + height: 867px; + background-image: url(../images/banner.jpg); + background-repeat: no-repeat; + background-position: center; +} +.about-banner-box{ + position: relative; + top: 150px; + color: #ffffff; + margin: 0 20px; +} +.box-logo{ + +} +.box-title{ + font-size: 70px; + margin-top: 55px; + width: 600px; + display: flex; + flex-flow: column; + line-height: 80px; +} +.box-title em{ + width: 160px; + height: 3px; + background-color: #ffffff; + margin-top: 40px; +} +.box-number{ + display: flex; + justify-content: space-between; + width: 750px; +} +.box-number dl{ + width: 230px; + height: 100px; + border: 1px solid; + border-radius: 15px; + margin-top: 80px; + display: flex; + flex-flow: column; + text-align: center; + align-items: center; + justify-content: center; +} +.box-number dt{ + font-size: 40px; +} +.box-number dt em{ + font-size: 24px; + padding-left: 5px; +} +.box-number dd{ + font-size: 18px; +} + +/*品牌介绍*/ +.brand-intro{ + height: 867px; + background-image: url(../images/brand-intro.jpg); + background-repeat: no-repeat; + background-position: center; +} +.intro-box{ + height: 100%; + color: #ffffff; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro-title{ + font-size: 60px; + padding-bottom: 75px; +} +.intro-content{ + font-size: 25px; + line-height: 46px; + padding-bottom: 60px; +} +.intro-video{ + font-size: 25px; + display: flex; + justify-content: center; + text-align: center; + align-items: center; + cursor: pointer; +} +.intro-video img{ + width:28px; + height:28px; + padding-left:10px; +} + + +/*展厅实景*/ +.zt-site{ + height: 867px; + background-image: url(../images/site-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.site-box { + position: relative; +} +.zt-nav{ + padding-bottom: 40px; +} +.zt-nav ul{ + display: flex; + justify-content: center; + font-size: 18px; +} +.zt-nav ul li{ + /*width: 117px;*/ + cursor: pointer; + padding: 0 15px; +} +.zt-nav .active { + background-color: #1f8031; + color: #ffffff; + padding: 5px 15px; + border-radius: 25px; +} +.zt-intro { + height: 527px; + background-color: #fff; + display: flex; +} + +.zt-intro ul { + width: 291px; + height: 527px; + padding: 0 48px; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; +} +.zt-intro ul li:nth-child(1) { + color: #1f8031; + font-size: 39px; + font-weight: 700; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(2) { + font-size: 26px; + line-height: 35px; + color: #8a8a8a; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(3) { + font-size: 22px; + line-height: 30px; + color: #8a8a8a; + letter-spacing: 0.63px; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(4){ + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + align-items: center; +} +.zt-intro ul li:nth-child(4) span:nth-child(1) { + font-size: 22px; + color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; + margin-bottom: 25px; +} +.zt-intro ul li:nth-child(4) span:nth-child(2) { + font-size: 22px; + color: #ffffff; + background-color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; +} +.zt-intro .intro-img { + width: 893px; + height: 527px; +} +.zt-intro .intro-img .swiper-slide{ + height: 527px; +} +.zt-intro .intro-img img{ + width: 100%; + height: 100%; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-button-prev { + top: 555px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #ffffff; + color: #1f8031; +} +.zt-intro .swiper-button-next:after, .zt-intro .swiper-button-prev:after{ + font-size: 14px !important; +} +.zt-intro .swiper-button-prev, .zt-intro .swiper-container-rtl .swiper-button-next { + left: 92% !important; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-container-rtl .swiper-button-prev { + right: 2% !important; +} +.zt-intro .swiper-button-next.swiper-button-disabled, .zt-intro .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +/*企业文化*/ +.qywh{ + height: 867px; + background-image: url(../images/qywh1-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.qywh-box .slide-content{ + display: flex; + color: #ffffff; +} +.qywh-box .slide-content .slide-content-left{ + width: 584px; + padding-left: 120px; + padding-top: 63px; + background-color: rgba(255,255,255,0.1); +} +.qywh-box .slide-content .slide-content-left div:nth-child(1){ + font-size: 32px; + display: flex; + align-items: center; + padding-bottom: 90px; +} +.qywh-box .slide-content .slide-content-left em{ + width: 5px; + height: 29px; + background-color: #1f8031; + margin-right: 13px; + margin-top: 4px; +} +.qywh-box .slide-content .slide-content-left div:nth-child(2){ + font-size: 30px; +} +.qywh-box .slide-content img{ + +} + +.solid-qywh{ + color: #ffffff; + padding-top: 65px; + font-size: 20px; +} +.solid-qywh .swiper-wrapper { + display: flex; + justify-content: center; + border-top: 1px solid; +} +.solid-qywh .swiper-slide { + width: 190px !important; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + padding-top: 15px; + cursor: pointer; +} +.solid-qywh .swiper-slide em:nth-child(1){ + display: inline-block; + width: 10px; + height: 10px; + border-radius: 20px; + background-color: #ffffff; + position: absolute; + top: -6px; + z-index: 99; +} +.solid-qywh .swiper-slide em:nth-child(2){ + display: inline-block; + width: 20px; + height: 20px; + border-radius: 20px; + background-color: rgba(255,255,255,0.3); + position: absolute; + top: -11px; + z-index: 98; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(1){ + background-color: #50972c; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(2){ + background-color: rgba(82,151,45,0.3); +} + +/*荣誉*/ +.part5{ + height: 867px; + background-image: url(../images/banner-certify.jpg); + background-repeat: no-repeat; + background-position: center; +} + +/*发展历程*/ +.course{ + height: 867px; + background-image: url(../images/banner-course.jpg); + background-repeat: no-repeat; + background-position: center; +} +.milestone-tab{ + border-bottom: 1px solid #ffffff !important; +} +.milestone-tab .item-li{ + margin: 0 auto; + text-align: center; + display: flex; + flex-flow: wrap; + align-items: flex-end; + height: 100px !important; + position: relative; +} +.milestone-title { + text-align: center; + /*margin: 0 auto 10px !important;*/ + color: #ffffff; +} +.milestone-title .swiper-slide-thumb-active{ + /*color: #50972c;*/ + /*border-bottom: 2px solid #50972c;*/ + /*font-weight: bold;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li div{ + margin: 0 7px; + border-radius: 50% !important; + position: absolute; + right: 0; +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active1{ + /*width: 1px !important;*/ + /*height: 15px !important;*/ + /*background: #ffffff !important;*/ + /*z-index: 1;*/ + /*right: 10px;*/ + /*bottom: 0px;*/ + /*border-radius: unset !important;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active2{ + width: 20px !important; + height: 20px !important; + z-index: 2; + background: #50972d !important; + right: 3px; + bottom: 3px; + +} + +.milestone-title .swiper-slide-thumb-active span{ + font-size: 60px !important; + top: 0 !important; + left: 125px !important;; +} +.milestone-title .swiper-slide { + width: 195px !important; + padding-right: 10px; + margin: 0 !important; + height: 100px !important; + position: relative !important; +} +.milestone-title .swiper-slide span{ + top: 20px; + left: 155px; + font-size: 30px; +} +.milestone-title .swiper-slide .item-li div{ + width: 1px !important; + height: 15px !important; + background: #ffffff !important; + margin: 0 7px; + position: absolute; + right: 0; + bottom: 0; +} + +.milestone-item dl{ + display: flex; +} +.milestone-item dt{ + width: 494px; + height: 336px; +} +.milestone-item img{ + width: 100%; + /*border-radius: 5px 0 0 5px;*/ +} +.milestone-item dd{ + font-size: 16px; + color: #747272; + padding: 30px 40px; + line-height: 30px; + width: 606px; + height: 276px; + background: #ffffff; + /*border-radius: 0 5px 5px 0;*/ +} +.milestone-item dd p{ + line-height: 30px; +} +.milestone-item dd span{ + font-weight: 700; + color: #50972c; +} +.course-box{ + width: 1180px; + margin-left: 50px; + padding-top: 30px; +} +.course .swiper-button-next, .course .swiper-button-prev { + top: 260px !important; +} +.course .swiper-button-prev, +.course .swiper-container-rtl .swiper-button-next { + left: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} +.course .swiper-button-next:after, .course .swiper-button-prev:after{ + font-size: 16px !important; +} +.course .swiper-button-next, +.course .swiper-container-rtl .swiper-button-prev { + right: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} + + +/*爱心公益*/ +.welfare{ + height: 800px; + +} +.welfare-box{ + position: relative; +} +.welfare-box .swiper-welfare{ + height: 460px; +} +.welfare-box .swiper-welfare .swiper-slide{ + +} +.welfare-box .swiper-welfare .swiper-slide-active{ + /*background-color: #1f8031 !important;*/ + /*color: #ffffff;*/ +} +.welfare-box .swiper-button-next, .welfare-box .swiper-button-prev { + top: 530px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #1f8031; + color: #ffffff; +} +.welfare-box .swiper-button-next:after, .welfare-box .swiper-button-prev:after{ + font-size: 14px !important; +} +.welfare-box .swiper-button-prev, .welfare-box .swiper-container-rtl .swiper-button-next { + left: 89% !important; +} +.welfare-box .swiper-button-next, .welfare-box .swiper-container-rtl .swiper-button-prev { + right: 4% !important; +} +.welfare-box .swiper-button-next.swiper-button-disabled, .welfare-box .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +.welfare-box .swiper-welfare .swiper-slide dl{ + width: 265px; + height: 400px; + padding: 20px; + font-size: 18px; + background-color: #f5f5f5; +} +.welfare-box .swiper-welfare .swiper-slide dl:hover{ + background-color: #1f8031 !important; + color: #ffffff; + cursor: pointer; +} +.welfare-box .swiper-welfare .swiper-slide dl img{ + width: 100%; +} +.welfare-box .swiper-welfare .swiper-slide dt{ + padding-bottom: 35px; +} +.welfare-box .swiper-welfare .swiper-slide dd{ + +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(1){ + padding-bottom: 15px; + font-weight: 700; +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(2){ + line-height: 30px; + font-size: 16px; +} +.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{ + top: unset; + bottom: 0; +} +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ + background-color: #1f8031; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/animate.min.css b/themes/huishou/exampleSite/static/assets/css/animate.min.css new file mode 100644 index 0000000..e7dd655 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/animate.min.css @@ -0,0 +1,11 @@ +@charset "UTF-8"; + +/*! + * animate.css -http://daneden.me/animate + * Version - 3.5.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2017 Daniel Eden + */ + +.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:none}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:none}}.wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:none}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:jello;transform-origin:center}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-name:hinge}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:none}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:zoomOutUp}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:slideOutUp} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/case.css b/themes/huishou/exampleSite/static/assets/css/case.css new file mode 100644 index 0000000..c94867e --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/case.css @@ -0,0 +1,397 @@ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} + +/*头部轮播*/ +.banner{ + position: relative; + height: 750px; + background-position: top; + background-size: cover; + background-repeat: no-repeat; +} +.banner img{ + width: 100%; +} +.banner video{ + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; + -o-object-position: center top; + object-position: center top; +} +.banner .video-div{ + background-color: rgba(0, 0, 0, 0.4); + z-index: 7; + width: 100%; + height: 100%; + position: absolute; + pointer-events: auto; +} +.banner .banner-box{ + position: absolute; + top: 0; + width: 100%; + height: 100%; + color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + z-index: 8; +} +.banner .title{ + margin-bottom: 100px; +} +.banner .title p:nth-child(1){ + font-size: 65px; + padding-bottom: 50px; + } +.banner .title p:nth-child(2){ + width: 100px; + height: 5px; + background-color: #fff; + margin: 0 auto; +} +.banner .box-number{ + display: flex; + flex-flow: wrap; + justify-content: center; + margin-bottom: 130px; +} +.banner .box-number dl{ + padding: 0 100px; +} +.banner .box-number dt{ + font-size: 54px; +} +.banner .box-number dd{ + font-size: 18px; +} + +/* 案例Item */ +.case { + /*background-image: url(../images/case-bg.jpg);*/ + /*background-repeat: no-repeat;*/ + /*background-position: center;*/ + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + /*color: #ffffff;*/ +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + /*color: #ffffff;*/ +} +.case-tab a:hover{ + /*color: #ffffff;*/ +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + /*color: #ffffff;*/ +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #f4f4f4; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + +/*案例装修*/ +.case-trim{ + background-color: #f5f6f8; + padding-bottom: 30px; +} +.case-trim .case-list{ + +} +.case-trim .case-list .list-title{ + display: flex; + font-size: 16px; + align-items: center; + margin-bottom: 20px; +} +.case-trim .case-list .list-title ul{ + display: flex; +} +.case-trim .case-list .list-title li{ + border: 1px solid #999; + padding: 5px 15px; + margin-right: 15px; + cursor: pointer; +} +.case-trim .case-list .list-title .active{ + background-color: #b90010; + color: #fff; + border: 1px solid #b90010; +} +.case-trim .case-list .list-box{ + display: flex; + flex-flow: wrap; + min-height: 450px; +} +.case-trim .case-list .list-box dl{ + width: 308px; + height: 310px; +} +.case-trim .case-list .list-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.list-box .margin-rb { + margin: 0 15px 15px 0; +} +.case-trim .case-list .list-box dt{ + height: 230px; +} +.case-trim .case-list .list-box dt img{ + width: 100%; + height: 100%; +} +.case-trim .case-list .list-box dd{ + padding: 15px 10px; + background-color: #fff; +} +.case-trim .case-list .list-box dd p:nth-child(1){ + font-size: 16px; + padding-bottom: 10px; +} +.case-trim .case-list .list-box dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +/*案例回收*/ +.case-recycling{ + background-color: #ffffff; +} +.case-recycling .recycling-box{ + display: flex; + flex-flow: wrap; + padding-top: 30px; +} +.case-recycling .recycling-box dl{ + width: 308px; + height: 325px; + position: relative; +} +.case-recycling .recycling-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.case-recycling .recycling-box dt{ + height: 230px; +} +.case-recycling .recycling-box dt img{ + width: 100%; + height: 100%; +} +.case-recycling .recycling-box dd{ + padding: 15px 10px; + background-color: #f5f6f8; + height: 70px; + overflow: hidden; + /*position: absolute;*/ + /*bottom: 0;*/ + /*left: 0;*/ + /*transition: .5s;*/ + /*line-height: 22px;*/ +} +/*.case-recycling .recycling-box dd:hover{*/ + /*height: 220px;*/ +/*}*/ +.case-recycling .recycling-box dd p:nth-child(1){ + font-size: 16px; + font-weight: 700; + padding-bottom: 10px; +} +.case-recycling .recycling-box dd p:nth-child(2){ + font-size: 14px; + /*display: flex;*/ + /*justify-content: space-between;*/ + color: #999; + height: 40px; + overflow: hidden; +} +.recycling-box .margin-rb { + margin: 0 15px 15px 0; +} + +.recycling-mask { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 25px; + background-image: linear-gradient(rgba(255,255,255,.25),#fff); +} + + +.banner-bottom{ + padding: 30px 0; +} + +.case-more { + width: 280px; + height: 45px; + line-height: 45px; + text-align: center; + /*border: 1px solid #50972c;*/ + color: #50972c; + font-size: 20px; + margin: 20px auto 0; + cursor: pointer; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/certify.css b/themes/huishou/exampleSite/static/assets/css/certify.css new file mode 100644 index 0000000..463f748 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/certify.css @@ -0,0 +1,82 @@ +@charset "utf-8"; +/* CSS Document */ + +#certify { + position: relative; + width: 1200px; + margin: 0 auto +} + +#certify .swiper-container { + padding-bottom: 120px; + padding-top: 60px; +} + +#certify .swiper-slide { + width: 520px; + height: 408px; + background: #fff; + box-shadow: 0 8px 30px #ddd; +} +#certify .swiper-slide img{ + display:block; + width: 100%; +} +#certify .swiper-slide p { + line-height: 98px; + padding-top: 0; + text-align: center; + color: #636363; + font-size: 18px; + margin: 0; +} + +#certify .swiper-pagination { + width: 100%; + bottom: 20px; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet { + margin: 0 5px; + border: 3px solid #fff; + background-color: #d5d5d5; + width: 10px; + height: 10px; + opacity: 1; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet-active { + border: 3px solid #50972c; + background-color: #50972c; +} + +#certify .swiper-button-prev { + left: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 0; + background-size: 100%; +} + +#certify .swiper-button-prev:hover { + background-position: 0 -46px; + background-size: 100% +} + +#certify .swiper-button-next { + right: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 -93px; + background-size: 100%; +} + +#certify .swiper-button-next:hover { + background-position: 0 -139px; + background-size: 100% +} +#certify .swiper-button-prev::after,#certify .swiper-button-next::after{ + content: ''; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/esg.css b/themes/huishou/exampleSite/static/assets/css/esg.css new file mode 100644 index 0000000..e3985ad --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/esg.css @@ -0,0 +1,239 @@ +/* 通用Title */ +.layout { + background-color: #fff; +} + +.layout-title { + padding: 60px 0; + text-align: center; +} + +.layout-title p:nth-child(1) { + font-size: 36px; + font-weight: bold; + padding-bottom: 10px; +} + +.layout-title p:nth-child(2) { + font-size: 22px; + margin-top: 6px; + /*color: #747272;*/ +} + + + +/*服务优势*/ +.ys-item{ + +} +.ys-item dl{ + display: flex; + flex-flow: column; + /*justify-content: center;*/ + text-align: left; + width: 200px; + height: 240px; + background: #f7f7f7; + border-radius: 10px; + margin-bottom: 20px; + box-shadow: 0 0 10px 3px #e8e8e8; + padding: 0 40px; +} + +.ys-item dt{ + font-size: 42px; + color: #50972c; + font-family: fantasy; + padding-top: 35px; + height: 50px; +} +.ys-item dd{ + padding-top: 10px; +} +.ys-item dd p:nth-child(1){ + width: 80px; + border: 1px solid #50972c; +} +.ys-item dd p:nth-child(2){ + color: #747272; + letter-spacing: 0.43px; + text-align: justify; + line-height: 25px; + padding-top: 10px; + font-size: 18px; +} + +/*产业*/ +.famous { + position: relative; + border-radius: 5px; + overflow: hidden; +} +.famous .swiper-button-next, +.famous .swiper-button-prev { + top: 360px !important; +} +.famous .swiper-button-prev, +.famous .swiper-container-rtl .swiper-button-next { + left: 74% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + width: 1.97917vw; + height: 1.97917vw; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAITgAACE4AUWWMWAAAAXMSURBVHhe7Z2JmeU0EIQHIoAEYIkAiACIgCUBjgiACIAIIAOWBDgS4EiAIwGOBIAIgP4ZC3rqSX5+tiRbsur76vPM7IwtldvVreN57wYGBgZux1PT8Uh4ZHx1Oj43HV8wAr72+HPir9PxJ+OP0/ccBxyeMb5r/Nz4u/GviX9v5B/GL4xvG/UGnQZB3K+NuYS9xm+Mu4le2zqwhDeNj42Ife363hpgDAjHuV7697tl+Mz4oTF1zmaBwCF6Y9EWSNR9YuRGrIk8xOZvOQfnil3D84mxC1uhE3hvSuDgo28YnzXmfsKIdIT/1Bi7fmDTgr9nJLnFOka08e8lxE0B0d8y/mKMtQliJ82AyEjZBAK/Zty7rJwTnJ8fPrpTUUzjjyCwIiU4lkZfDomPjbEo5nHEIo6MD4za7tD2wwDvwyq0kUTKy8ZWgF3EoptkTR93BQ343qiNI7qPHsUp0Hbtzw/G3XybC/9s1EbhbUfz4lsRsxKivXpkxyKZBEI93Auov+mT7yORXVVsBiG+ATSoJT9eCkaaKjYlahWQif2FexU5ICY2Q/yiwH/9BWFPdpECczXa72J1NslPByNNDVk3QoOMKC9SiWiFQRl0Nmjpl92v1ZcpdVov4daAikMHNdkshMdDk0FYwzsjSI5ei2wWonO5Z/LlFPQJZz57E7hT/oQ8NgNxC6EyWQ2NZhY3B+6hJd/qxDii+ToQ12u0KqpHNF+HRvXNI8YRzcvho5oKJDrp9PR0VLwyHQM+mo4Dl/hqOgJEvunJV+/JUid2CsT144zFSVFtY3ONeAJoPruwj5h1qG18OR0H0lCNFtkHfzR7dwYugEZes0Uu4Ec8q4vwE0KrjwdQ62DCxCc+NnbXABERGlp89aIQvFb0Z7aAeN0Y7gpkgbI0aBSLnv663PDWoNo98GmNaF37K71/OESyFzbsiW4N+vTPRrQmwpKIRTLe1mI0B/h6ejYhekNHhFLoUWSwuJCoUXH0KjLwgfpgfkg9GhECfpuOOZHyZLb09vBxtWRO0wVW7kQAH6jJOTUaExnMfRCoJL4z5l6WYyjuNUsuYIewhznnOGJ2sTcvBhUZoHMe/yE1TZob2MPRrMHbZHHUtA6gj1bAHtZBKfv+/ZfZsNg6fNVRanpUHy/YyxYG37dZa6o1odSr2MnyTrH4FzOgR7F9wp8N1MWhnwm9ie37wYeMkqCT/pdrrBXGxK5aEWQC4wPfhwcBo+WdZv8aw+J3jJp4WxT6+ekYMFvO6sJszUl49h6TF3iPR4tQN7gapHhz+OWSlUdvuLmQUM9s8TGuDTTyml0kwtgQXFcKNm1HPQl0i4bfvZTE1bszcAF1gcXVmvcbPHvYRxoamNG8lpq927Rx72Rg9duDybjFQNxRfSyDnx+CNw/yqKH9CUZSvARvsPEarZrxzPYZjY6xOZoDfFKEI6r/R5ZoDtCo5g6OCuQe2aI5QGvE1ueMc0DnNbKsRnGnfAUCa8zqHRXo4bVAm83RHKCvUDizhahl8P6lrNDE2Oo+5i3QkhfRsyNmIcXewnJAqC9ntQyFljTwDCUfG/K138UXKPQtLNzZnpMjfdMnObsvp6B+3avYMZGrThtTccT2ONf4zEstYIkqMn2uXm1xQS11YA8DGi1nIX0tlvyugQvHtuO2WvoRPFrCwV0iWUED8C1t3K4RsAL4cSxoyEe7i+zRxMuuI0BErZEDD/tuP7xNEwgkuo+4HEbCi+UZ+nD4jTzYRazx8CiCI7CWqIH8vCXLS1oJDILX9D6uRZSmBG4iilMgMmK7RT2Zy6X+LiE65+TctCFmaYEk86aiOIUlgkOijfIKcdaMNLkOf8s5UpHrye9Umaup/SJXhMBSbvFptr+G/5gsBs4Jid4lTwXnYt8KT9K3/KBnIAwzgUuiLhe5Fh5cwqKaQBAdn5zz0VvJuTjnIcStbR1LgDcjPscXjYiUsoZgJxwhn1/niCWkrGZgYGCgDdzd/QN173dVxn6toQAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 0;*/ + /*width: 1.97917vw;*/ + /*height: 1.97917vw;*/ +} +.famous .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.famous .swiper-button-next, +.famous .swiper-container-rtl .swiper-button-prev { + right: 18% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + /*width: 30px;*/ + /*height: 30px;*/ + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVISURBVHgB7Z2NldQ2FIUvHArYVJCXCkIqQKmATQXrVLB0sE4FbCqIkwIgaSADDbBLA+xCAexWAPgxNshPki3P2LJk6ztHx+Ndj3/uvLl6ljQykMlkMqN5gPiguqhm+WOzJO1/OvdNuW2Wb+ty3axfI9PhpC7ndXlZl7u6fJ6o3DX7PIP5AW2GVtwdphN2qPCxFhM9tHWouhR1eYq92EPo1nDr2IaafT2GP1Vd/ujZZ7Io+EUvb3NZl1McFnmPm/deeh7vL6zEVgh7n+zzUb5YFscnwsdy0uy7wooFZw92VW675v9ziOuCj1XU5QZuwS+QEAT315b/rrA8BdyC898JkeOKYj55hfgoYBecr+EZIuU57BFSIqxFHEKJBKyERbRZxRXGpVxLQ7BHN1fmiwcKnwALKk/uEvFHsQs+d1vQEBaCYI+AaL1tBCXs9Uzw4LFFMlcgCuuB829ZsfM1BxVb3oTwCaXkx77wNUmxdwjEBbYhcotN7OeYmXOY3nWK9aNgXvcZZoJgfrIltgNX8vKbTJgBmWFcYnvI1G9yv5a+fINtwhmHDLjJ0lmCaRmE7cKV4ywWUmG7vuyihNmefRSEbBk2bBaicAQVAqU0CaIwUcVIyNE8BIt7dFRXyNE8hMKRKS8hR7MvelRzBmJtdHroeLMS6yUyLv7TXrcdwN5I70m1ET8ErI1+n+FdKRImzhE3gGw2NgLTZh1KrP+LzBB/i/UCHgx+OhkD1mi0C+h3PN5+kzGyjw7SOrjBhLT110gT7qDggJm9J0TjrfaaI5z6NubeEv0r8BTpQVimMpfaFfo/bRGt8x7pcS/WC4QR+1qsU9/GsiJMlRJmH18Ise98j6cb+hXSpkR4sb0TibVlHCXCiq0Ham/7kHfoJ0SJcGJXcAj9SGw4980Jp1sxjAMpmuXvmA/SVx4hLDENgCya5Zxif+MhwnKPuOB0NkgTQ+iI/rMuTxAegpnXct77Kxb68PWsYy2VoW2Q4lzDbyv0tHforC29Cyky453eeW+YAKFFBrqD83sDtYJn6EfOEiJDHK/TYSKzjlvt9WBTX6QQ9tGkixqi4pMNcp1Gpj6hmZ+RHicILzJDYv1qaGM9/EcPCImEdhyzjOwQx2zL4M9NDuo6z4xPJCrkztmxyM5ZY+SA7RZc9hQ8QWYIJdZferznsK7zjVOhqxn5vlH3G+fAvcxXCF2RrfWaq/XuqIF7G0OJ9QojOHjg3gbhDOMg22iReaFCRlJggvpMwcN7Ns7R0dyyQ45qFwUmzM6U2Bl/gjkD2TNZNLdUYoclMiVmuNcgmG27gw0mK+YndLWYdJaDZ8gWwvCkudIySkyMrBhDjj2OBTm33zvMAMG0kJgGxMxNie61f8SMPVDSQraS8v0G87pnDzJ5x7j2yat+wYJTHEm/XqvYNpFfICCuCQZPsR7YLqTIb7DQbI43ML3rAmnDKZytLuIMg7AQBPsksKmmfj/APj3zIpEs4ROwzePP0U5IB/Zj2zf0f0R2c1bCPMkUrISjuIR53p8Q8TeTvc019fwZ4oK9mEcw2aKYb0aivxkj9D+oYGnBW4F3sEcxWwUhIUrYxdYFD+V9LC5bBEfpznFOSUSxC4Lfw2Y4/55a9FZczof7HnjGUfwCK3rCUIV+wblwtPEtPgt/yJ0mwf8RTq1NKATgAcJC2FvKGJ/mIWr36H8oGRc5XNfG52ZfPDbun7q8wsoh7Ds3h6JuivIJ36P3HBvu8yTsRZ/qwZGtsFy5sfdGIW5o6/ChnQWHl/yLg/YnHjZruG2WN83rD83yFVb4rMJMJrM5vgAZc0TZpm6wTAAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 3.125vw;*/ + width: 1.97917vw; + height: 1.97917vw; +} + +.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{ + content: '' !important; +} +.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{ + content: '' !important; +} + +.case-intro { + /*height: 440px;*/ + /*background-color: #fff;*/ + display: flex; + justify-content: space-between; + position: relative; +} +.case-intro img { + /*width: 672px;*/ + /*height: 440px;*/ +} +.case-intro ul { + width: 470px; + height: 440px; + display: flex; + flex-direction: column; + justify-content: center; + padding: 0 30px; +} +.case-intro ul li:nth-child(1) { + font-size: 36px; + font-weight: 700; + text-align: center; +} +.case-intro ul li:nth-child(2) { + font-size: 20px; + /*font-weight: 700;*/ + padding-top: 30px; + letter-spacing: 0.43px; + text-align: justify; + line-height: 30px; + padding-bottom: 60px; +} + +/*资源消耗*/ +.intro2{ + /*height: 540px;*/ +} +.intro2 .intro2-item{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding: 0 100px; +} +.intro2-item dl{ + border: 2px solid #50972d; + border-radius: 50%; + height: 250px; + width: 250px; + font-size: 28px; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro2-item dt{ + color: #50972d; + font-family: fantasy; + font-size: 50px; +} + +.intro2-item dt span{ + font-size: 24px; +} +.intro2-item dd{ + color: #747272; +} +.intro2-bottom{ + font-size: 18px; + color: #747272; + text-align: center; + padding-top: 30px; + letter-spacing: 0.86px; +} + +/*公益*/ +.gy{ + +} +.gy-item-top{ + margin-bottom: 20px; +} +.gy-item-top dl{ + width: 589px; +} +.gy-item-top dl img{ + border-radius: 5px 5px 0 0; +} +.gy-item-top dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; +} +.gy-item-top dd p:nth-child(1){ + font-size: 26px; + padding-bottom: 10px; +} +.gy-item-top dd p:nth-child(2){ + font-size: 18px; + color: #747272; +} + +.gy-item-bottom{ + padding-bottom: 30px; +} +.gy-item-bottom dl{ + width: 293px; +} +.gy-item-bottom dl img{ + border-radius: 5px 5px 0 0; + width: 293px; +} +.gy-item-bottom dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; + height: 100px; + font-size: 18px; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/help.css b/themes/huishou/exampleSite/static/assets/css/help.css new file mode 100644 index 0000000..ffbcb78 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/help.css @@ -0,0 +1,67 @@ +.help-nav ul{ + display: flex; + padding: 12px 0; +} + +.help-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + margin-bottom: 20px; +} +.help-box .help-box-left{ + width: 280px; + height: max-content; + background-color: #ffffff; + padding-top: 20px; + padding-bottom: 10px; +} +.help-box .help-box-left ul{ + padding: 0 20px; +} +.help-box .help-box-left ul b{ + margin-bottom: 10px; + font-size: 18px; +} +.help-box .help-box-left ul .active{ + color: #50972c; +} +.help-box .help-box-left ul .active em{ + background-color: #50972c; + width: 3px; + height: 15px; + position: absolute; + left: -20px; + top: 4px; +} +.help-box .help-box-left ul li{ + font-size: 16px; + padding-bottom: 20px; + position: relative; +} +.help-box .help-box-left ul li b{ + /*border-bottom: 3px solid #50972c;*/ + padding-bottom: 5px; +} +.help-box .help-box-right{ + width: 960px; + background-color: #ffffff; + padding: 40px 0; +} +.help-box-right .box-right-content p{ + margin-bottom: 15px !important; +} +.help-box-right .box-right-title{ + font-size: 24px; + font-weight: 700; + margin: 0 60px; + border-bottom: 1px solid #bfbfbf; + padding-bottom: 10px; +} +.help-box-right .box-right-content{ + min-height: 500px; + padding: 10px 60px; + font-size: 16px; + line-height: 25px; + letter-spacing: 1px; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/index.css b/themes/huishou/exampleSite/static/assets/css/index.css new file mode 100644 index 0000000..485cc99 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/index.css @@ -0,0 +1,1063 @@ +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +/* part1 */ +.part1 { + padding: 30px 0; + background-color: #f5f6f8; + /*height: 740px;*/ + /*background-image: url(../images/bj1.png);*/ + background-repeat: no-repeat; + background-position: center; +} +.part1_left { + width: 945px; +} +.carousel { + height: 380px; +} +.carousel .swiper-pagination-bullet { + width: 6px; + height: 6px; + background-color: #ffffff; + opacity: 1; + /*border-radius: 2px;*/ +} +.carousel .swiper-pagination-bullet-active { + width: 30px; + height: 6px; + background-color: #469914; + border-radius: 25px; +} +.carousel .swiper-pagination { + /*left: -300px;*/ + bottom: 15px; +} +.swiper-hide{ + display: none; +} +.banner { + position: relative; + width: 1280px; + margin: 0 auto; +} +.banner img{ + width: 945px; + height: 380px; +} +.loaded-img{ + opacity: .3; + transition: opacity .7s ease; +} +.loaded-img-show{ + opacity: 1; +} +.loaded-filter{ + filter: blur(10px); + filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius="50",MakeShadow=false); + transition: filter .7s ease; +} +.loaded{ + filter: none; +} +.carousel .swiper-container .hide { + opacity: 0; +} + +.carousel .swiper-button-next, +.carousel .swiper-button-prev { + transition: opacity 0.5s; +} + +.carousel .swiper-button-next:hover, +.carousel .swiper-button-prev:hover { + background-color: rgba(0, 0, 0, 0.7); +} + +.carousel .swiper-button-prev, +.carousel .swiper-container-rtl .swiper-button-next { + left: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-prev:hover, +.carousel .swiper-container-rtl .swiper-button-next:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next, +.carousel .swiper-container-rtl .swiper-button-prev { + right: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-next:hover, +.carousel .swiper-container-rtl .swiper-button-prev:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next:after, +.carousel .swiper-button-prev:after { + font-size: 20px; +} +.carousel .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{ + pointer-events: auto !important; +} + +.part1_left_bottom{ + height: 110px; + margin-top: 15px; + display: flex; + justify-content: space-between; +} +.part1_left_bottom a:hover{ + color:unset; +} +.part1_left_bottom dl{ + width: 225px; + height: 110px; + display: flex; + justify-content: space-between; + background: #ffffff; + +} +.part1_left_bottom dl:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} +.part1_left_bottom dt{ + width: 120px; + display: flex; + flex-flow: column; + justify-content: center; + padding-left: 15px; +} +.part1_left_bottom dt p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 10px; +} +.part1_left_bottom dt p:nth-child(2){ + font-size: 13px; +} +.part1_left_bottom dd{ + width: 90px; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; +} +.part1_left_bottom dd img{ + width: 60px; + height: 60px; +} + +.part1_right { + width: 320px; + height: 505px; + background-color: #eee; + margin-left: 15px; +} +.part1_right .right-banner{ + /*width: 320px;*/ + height: 145px; + overflow: hidden; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + border-bottom: 1px solid #d6d1d1; + margin: 0 30px; +} + +.part1_right .right-banner p:nth-child(1) span{ + font-size: 16px; + padding-left: 10px; +} +.part1_right .right-banner p:nth-child(2){ + padding-top: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(1){ + background-color: rgb(52, 128, 42); + color: #ffffff; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; + margin-right: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(2){ + background-color: rgb(51, 51, 51); + color: #cec184; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; +} +.right-form{ + padding: 0 30px; + margin-top: 25px; +} +.form-title{ + text-align: center; + padding-bottom: 20px; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} +.form-submit{ + +} + +/* part2 */ +/*.part2 {*/ + /*!*height: 720px;*!*/ + /*background-color: #ffffff;*/ + /*padding-bottom: 50px;*/ +/*}*/ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} +/*.advantage {*/ + /*height: 361px;*/ + /*display: flex;*/ + /*flex-wrap: wrap;*/ + /*justify-content: space-between;*/ + /*align-content: space-between;*/ +/*}*/ +/*.advantage dl {*/ + /*width: 416px;*/ + /*height: 173px;*/ + /*!*padding: 38px 45px;*!*/ + /*background-color: #f5f6f8;*/ + /*display: flex;*/ + /*align-items: center;*/ +/*}*/ +/*.advantage dl:hover {*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ +/*}*/ +/*.advantage dl dd {*/ + /*width: 180px;*/ + /*overflow: hidden;*/ + /*display: flex;*/ + /*align-items: center;*/ + /*justify-content: center;*/ + /**/ +/*}*/ +/*.advantage dl dt {*/ + /*width: 195px;*/ + /*padding: 0px 20px;*/ +/*}*/ +/*.advantage dl dt p:nth-child(1) {*/ + /*font-size: 20px;*/ + /*font-weight: bold;*/ + /*color: #333333;*/ +/*}*/ +/*.advantage dl dt p:nth-child(2) {*/ + /*font-size: 15px;*/ + /*color: #595959;*/ + /*margin-top: 10px;*/ +/*}*/ + +.part2{ + padding-bottom: 50px; + /*background-color: #f5f6f8;*/ +} +.flow-box{ + display: flex; + justify-content: space-between; +} +.flow-box .flow-box-item{ + width: 335px; + height: 350px; + display: flex; + align-items: center; +} +.flow-box .flow-box-item .item-content{ + width: 275px; + height: 350px; + background-image: url(../images/service-bg03.png); + background-repeat: no-repeat; + background-position: center; + position: relative; + overflow: hidden; +} +.flow-box .flow-box-item .item-content dl{ + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + height: 350px; + padding: 0 35px; + position: absolute; + top: 0; + transition: .5s; +} +.flow-box .flow-box-item .item-content dt{ + padding-bottom: 25px; +} +.flow-box .flow-box-item .item-content dt img{ + width: 73px; + height: 73px; +} +.flow-box .flow-box-item .item-content dd{ + text-align: center; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(1){ + font-size: 24px; + font-weight: 700; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(2){ + font-size: 18px; + color: #999; +} +.flow-box .flow-box-item .item-content .item-content-bottom{ + background: linear-gradient(to right, #109a30, #67d682); + height: 40px; + line-height: 40px; + color: #ffffff; + font-size: 17px; + text-align: center; + position: absolute; + width: 275px; + bottom: -40px; + transition: .5s; +} +.flow-box .flow-box-item .item-ico { + width: 60px; + height: 60px; + text-align: center; + display: flex; + align-items: center; + justify-content: center; +} +.flow-box .flow-box-item .item-content:hover dl{ + top: -15px; +} +.flow-box .flow-box-item .item-content:hover .item-content-bottom{ + bottom: 0; +} +.flow-bottom{ + display: flex; + justify-content: center; + padding-top: 35px; +} +.flow-bottom p{ + font-size: 16px; + color: #999999; + font-style: italic; + border-bottom: 1px solid; +} + +/* part3 */ +.part3 { + /*height: 950px;*/ + background-color: #f5f6f8; + padding-bottom: 50px; +} +.faClass { + background-color: #f4f4f4; + border-left: 3px solid #34802a; + font-weight: bold; +} +.scheme_box { + display: flex; + justify-content: space-between; +} +.scheme_left { + width: 213px; + height: 540px; + background-image: url(../images/fa-bg01.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + flex-flow: column; + align-items: center; +} +.scheme_left ul{ + display: flex; + flex-flow: column; + align-items: center; + padding-top: 20px; + padding-bottom: 68px; +} +.scheme_left ul li{ + width: 151px; + height: 44px; + line-height: 44px; + padding-left: 19px; + font-size: 16px; +} +.scheme_left .consult-more{ + font-size: 14px; +} +.scheme_left .consult-more p:nth-child(1){ + padding-bottom: 20px; +} +.scheme_left .consult-more p:nth-child(1) a:hover{ + color: #34802a; +} +.scheme_left .consult-more p:nth-child(2){ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 6px 16px; + text-align: center; +} +.scheme_right { + width: 1067px; +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} + +.scheme_right li { + width: 211px; + /* height: 239px; */ + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right li .scheme_li{ + width: 181px; + height: 253px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + + /*display: inline-block;*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ + /*-webkit-box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + /*box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 181px; + height: 134px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} + +/* part4 */ +.part4 { + /*height: 660px;*/ + background-color: #ffffff; + padding-bottom: 50px; +} +.ecology-box { + /*height: 664px;*/ + position: relative; +} +.ecology-box .gallery-solid { + border-bottom: 1px solid #dfe1e6; +} +.ecology-box .gallery-thumbs { + width: 970px; +} +.ecology-box .gallery-thumbs .swiper-wrapper { + align-items: center; + justify-content: center; +} +.ecology-box .gallery-thumbs .swiper-slide { + width: 250px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-button-prev { + top: 40px !important; +} +.ecology-box .swiper-button-prev, +.ecology-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.ecology-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +:root { + --swiper-navigation-size: 56px !important; +} +.ecology-box .swiper-slide-thumb-active span{ + color: #50972d; + border-bottom:2px solid #50972d; +} + +.gallery-top{ + margin-top: 40px; +} +.ecology-nav .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.ecology-intro { + height: 400px; + background-image: url(../images/tx-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; +} +.ecology-intro .intro-item{ + display: flex; + flex-flow: column; + justify-content: center; + width: 615px; + height: 400px; + padding-left: 60px; + position: relative; +} +.ecology-intro .item-title{ + font-size: 22px; + font-weight: bold; + padding-bottom: 40px; +} +.ecology-intro .item-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 20px; +} +.ecology-intro .item-box dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + width: 300px; + height: 86px; + align-items: center; + margin-bottom: 15px; +} +.ecology-intro .item-box dt{ + width: 80px; + text-align: center; +} +.ecology-intro .item-box dt img{ + width: 39px; + height: 39px; +} +.ecology-intro .item-box dd{ + +} +.ecology-intro .item-box dd p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 9px; +} +.ecology-intro .item-box dd p:nth-child(2){ + font-size: 14px; + color: #999999; +} +.ecology-intro .item-bottom span{ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 8px 19px; +} +.ecology-intro .intro-logo{ + width: 605px; + height: 400px; + overflow: hidden; + display: flex; + justify-content: center; + align-items: center; +} +.ecology-intro .intro-logo img{ + width: 400px; +} +/* 滑过透明层 */ +.glideover-hover { + overflow: hidden; + position: relative; +} +.glideover-hover:before { + content: ""; + position: absolute; + top: 0; + left: -100%; + display: block; + height: 100%; + width: 50%; + z-index: 999; + background-color: rgba(255,255,255,.3); + -webkit-transition: all 1s ease 0s; + -moz-transition: all 1s ease 0s; + -o-transition: all 1s ease 0s; + transition: all 1s ease 0s; + -ms-transform: skewX(-20deg); + -webkit-transform: skewX(-20deg); + -o-transform: skewX(-20deg); + transform: skewX(-20deg); + background: -webkit-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -moz-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -o-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=rgba(255, 255, 255, 0.4),GradientType=0.9); +} +.glideover-hover:hover:before { + left: 100%; +} +/* part5 */ +.part5{ + padding-bottom: 50px; +} +.service-box{ + background-color: #ffffff; + height: 380px; + display: flex; + justify-content: space-between; +} +.service-box a{ + position: relative; +} +.service-box dl{ + width: 308px; + height: 380px; + padding: 15px; + display: block; + box-sizing: border-box; + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + white-space: normal; +} +.service-box dl:hover{ + + opacity: 1; + transition: all .3s linear; + background-image: url(../images/service-bg01.png); + background-repeat: no-repeat; + background-position: center; +} + +.service-box dt{ + padding-bottom: 40px; +} +.service-box dt img{ + +} +.service-box dd{ + text-align: center; + padding: 0 20px; +} +.service-box dd p:nth-child(1){ + font-size: 20px; + font-weight: bold; + padding-bottom: 20px; +} +.service-box dd p:nth-child(2){ + font-size: 14px; +} + +/* part6 */ +.part6 { + background-image: url(../images/case-bg.jpg); + background-repeat: no-repeat; + background-position: center; + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + color: #ffffff; +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + color: #ffffff; +} +.case-tab a:hover{ + color: #ffffff; +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + color: #ffffff; +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #ffffff; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + + +.part7{ + padding-bottom: 50px; +} +.charity-box{ + background-image: url(../images/charity-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + justify-content: space-between; + height: 424px; +} +.charity-box .charity-left{ + width: 600px; + padding: 0 40px; +} +.charity-box .charity-left dl{ + display: flex; + flex-flow: column; + justify-content: center; + height: 424px; +} +.charity-box .charity-left dd:nth-child(1){ + font-size: 20px; + font-weight: 700; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(2){ + color: #999; + line-height: 22px; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(3){ + display: flex; + justify-content: space-between; + padding-bottom: 20px; +} +.charity-box .charity-left dd:nth-child(3) .dd-item{ + width: 180px; + height: 110px; + background-color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.charity-box .charity-left dd:nth-child(3) .dd-item span{ + font-size: 26px; + color: #34802a; + font-weight: 700; +} +.charity-box .charity-left dd:nth-child(3) .dd-item em{ + font-size: 16px; + color: #34802a; +} +.charity-box .charity-left dd:nth-child(3) .dd-item:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} + + +.charity-box .charity-left dd:nth-child(4){ + color: #999999; + text-align: center; + padding-bottom: 10px; +} +.charity-box .charity-left dd:nth-child(5){ + text-align: center; +} +.charity-box .charity-left dd:nth-child(5) a{ + color: #34802a; + font-weight: 600; +} +.charity-box .charity-right{ + width: 600px; +} +.charity-box .charity-right dl{ + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + height: 424px; + } +.charity-box .charity-right dt{ + padding-bottom: 35px; + +} +.charity-box .charity-right dd{ + color: #999999; + padding: 0 40px; +} + +.news{ + /* padding-bottom: 50px; */ +} +.news-box{ + display: flex; + justify-content: space-between; +} +.news-box-left{ + width: 416px; +} +.news-box-left a:hover{ + color: #34802a !important; +} +.news-box-left dl{ + +} +.news-box-left dt{ + width: 416px; + height: 274px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} + +.news-box-left dd{ + padding: 20px; + background-color: #f6f6f6; +} +.news-box-left dd p:nth-child(1){ + font-size: 16px; + height: 42px; + margin-bottom: 19px; +} +.news-box-left dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +.news-box-right{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + width: 850px; +} +.news-box-right a:hover{ + color: #34802a !important; +} +.news-box-right dl{ + background-color: #f6f6f6; + height: 122px; + width: 418px; + margin-bottom: 14px; +} +.news-box-right dt{ + padding: 20px 20px 0 20px; + height: 38px; + margin-bottom: 20px; +} + +.news-box-right dd:nth-child(1){ + font-size: 16px; + padding-bottom: 20px; +} +.news-box-right dd:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; + padding: 0 20px; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/info.css b/themes/huishou/exampleSite/static/assets/css/info.css new file mode 100644 index 0000000..b75a05f --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/info.css @@ -0,0 +1,308 @@ +.part1{ + height: 300px; + background-image: url(../images/banner.png); + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center top; + background-size: 100% 100%; +} +.part2 { + +} +.part2-tab-calss{ + display: flex; + margin-top: 12px; +} +.part2-tab-calss .class-right{ + +} +.part2-tab-calss .class-right ul{ + display: flex; + justify-content: left; + font-size: 14px; +} +.part2-tab-calss .class-right ul li{ + height: 20px; + line-height: 20px; +} +.part2-tab-calss .class-right ul li:hover{ + color: #50972c; + cursor: pointer; +} + +.part3 { + /*height: 1550px;*/ + + margin-top: 12px; + padding-bottom: 30px; +} +.part3-news{ + display: flex; + justify-content: space-between; +} +.part3-news-left{ + width: 960px; + background: #ffffff; + text-align: justify; +} +.part3-news-left .info-title{ + font-size: 24px; + font-weight: 600; + padding: 45px 85px 17px; + text-align: left; +} +.part3-news-left .part3-news-screen{ + padding-bottom: 25px; + font-size: 14px; + border-bottom: 1px solid #999; + margin: 0 85px; +} +.part3-news-screen ul{ + display: flex; + justify-content: left; + color: #777; +} +.part3-news-screen ul li{ + padding-right: 30px; +} + +.part3-news-left .info-remark{ + width: 750px; + /* height: 105px; */ + background-color: #fafafa; + margin: 0 auto; + margin-top: 20px; + padding: 20px; + font-size: 16px; + line-height: 26px; + color: #999; +} + +.part3-news-left .info-content{ + padding: 20px 85px; + font-size: 16px !important; + line-height: 30px !important; + color: #575d6c !important; + letter-spacing: 1px !important; + /*text-indent: 2em !important;*/ +} +.part3-news-left .info-content img{ + /*display: initial !important;*/ + /* height: 100% !important; */ + width: 100% !important; + /* max-width: 790px !important; */ +} +.part3-news-left .info-content p{ + margin-bottom: 15px !important; +} +.part3-news-right{ + width: 480px; + margin-left: 28px; +} +.news-right-banner{ + background-color: #fff; +} +.news-right-item{ + width: 440px; + background-color: #fff; + padding: 10px 20px; +} +.news_right_title{ + display: flex; + align-items: center; + justify-content: space-between; + font-size: 20px; + color: #333333; + font-weight: bold; + margin-bottom: 10px; +} +.news-right-item ul{ + padding-bottom: 30px; + border-bottom: 1px solid #595959; +} +.news-right-item ul li{ + margin-top: 26px; +} +.news-right-item ul li p:nth-child(1) { + width: 50px; + height: 20px; + line-height: 20px; + padding-left: 4px; + background-image: url(../images/i3.png); + background-repeat: no-repeat; + font-size: 14px; + color: #fff; + letter-spacing: 2px; +} +.news-right-item ul li p:nth-child(2) { + width: 375px; + line-height: 20px; + font-size: 15px; + color: #333; + margin-left: 10px; +} +.examine { + font-size: 15px; + color: #575d6c; + text-align: center; + margin-top: 24px; + cursor: pointer; +} + +.info-btn{ + margin: 0 85px; + text-align: center; + padding-bottom: 45px; + padding-top: 30px; +} +.info-btn .btn-dz{ + width: 140px; + border: 1px solid #34802a; + color: #34802a; + display: flex; + justify-content: center; + align-items: center; + border-radius: 25px; + font-size: 25px; + margin: 0 auto; + height: 50px; + cursor: pointer; +} +.info-btn .active{ + color: #ffffff; + background-color: #34802a; +} +.info-btn .btn-dz img{ + width: 35px; +} +.info-btn .btn-dz span{ + line-height: 40px; + height: 35px; + padding-left: 5px; +} + +.info-page ul{ + margin: 0 85px; + font-size: 16px; + background-color: #ffffff; + display: flex; + justify-content: space-between; + border-top: 1px solid #999; +} +.info-page ul li{ + color: #333333; + width: 375px; + padding: 20px 0; +} +.info-page ul li span{ + color: #777; + cursor: pointer; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + /*margin-top: 15px;*/ + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 2px solid #999; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 2px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -2px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 445px; + background-repeat: no-repeat; + background-position: center; + margin-bottom: 15px; + /*background-size: cover;*/ +} +/**********************内容右侧End**********************/ + + diff --git a/themes/huishou/exampleSite/static/assets/css/layui.css b/themes/huishou/exampleSite/static/assets/css/layui.css new file mode 100644 index 0000000..36bf38e --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/layui.css @@ -0,0 +1 @@ +blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{display:inline-block;border:none;vertical-align:middle}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h1,h2,h3{font-weight:400}h4,h5,h6{font-size:100%;font-weight:400}button,input,select,textarea{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:1.6;color:#333;color:rgba(0,0,0,.85);font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:0;line-height:0;margin:10px 0;padding:0;border:none!important;border-bottom:1px solid #eee!important;clear:both;overflow:hidden;background:0 0}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.layui-edge{position:relative;display:inline-block;vertical-align:middle;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent;overflow:hidden}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-show-v{visibility:visible!important}.layui-hide-v{visibility:hidden!important}@font-face{font-family:layui-icon;src:url(../fonts/iconfont.eot);src:url(../fonts/iconfont.eot) format('embedded-opentype'),url(../fonts/iconfont.woff2) format('woff2'),url(../fonts/iconfont.woff) format('woff'),url(../fonts/iconfont.ttf) format('truetype'),url(../fonts/iconfont.svg) 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-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{position:relative;width:1160px;margin:0 auto}.layui-header{position:relative;z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:relative;left:200px;right:0;top:0;bottom:0;z-index:900;width:auto;box-sizing:border-box}.layui-layout-body{overflow-x:hidden}.layui-layout-admin .layui-header{position:fixed;top:0;left:0;right:0;background-color:#23262e}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:absolute;top:60px;padding-bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;z-index:990;height:44px;line-height:44px;padding:0 15px;box-shadow:-1px 0 4px rgb(0 0 0 / 12%);background-color:#fafafa}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px;box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%)}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:"";display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:767.98px){.layui-container{padding:0 15px}.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:720px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:960px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1150px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:1.6;border-left:5px solid #5fb878;border-radius:0 2px 2px 0;background-color:#fafafa}.layui-quote-nm{border-style:solid;border-width:1px;border-left-width:5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:0;border-top-width:1px}.layui-field-box{padding:15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#eee}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5fb878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#5f5f5f}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#fafafa;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:1.6;color:#5f5f5f}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel{position:relative;border-width:1px;border-style:solid;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);background-color:#fff;color:#5f5f5f}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #eee;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-bg-red{background-color:#ff5722!important;color:#fff!important}.layui-bg-orange{background-color:#ffb800!important;color:#fff!important}.layui-bg-green{background-color:#009688!important;color:#fff!important}.layui-bg-cyan{background-color:#2f4056!important;color:#fff!important}.layui-bg-blue{background-color:#1e9fff!important;color:#fff!important}.layui-bg-black{background-color:#393d49!important;color:#fff!important}.layui-bg-gray{background-color:#fafafa!important;color:#5f5f5f!important}.layui-badge-rim,.layui-border,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-panel,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#eee}.layui-border{border-width:1px;border-style:solid;color:#5f5f5f!important}.layui-border-red{border-width:1px;border-style:solid;border-color:#ff5722!important;color:#ff5722!important}.layui-border-orange{border-width:1px;border-style:solid;border-color:#ffb800!important;color:#ffb800!important}.layui-border-green{border-width:1px;border-style:solid;border-color:#009688!important;color:#009688!important}.layui-border-cyan{border-width:1px;border-style:solid;border-color:#2f4056!important;color:#2f4056!important}.layui-border-blue{border-width:1px;border-style:solid;border-color:#1e9fff!important;color:#1e9fff!important}.layui-border-black{border-width:1px;border-style:solid;border-color:#393d49!important;color:#393d49!important}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.6;font-size:14px;color:#5f5f5f}.layui-text h1,.layui-text h2,.layui-text h3,.layui-text h4,.layui-text h5,.layui-text h6{font-weight:500;color:#333}.layui-text h1{font-size:32px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text h4{font-size:16px}.layui-text h5{font-size:14px}.layui-text h6{font-size:13px}.layui-text a:not(.layui-btn){color:#01aaed}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ol,.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text ol li{margin-top:5px;list-style-type:decimal}.layui-text em,.layui-word-aux{color:#999!important;padding-left:5px!important;padding-right:5px!important}.layui-text p{margin:15px 0}.layui-text p:first-child{margin-top:0}.layui-text p:last-child{margin-bottom:0}.layui-text blockquote:not(.layui-elem-quote){padding:5px 15px;border-left:5px solid #eee}.layui-text pre:not(.layui-code){padding:15px;font-family:Lucida Console,Consolas,Courier New;background-color:#fafafa}.layui-font-12{font-size:12px!important}.layui-font-14{font-size:14px!important}.layui-font-16{font-size:16px!important}.layui-font-18{font-size:18px!important}.layui-font-20{font-size:20px!important}.layui-font-red{color:#ff5722!important}.layui-font-orange{color:#ffb800!important}.layui-font-green{color:#009688!important}.layui-font-cyan{color:#2f4056!important}.layui-font-blue{color:#01aaed!important}.layui-font-black{color:#000!important}.layui-font-gray{color:#c2c2c2!important}.layui-btn{display:inline-block;vertical-align:middle;height:38px;line-height:38px;border:1px solid transparent;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border-radius:2px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{padding:0 2px;vertical-align:middle\0;vertical-align:bottom}.layui-btn-primary{border-color:#d2d2d2;background:0 0;color:#5f5f5f}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1e9fff}.layui-btn-warm{background-color:#ffb800}.layui-btn-danger{background-color:#ff5722}.layui-btn-checked{background-color:#5fb878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border-color:#eee!important;background-color:#fbfbfb!important;color:#d2d2d2!important;cursor:not-allowed!important;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:12px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#d2d2d2;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #d2d2d2}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;color:rgba(0,0,0,.85);border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#eee!important}.layui-input:focus,.layui-textarea:focus{border-color:#d2d2d2!important}.layui-textarea{position:relative;min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{position:relative;float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block,.layui-input-inline{position:relative}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{position:relative;float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#ff5722!important}.layui-form-select{position:relative}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #eee;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f6f6f6;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5fb878;color:#fff}.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.layui-form-selected .layui-edge{margin-top:-3px\0}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;display:inline-block;vertical-align:middle;height:30px;line-height:30px;margin-right:10px;padding-right:30px;background-color:#fff;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox *{display:inline-block;vertical-align:middle}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5fb878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5fb878}.layui-form-checked i,.layui-form-checked:hover i{color:#5fb878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#5f5f5f}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5fb878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5fb878!important;background-color:#5fb878;color:#fff}.layui-checkbox-disabled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2!important}.layui-form-checked.layui-checkbox-disabled[lay-skin=primary] i{background:#eee!important;border-color:#eee!important}.layui-checkbox-disabled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;display:inline-block;vertical-align:middle;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5fb878;background-color:#5fb878}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disabled{border-color:#eee!important}.layui-checkbox-disabled span{background-color:#eee!important}.layui-checkbox-disabled i{border-color:#eee!important}.layui-checkbox-disabled em{color:#d2d2d2!important}.layui-checkbox-disabled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio{display:inline-block;vertical-align:middle;line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{display:inline-block;vertical-align:middle;font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio:hover *,.layui-form-radioed,.layui-form-radioed>i{color:#5fb878}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled *{color:#c2c2c2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#fafafa;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0;border-right-width:1px}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto!important;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #eee}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;border-radius:2px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393d49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#eee;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #eee}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{display:inline-block;width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{display:inline-block;vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;margin:10px 0;background-color:#fff;color:#5f5f5f}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr{background-color:#fafafa}.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#eee}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0;border-bottom-width:1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0;border-right-width:1px}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:50px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:30px;line-height:20px;padding-top:5px;padding-right:5px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view{margin:10px 0}.layui-table-view .layui-table{position:relative;width:auto;margin:0;border:0;border-collapse:separate}.layui-table-view .layui-table[lay-skin=line]{border-width:0;border-right-width:1px}.layui-table-view .layui-table[lay-skin=row]{border-width:0;border-bottom-width:1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0;border-bottom-width:1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-column{position:relative;width:100%;min-height:41px;padding:8px 16px;border-width:0;border-bottom-width:1px}.layui-table-column .layui-btn-container{margin-bottom:-8px}.layui-table-column .layui-btn-container .layui-btn{margin-right:8px;margin-bottom:8px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-tool-panel li{padding:0 10px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%}.layui-table-tool-panel li:hover{background-color:#f6f6f6}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{padding-left:28px}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0;border-left-width:1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#5f5f5f}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#5f5f5f}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:38px;line-height:28px;padding:6px 15px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01aaed}.layui-table-cell .layui-btn{vertical-align:inherit}.layui-table-cell[align=center]{-webkit-box-pack:center}.layui-table-cell[align=right]{-webkit-box-pack:end}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{text-align:center;-webkit-box-pack:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:30px 15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0;border-left-width:1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0;border-bottom-width:1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-total{margin-bottom:-1px;border-width:0;border-top-width:1px;overflow:hidden}.layui-table-page{z-index:880;border-width:0;border-top-width:1px;margin-bottom:-1px;white-space:nowrap;overflow:hidden}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-11px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-pagebar{float:right;line-height:23px}.layui-table-pagebar .layui-btn-sm{margin-top:-1px}.layui-table-pagebar .layui-btn-xs{margin-top:2px}.layui-table-view select[lay-ignore]{display:inline-block}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;z-index:900;min-width:100%;min-height:100%;padding:5px 14px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15);background-color:#fff}.layui-table-edit:focus{border-color:#5fb878!important}input.layui-input.layui-table-edit{height:100%}select.layui-table-edit{padding:0 0 0 10px;border-color:#d2d2d2}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0;border-left-width:1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-49px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#5f5f5f}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#5f5f5f;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-list{margin:10px 0}.layui-upload-choose{max-width:200px;padding:0 10px;color:#999;font-size:14px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-upload-drag{position:relative;display:inline-block;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-form{display:inline-block}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;display:inline-block;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-btn-container .layui-upload-choose{padding-left:0}.layui-menu{position:relative;margin:5px 0;background-color:#fff;box-sizing:border-box}.layui-menu *{box-sizing:border-box}.layui-menu li,.layui-menu-body-title a{padding:5px 15px}.layui-menu li{position:relative;margin:1px 0;width:calc(100% + 1px);line-height:26px;color:rgba(0,0,0,.8);font-size:14px;white-space:nowrap;cursor:pointer;transition:all .3s}.layui-menu li:hover{background-color:#f6f6f6}.layui-menu-item-parent:hover>.layui-menu-body-panel{display:block;animation-name:layui-fadein;animation-duration:.3s;animation-fill-mode:both;animation-delay:.2s}.layui-menu-item-group .layui-menu-body-title,.layui-menu-item-parent .layui-menu-body-title{padding-right:25px}.layui-menu .layui-menu-item-divider:hover,.layui-menu .layui-menu-item-group:hover,.layui-menu .layui-menu-item-none:hover{background:0 0;cursor:default}.layui-menu .layui-menu-item-group>ul{margin:5px 0 -5px}.layui-menu .layui-menu-item-group>.layui-menu-body-title{color:rgba(0,0,0,.35);user-select:none}.layui-menu .layui-menu-item-none{color:rgba(0,0,0,.35);cursor:default}.layui-menu .layui-menu-item-none{text-align:center}.layui-menu .layui-menu-item-divider{margin:5px 0;padding:0;height:0;line-height:0;border-bottom:1px solid #eee;overflow:hidden}.layui-menu .layui-menu-item-down:hover,.layui-menu .layui-menu-item-up:hover{cursor:pointer}.layui-menu .layui-menu-item-up>.layui-menu-body-title{color:rgba(0,0,0,.8)}.layui-menu .layui-menu-item-up>ul{visibility:hidden;height:0;overflow:hidden}.layui-menu .layui-menu-item-down:hover>.layui-menu-body-title>.layui-icon,.layui-menu .layui-menu-item-up>.layui-menu-body-title:hover>.layui-icon{color:#000}.layui-menu .layui-menu-item-down>ul{visibility:visible;height:auto}.layui-menu .layui-menu-item-checked,.layui-menu .layui-menu-item-checked2{background-color:#f6f6f6!important;color:#5fb878}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#5fb878}.layui-menu .layui-menu-item-checked:after{position:absolute;right:0;top:0;bottom:0;border-right:3px solid #5fb878;content:""}.layui-menu-body-title{position:relative;overflow:hidden;text-overflow:ellipsis}.layui-menu-body-title a{display:block;margin:-5px -15px;color:rgba(0,0,0,.8)}.layui-menu-body-title a:hover{transition:all .3s}.layui-menu-body-title>.layui-icon{position:absolute;right:0;top:0;font-size:14px}.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-menu-body-title>.layui-icon-right{right:-1px}.layui-menu-body-panel{display:none;position:absolute;top:-7px;left:100%;z-index:1000;margin-left:13px;padding:5px 0}.layui-menu-body-panel:before{content:"";position:absolute;width:20px;left:-16px;top:0;bottom:0}.layui-menu-body-panel-left{left:auto;right:100%;margin:0 13px 0}.layui-menu-body-panel-left:before{left:auto;right:-16px}.layui-menu-lg li{line-height:32px}.layui-menu-lg .layui-menu-body-title a:hover,.layui-menu-lg li:hover{background:0 0;color:#5fb878}.layui-menu-lg li .layui-menu-body-panel{margin-left:14px}.layui-menu-lg li .layui-menu-body-panel-left{margin:0 15px 0}.layui-dropdown{position:absolute;left:-999999px;top:-999999px;z-index:77777777;margin:5px 0;min-width:100px}.layui-dropdown:before{content:"";position:absolute;width:100%;height:6px;left:0;top:-6px}.layui-nav{position:relative;padding:0 20px;background-color:#393d49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar{content:"";position:absolute;left:0;top:0;width:0;height:5px;background-color:#5fb878;transition:all .2s;-webkit-transition:all .2s;pointer-events:none}.layui-nav-bar{z-index:1000}.layui-nav[lay-bar=disabled] .layui-nav-bar{display:none}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{position:absolute;top:0;right:3px;left:auto!important;margin-top:0;font-size:12px;cursor:pointer;transition:all .2s;-webkit-transition:all .2s}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{transform:rotate(180deg)}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #eee;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#5f5f5f;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#f6f6f6;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#f6f6f6;color:#000}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-child-r{left:auto;right:0}.layui-nav-child-c{text-align:center}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:40px}.layui-nav-tree .layui-nav-item a{position:relative;height:40px;line-height:40px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item>a{padding-top:5px;padding-bottom:5px}.layui-nav-tree .layui-nav-more{right:15px}.layui-nav-tree .layui-nav-item>a .layui-nav-more{padding:5px 0}.layui-nav-tree .layui-nav-bar{width:5px;height:0}.layui-side .layui-nav-tree .layui-nav-bar{width:2px}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-bar{background-color:#009688}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child dd{margin:0}.layui-nav-tree .layui-nav-child a{color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child{display:block;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5fb878!important}.layui-breadcrumb a cite{color:#5f5f5f;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block;padding:0 15px;margin:0 -15px}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:"";width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#eee;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:15px 0}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#ff5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5fb878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#fafafa}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5fb878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5fb878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#ff5722}.layui-timeline-item:before{content:"";position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:first-child:before{display:block}.layui-timeline-item:last-child:before{display:none}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px;line-height:22px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#ff5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#5f5f5f}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-5px 6px 0}.layui-nav .layui-badge{margin-top:-10px}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\0;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:none 0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\0;opacity:1;left:20px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#eee;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9f9f9f;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#5f5f5f;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #d9d9d9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:12px}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#eee}.layui-transfer-box{position:relative;display:inline-block;vertical-align:middle;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#5f5f5f}.layui-transfer-active{margin:0 15px;display:inline-block;vertical-align:middle}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5fb878;border-color:#5fb878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#fbfbfb;border-color:#eee;color:#d2d2d2}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f6f6f6;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#ffb800}.layui-rate li i.layui-icon{margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#fff;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;left:-999999px;top:-999999px;z-index:77777777;width:280px;margin:5px 0;padding:7px;background:#fff;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #fff;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#ff0,#0f0,#0ff,#00f,#f0f,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#5f5f5f}.layui-slider{height:4px;background:#eee;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#fff;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:77777777;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:"";position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #eee;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-14px}.layui-slider-input-btn{position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #eee}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #eee}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:33px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:"";position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{display:inline-block;vertical-align:middle;cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:"";position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{display:inline-block;vertical-align:middle;position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#5f5f5f}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:"";position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-spread>.layui-tree-entry .layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#5f5f5f}.layui-tree-btnGroup{visibility:hidden;display:inline-block;vertical-align:middle;position:relative}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{position:relative;display:inline-block;vertical-align:middle;height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;animation-duration:.3s;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .2s;-webkit-transition:all .2s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,15px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,15px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@keyframes layui-down{0%{opacity:.3;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-down{animation-name:layui-down}@keyframes layui-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-downbit{animation-name:layui-downbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@keyframes layui-scalesmall{0%{opacity:.3;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall{animation-name:layui-scalesmall}@keyframes layui-scalesmall-spring{0%{opacity:.3;transform:scale(1.5)}80%{opacity:.8;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall-spring{animation-name:layui-scalesmall-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/news.css b/themes/huishou/exampleSite/static/assets/css/news.css new file mode 100644 index 0000000..b4e9352 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/news.css @@ -0,0 +1,298 @@ +/*头部轮播推荐*/ +.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{ + width: 140px; + right: 0; + left: unset; + bottom: 20px; +} +.swiper-news .swiper-pagination-bullet{ + background: #ffffff; + opacity: unset; + width: 12px; + height: 12px; +} +.swiper-news .swiper-pagination-bullet-active { + background-color: #469914; +} +.swiper-news{ + height: 415px; +} +.swiper-news .swiper-slide{ + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} +.swiper-news .swiper-slide span{ + position: absolute; + bottom: 20px; + left: 10px; + color: #ffffff; + font-size: 20px; + width: 490px; + z-index: 1; +} +.news-top{ + display: flex; + justify-content: space-between; + margin-top: 20px; +} +.top-swiper{ + width: 640px; + height: 415px; +} +.top-item{ + display: flex; + flex-flow: wrap; + width: 625px; + height: 415px; + justify-content: space-between; +} +.top-item dl{ + width: 305px; + height: 200px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.top-item dl dd{ + font-size: 18px; + color: #ffffff; + position: absolute; + bottom: 10px; + width: 285px; + margin: 0 10px; + z-index: 1; +} + +.mask{ + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient(180deg,rgba(0,0,0,.05) 5%,rgba(0,0,0,.65)); + transition: .5s; +} + +/*内容*/ +.news-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 50px; +} +.box-left{ + margin-top: 15px; +} +.box-list{ + width: 960px; +} +.box-left .box-tab{ + margin-bottom: 15px; +} +.box-left .box-tab ul{ + background-color: #ffffff; + display: flex; + position: relative; +} +.box-left .box-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; + margin: 0 15px; + +} +.box-left .box-tab .active{ + border-bottom: 3px solid #50972c; +} +.box-left .box-tab .active-1{ + color: #50972c; + font-weight: 700; +} +.box-left .box-tab ul li em{ + position: absolute; + top: 12px; + right: 0; + height: 21px; + width: 2px; + background: #999; +} +.box-content{ + min-height: 500px; +} +.box-content a:hover{ + color: unset; +} +.box-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + margin-bottom: 15px; +} +.box-list dl:hover{ + box-shadow: 0 0 5px 3px #e8e8e8; +} +.box-list dt{ + width: 260px; + height: 180px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; + margin: 15px; +} +.box-list dd{ + width: 630px; + margin: 15px 10px; + display: flex; + flex-flow: column; + justify-content: center; + padding-right: 20px; +} +.box-list dd p:nth-child(1){ + font-size: 20px; + padding-bottom: 10px; +} +.box-list dd p:nth-child(2){ + font-size: 14px; + height: 54px; + line-height: 26px; + margin-bottom: 30px; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + letter-spacing: 1px; + color: #777; +} +.box-list dl .item-bottom{ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #777; +} + +.box-list dl .item-bottom span{ + background-color: #f3f2f2; + /* padding: 7px 12px; */ + margin-right: 10px; + width: 80px; + height: 30px; + line-height: 30px; + display: inline-block; + text-align: center; +} +.box-list dl .item-bottom span:hover{ + color: #50972c; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + margin-top: 15px; + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 3px solid #f3f2f2; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 3px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -3px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 461px; + background-repeat: no-repeat; + background-position: center; + background-size: cover; +} +/**********************内容右侧End**********************/ diff --git a/themes/huishou/exampleSite/static/assets/css/product-detail.css b/themes/huishou/exampleSite/static/assets/css/product-detail.css new file mode 100644 index 0000000..d46056c --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/product-detail.css @@ -0,0 +1,258 @@ +/*主图主结构*/ +.preview-wrap{width: 450px; } +.preview-wrap #magnifier-wrap{position: relative; width: 450px;} +.preview-wrap #magnifier-wrap > span{cursor: not-allowed;position: absolute; bottom: 0; width: 20px; height: 75px; line-height: 75px; text-align: center;border: 1px solid #e5e5e5;} +.preview-wrap #magnifier-wrap > span.ns-text-color-gray{cursor: pointer;} +.preview-wrap #magnifier-wrap .spec-left-btn{left: 0;} +.preview-wrap #magnifier-wrap .spec-right-btn{right: 0;} + + +/*显示图*/ +.preview-wrap #magnifier-wrap .magnifier-main{position: relative; width: 450px; height: 450px; line-height: 450px; text-align: center;} +.preview-wrap #magnifier-wrap .magnifier-main img{width: 100%;height:100% } +.preview-wrap #magnifier-wrap .magnifier-drag{position: absolute; top: 0; left: 0; background-color: #fede4f; opacity: 0.4; filter: alpha(opacity=40); cursor: move;} +.preview-wrap #magnifier-wrap .magnifier-pop{position: absolute; top: 0; overflow: hidden; background: #fff url(../images/loading.gif) no-repeat center center; z-index: 99;} +/*組合图*/ +.preview-wrap #magnifier-wrap .spec-items{position: relative; width: 550px; height: 90px; overflow: hidden; margin: 0 auto;} +.preview-wrap #magnifier-wrap .spec-items ul{ +position: absolute; +top: 15px; +left: 0; +display: flex; +} +.preview-wrap #magnifier-wrap .spec-items ul *{-webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s;} +.preview-wrap #magnifier-wrap .spec-items li{ +width: 75px; +height: 73px; +overflow: hidden; +margin-right: 5px; +border: 1px solid #999; +cursor: pointer; +opacity: .5; +display: flex; +flex-flow: column; +align-items: center; +text-align: center; +justify-content: center; +} +.preview-wrap #magnifier-wrap .spec-items li.ns-border-color-gray{border: 1px solid #e5e5e5; opacity: 1} +.preview-wrap #magnifier-wrap .spec-items li img{width: 100%;} + +/*隐藏放大*/ +.mag-target-img {position: absolute;top: 0;left: 0;} +.info-left .preview-wrap {width: 600px;} +.info-left .preview-wrap #magnifier-wrap .magnifier-main{width: 600px;height: 450px;line-height: 450px;} +.info-left .preview-wrap #magnifier-wrap{width: 600px;} +.info-left .basic-info-wrap {float:left;width:645px;margin-left: 10px;} + + +/*头部导航标题*/ +.product-nav-txt{ + height: 30px; + line-height: 30px; + padding: 12px 0; + display: flex; +} + +.product-nav-txt .arrow{ + margin: 0 7px; + font-family: sans-serif; + color: #8c8c8c; +} + +.product-nav-txt .finish{ + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/*主体头部*/ +.product-info{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; + margin-bottom: 20px; +} +.product-info .info-left{ + width: 600px; +} +.product-info .info-right{ + width: 570px; + padding: 0 55px; + display: flex; + flex-flow: column; + justify-content: center; +} +.info-right .info-title{ + +} +.info-right .info-title p:nth-child(1){ + font-size: 22px; + font-weight: 700; + padding-bottom: 15px; +} +.info-right .info-title p:nth-child(2){ + font-size: 14px; + color: #999; + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3) em{ + color: #d90114; +} +.info-right .info-title p:nth-child(3) .price{ + font-size: 36px; + color: #d90114; +} +.info-right .info-title p:nth-child(3) .freight{ + border: 1px solid #999; + padding: 2px; + margin: 0 20px; + font-size: 12px; +} +.info-right .info-title p:nth-child(3) del{ + color: #999; +} +.info-right .info-title p:nth-child(4){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(5){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(6){ + padding-bottom: 20px; +} +.info-right .info-button{ + display: flex; + font-size: 20px; + border-bottom: 1px solid #f5f5f5; + padding-bottom: 40px; + margin-bottom: 20px; +} +.info-right .info-button .btn-zx{ + width: 160px; + height: 46px; + background-color: #d90114; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + margin-right: 10px; + cursor: pointer; +} +.info-right .info-button .btn-yy{ + width: 160px; + height: 46px; + background-color: #458122; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; +} +.info-right .info-desc{ + +} +.info-right .info-desc p:nth-child(1){ + padding-bottom: 20px; +} +.info-right .info-desc p:nth-child(1) span{ + color: #458122; +} +.info-right .info-desc p:nth-child(2){ + color: #999; + line-height: 22px; +} + +/*商品详情*/ +.product-detail{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; +} +.product-detail .detail-left{ + width: 600px; +} +.product-detail .detail-left-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-detail .detail-left ul{ + height: 177px; + color: #555; + display: flex; + flex-flow: column; + /*justify-content: space-between;*/ +} +.product-detail .detail-left ul li{ + list-style: disc; + list-style-position: inside; + height: 35px; + line-height: 35px; +} +.detail-right{ + width: 600px; +} +.detail-right .detail-right-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.detail-right .detail-right-param{ + display: flex; + flex-flow: wrap; + color: #555; + border-right: 1px solid #999; + border-bottom: 1px solid #999; +} +.detail-right .detail-right-param dl{ + width: 298.5px; + height: 43px; + display: flex; + align-items: center; + border-top: 1px solid #999; + border-left: 1px solid #999; +} +.detail-right .detail-right-param dt{ + width: 70px; + height: 44px; + line-height: 44px; + text-align: center; + border-right: 1px solid #999; +} +.detail-right .detail-right-param dd{ + height: 44px; + width: 199px; + line-height: 44px; + padding-left: 30px; +} + +/*商品图片详情*/ +.product-img{ + background-color: #fff; + padding: 0 30px; +} +.product-img .img-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-img .img-detail{ + display: flex; + flex-flow: wrap; + justify-content: space-between; +} +.product-img .img-detail .img-detail-li{ + width: 600px; + height: 450px; + padding-bottom: 20px; +} +.product-img .img-detail img{ + width: 100%; +} diff --git a/themes/huishou/exampleSite/static/assets/css/product.css b/themes/huishou/exampleSite/static/assets/css/product.css new file mode 100644 index 0000000..634aaa9 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/product.css @@ -0,0 +1,172 @@ +.crumbs-nav{ height:30px; line-height:30px; padding:12px 0;display: flex;justify-content: space-between;} +.crumbs-nav span{ color:#8c8c8c; float:left;} +.crumbs-nav-item{ float:left; margin-right:7px; position:relative;} +.crumbs-nav-item .arrow{ font-family: simsun;} +.crumbs-nav-item a span{ color:#555;} +.crumbs-nav-item .menu-drop{ float:left; margin-right:7px; background-color:#fff;} +.crumbs-nav-item .icon-right{ font-size:12px;} +.cn-goodsName{ width:300px; display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; float:left; color:#8c8c8c;} + +.crumbs-nav span.arrow{ margin:0 7px; font-family:sans-serif; color:#8c8c8c;} +.crumbs-nav span.finish{ display:inline-block; width:300px; height:25px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;} + +.selector{ background-color:#fff; margin-bottom:15px;} +.selector .s-line{ border:1px dotted #d2d2d2; margin-top:-1px;} +.selector .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.selector .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.selector .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.selector .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.selector .s-l-v-list li{ float:left; width:100px; overflow:hidden; margin-right:10px;} +.selector .s-l-v-list li.curr a,.selector .s-l-v-list li a.shaixuan{ color:#f42424;} + +.selector .s-l-opt{ position:absolute; top:10px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.selector .s-l-opt a{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c;} +.selector .s-l-opt a:hover{ border-color:#f42424; color:#f42424;} +.selector .s-l-opt a .iconfont{ font-size:12px; float:left; margin-top:2px;} +.selector .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.selector .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.selector .s-l-opt .s-l-multiple{ padding:0 5px;} +.selector .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#f42424;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} + + +/*产品内容*/ +.product-tab{ + display: flex; + justify-content: space-between; + border-bottom: 1px solid #f0f0f0; + margin-bottom: 20px; + padding-bottom: 7px; + padding-left: 5px; +} +.tab-left{ + display: flex; + font-size: 22px; + justify-content: center; + align-items: center; + flex-flow: wrap; +} +.tab-left .selected-txt{ + font-weight: 700; +} +.tab-left .selected{ + width: 100%; + height: 2px; + background-color: #50972c; + position: absolute; + bottom: -7px; + left: 0; +} +.tab-left p:nth-child(1){ + position: relative; +} +.tab-left p:nth-child(2){ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 15px; +} +.tab-left p:nth-child(3){ + position: relative; +} +.tab-left img{ + position: absolute; + right: -30px; + top: 0; +} +.tab-right{ + font-size: 14px; +} +.tab-right .selected{ + color: #50972c; +} +.tab-right .tab-line{ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 10px; +} +.tab-right ul{ + display: flex; + flex-flow: wrap; + align-items: center; + height: 100%; +} +.tab-right ul li{ + display: flex; + align-items: center; +} +.scheme_right { + /*width: 1067px;*/ +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} +.scheme_right li { + width: 242px; + height: 292px; + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right .margin-rb{ + margin: 0 15px 15px 0; +} +.scheme_right li .scheme_li{ + width: 212px; + height: 277px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 212px; + height: 159px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} +#goods-page{ + text-align: center; + padding: 20px 0;; +} + + diff --git a/themes/huishou/exampleSite/static/assets/css/select.css b/themes/huishou/exampleSite/static/assets/css/select.css new file mode 100644 index 0000000..a3654c4 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/select.css @@ -0,0 +1,117 @@ +/*商品筛选功能*/ +.right-extra{ width:100%; position:relative; background-color:#fff; margin-bottom:15px;} +.right-extra .u_cloose{ border:1px dashed #d2d2d2; height:25px; padding:12px 12px 12px 30px;} +.right-extra .u_cloose dl{ color:#8c8c8c;} +.right-extra .u_cloose dt{ float:left; line-height:25px;} +.right-extra .u_cloose dd{ float:left;} +.right-extra .u_cloose dd .get_item{ position:relative; height:23px; line-height:23px; border:1px dotted #d2d2d2; padding:0 0 0 8px; margin-right:10px; float:left;} +.right-extra .u_cloose dd .get_item b{ font-weight:normal;} +.right-extra .u_cloose dd .get_item em{ color:#50972c;} +.right-extra .u_cloose dd .get_item a{ + color: #50972c !important; +} +.right-extra .u_cloose dd .get_item:hover a{ background-color:#50972c; color: #ffffff !important;} +.right-extra .u_cloose dd .get_item:hover{ border-color:#50972c;} + +.right-extra .u_cloose .give_up_all{ float:right; margin-right:0; line-height:25px;} + +.screen-item .s-line{ border:1px dashed #d2d2d2; margin-top:-1px;} +.screen-item .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.s-line .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.s-line .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.s-line .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.brand_select_more{ max-height:111px; position:relative;} + +.extend .brand_select_more{ min-height:111px; height:auto;} + +.extend .ps-container>.ps-scrollbar-y-rail, +.extend .ps-container>.ps-scrollbar-x-rail, +.extend .ps-container:hover>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-x-rail, +.multiple .ps-container:hover>.ps-scrollbar-y-rail{ opacity:1; filter: alpha(opacity=100);} + +/*品牌*/ +.wrap_brand .brand_div{ overflow:hidden; zoom:1;padding-top: 1px;} +.wrap_brand .brand_img_word{ float:left; width:110px; height:40px; border:1px solid #ddd; margin:-1px -1px 0 0; background-color:#fff; position:relative; text-align:center;} +.wrap_brand .brand_img_word a{ display:block; width:110px; height:40px; line-height:40px; zoom:1; overflow:hidden;} +.wrap_brand .brand_img_word span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; width:100%; display:block;} +.wrap_brand .brand_img_word img{ width:118px; height:52px;} +.wrap_brand .brand_img_word:hover{ position:relative; z-index:5; border-color:#50972c;} +.wrap_brand .brand_img_word:hover a{ border-color:#50972c;color:#50972c;} +.wrap_brand .brand_img_word:hover .logo{ display:none;} +.wrap_brand .brand_img_word i{ display:none; width:12px; height:12px; background:url(../images/dsc-icon.png) no-repeat; position:absolute; top:1px; right:1px;} +.brand_img{ + height: 28px; + overflow: hidden; +} + +.brand_auto .brand_range{ float:left; margin-right:30px;} +.brand_auto .brand_range a:hover{color:#50972c;} + +/*类型*/ +.type_auto .type_range{ float:left; margin-right:30px;} +.type_auto .type_range a:hover{color:#50972c;} + +/*地区*/ +.area_auto .area_range{ float:left; margin-right:30px;} +.area_auto .area_range a:hover{color:#50972c;} + +/*成色*/ +.new_auto .new_range{ float:left; margin-right:30px;} +.new_auto .new_range a:hover{color:#50972c;} + +/*颜色*/ +.s-l-value .color_list_color{ margin:4px 0;} +.s-l-value .color_list_color .color_divdd{ width:auto; height:auto; margin-right:20px; display:inline-block; float:left;} +.s-l-value .color_list_color .color_divdd dd{ height:20px; width:20px; text-align:center; line-height:20px; margin-right:0; position:relative;} +.s-l-value .color_list_color .color_divdd dd span{ height:18px; width:18px; display:block; border:1px solid #dcdcdc;} + +.screen-item .selected{ + font-weight: 700; + color: #50972c !important; +} + +/*操作*/ +.s-line .s-l-opt{ position:absolute; top:15px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.s-line .s-l-opt div{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c; cursor:pointer;} +.s-line .s-l-opt div:hover{ border-color:#50972c; color:#50972c;} +.s-line .s-l-opt div .iconfont{ font-size:12px; float:left; margin-top:1px;} +.s-line .s-l-opt div .icon-reduce{ margin-top:1px;} + +.s-line .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.s-line .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.s-line .s-l-opt .s-l-multiple{ padding:0 5px; float:right;} +.s-line .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +/*属性*/ +.s-l-value .item_list{ overflow:hidden;} +.s-l-value .item_list dd{ float:left; margin-right:40px; width:auto; height:28px; white-space:nowrap;} +.s-l-value .item_list dd strong{ font-weight:normal;} +.s-l-value .item_list .get_me a{ cursor:pointer;} +.s-l-value .item_list .get_me span{ background: url(../images/checkbox_12x12.png) no-repeat; display: block; float: left; height: 12px; margin:9px 5px 0 0; width: 12px;} +.s-l-value .item_list .selected span{ background: url(../images/checked_12x12.png) no-repeat;} + +.tw_buttom{ text-align:center; padding:10px 0 5px; display:none;} +.tw_buttom span{ width:48px; height:23px; line-height:23px; border:1px solid #d2d2d2; background-color:#fff; color:#8c8c8c; display:inline-block; font-size:12px; cursor:pointer;} +.tw_buttom .sure{ background-color:#50972c; border-color:#50972c; color:#fff; margin-right:10px;} +.tw_buttom .disabled{ display:none;} + +/*更多选项*/ +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#50972c;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} +.s-more strong{ font-weight:normal;} + + + +.multiple .all_a_z, +.multiple .zimu_list, +.multiple .enter_yes_no, +.multiple .tw_buttom{ display:block;} +.multiple .wrap_brand{ display:none;} + +.ohide{ height:28px;} +.extend .ohide,.multiple .ohide{ height:auto;} +.same_li .s-l-opt .choose_open{ display:none;} diff --git a/themes/huishou/exampleSite/static/assets/css/style.min.css b/themes/huishou/exampleSite/static/assets/css/style.min.css new file mode 100644 index 0000000..8000876 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/style.min.css @@ -0,0 +1,703 @@ +html { + height: 100%; + width: 100%; + font-size: 16px; +} + +* { -webkit-user-select: none; } + +body, +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +code, +form, +fieldset, +legend, +input, +textarea, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; +} + +body { + width: 100%; + height: 100%; + font-family: "Microsoft Yahei"; + color: #000; + background-color: #fff; +} + +strong { + font-weight: bold; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; + font-weight: bold; + ; +} + +section, +header, +article, +time, +nav, +footer, +figure, +figcaption { + display: block; + margin: 0; + padding: 0; +} + +input:focus, +a:focus { + outline: none; +} + +fieldset, +img { + display: block; + border: 0; +} + +ol, +ul { + list-style: none; +} + +caption, +th { + text-align: left; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; +} + +q:before, +q:after { + content: ''; +} + +em { + font-style: normal +} + +abbr, +acronym { + border: 0; + font-variant: normal; +} + +sup { + vertical-align: text-top; +} + +sub { + vertical-align: text-bottom; +} + +button, +input, +textarea, +select { + font-family: tahoma, arial, simsun, sans-serif; + font-size: inherit; + font-weight: inherit; + line-height: 1.5; + vertical-align: middle; +} + +button, +input, +textarea, +select { + *font-size: 100%; +} + +textarea { + resize: none; +} + +legend { + color: #000; +} + +a { + vertical-align: baseline; + cursor: pointer; + color: #000; +} + +a, +a:visited { + text-decoration: none; +} + +/* 公共css */ +.wrap { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.w1578{ + width: 1578px; + margin: 0 auto; +} +.w1200{ + width: 1200px; + margin: 0 auto; +} +.w1280{ + width: 1280px; + margin: 0 auto; +} + +.shangqiao{ + cursor: pointer; +} + +.flexR{ + display: flex; +} + +.flexRC{ + display: flex; + justify-content: center; + align-items: center; +} + +.flexW{ + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-content: space-between; +} + +.flexC{ + display: flex; + flex-direction: column; +} +.flexCC{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.flexCB{ + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; +} + +[v-cloak] { + display: none !important; +} + +section { + margin-top: 70px; + flex: 1; + letter-spacing: .43px; +} + +#cnzz_stat_icon_1262038122{ + display: none; +} +#cnzz_stat_icon_1262038122 img{ + width: 0; + height: 0; +} + +.color-green{ + color: #50972c; +} + +.color-grey{ + color: #9a9a9a; +} +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + + +/*右侧导航*/ +.rightMenu{ + display: block; + width: 66px; + height: auto; + position: fixed; + top: 40%; + right: 30px; + z-index: 90; + box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08); +} +.rightMenu li{ + height: 76px; + background: #fff; + position: relative; + text-align: center; + font-size: 12px; + color: #666666; + line-height: 20px; +} +.rightMenu li>a{ + display: block; + width: 100%; + height: 100%; + position: relative; + color: #666666; + text-align: center; + padding-top: 15px; +} +.rightMenu li::after{ + content: ""; + display: block; + width: 40px; + height: 1px; + background: #ebebeb; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -20px; +} +.rightMenu li:last-child::after{ + display: none; +} +.rightMenu li span{ + display: block; + width: 100%; + height: 26px; + margin: 0 auto 7px; + text-align: center; +} +.rightMenu li span img{ + display: block; + margin: 0 auto; +} +.rightMenu li span .img2{ + display: none; +} +.rightMenu li em{ + display: block; + width: 20px; + height: 20px; + text-align: center; + line-height: 20px; + border-radius: 50%; + overflow: visible; + position: absolute; + top: 5px; + right: 8px; + background: #50982c; + color: #fff; + font-size: 12px; +} +.rightMenu li:hover em{ + background: #b2d600; + color: #50982c; +} +.rightMenu li:hover{ + background: #50982c; +} +.rightMenu li:hover::after{ + display: none; +} +.rightMenu li:hover a{ + color: #fff; +} +.rightMenu li:hover span .img1{ + display: none; +} +.rightMenu li:hover span .img2{ + display: block; +} +.rightMenu li.zhiding a{ + padding-top: 14px; +} +.rightMenu li.zhiding span{ + margin: 0; +} + +.rightMenu li:nth-child(1){ + +} + +.rightMenu .rightMenu-show{ + display: none; + position: absolute; + left: -150px; + top: 0; + background-color: #ffffff; + padding: 10px 0; + width: 150px; + height: 56px; + line-height: 30px; + box-shadow: -5px 0px 10px 0 rgb(0 0 0 / 8%); +} +.rightMenu .rightMenu-show p:nth-child(1){ + font-size: 20px; + font-weight: 700; + color: #50972d; + /*padding-bottom: 10px;*/ +} + +/*底部悬浮表单*/ +.footerForm{ + display: block; + width: 100%; + height: 110px; + position: fixed; + bottom: -80px; + left: 0; + z-index: 90; +} +.footerForm-in{ + position: relative; + text-align: center; + font-size: 0; + height: 80px; + padding: 20px 0; +} +.footerForm-in span{ + font-size: 26px; + color: #fbc35d; + line-height: 40px; + margin-right: 90px; + display: inline-block; +} +.footerForm-in input{ + display: inline-block; + vertical-align: top; + width: 260px; + height: 40px; + border-radius: 4px; + background: #fff; + margin-right: 10px; + padding: 0 16px; + font-size: 14px; + color: #333; +} +.footerForm-in button{ + display: inline-block; + vertical-align: top; + width: 110px; + height: 40px; + border-radius: 4px; + background: #50982c; + text-align: center; + font-size: 14px; + color: #fff; + border: none; +} +.footerForm-kefu{ + display: inline-block; + vertical-align: top; + width: 128px; + position: relative; + margin-left: 54px; + margin-right: 56px; + height: 40px; +} +.footerForm-kefu img{ + position: absolute; + bottom: -20px; + left: 0; + display: block; + width: 128px; +} +.footerForm .colse{ + display: block; + width: 392px; + height: 30px; + background-repeat: no-repeat; + background-position: center; + background-image: url(../images/close-01.png); + cursor: pointer; + z-index: 19; + margin: 0 auto; +} +.footerForm .check-open{ + background-image: url(../images/close-02.png); +}.header { + width: 100%; + height: 70px; + background-color: #FFFFFF; + position: fixed; + top: 0; + z-index: 999; + box-shadow: 0 0 2px 2px #E8E8ED; + font-family: MicrosoftYaHei; +} + +.header header { + width: 100%; + max-width: 1280px; + height: 70px; + margin: 0 auto; + display: flex; + align-items: center; +} + +.header-left { + width: 124px; +} + +.header ul { + margin:0 auto; + /* width: 560px; */ + font-size: 16px; + letter-spacing: 2px; + display: flex; + justify-content: space-between; + margin-left: 20px; + /* margin-right: 582px; */ +} + +.header ul li { + width: 130px; + text-align: center; + display: block; +} + +/* .header ul li a { + width: 150px; + display: block; +} */ + +.header ul li a em{ + color: #f10000; + font-size: 14px; +} + +.header-right{ + float: right; + width: 215px; + font-size: 20px; + color: #333333; + font-weight: bold; +} + +.activity { + color: #50972c !important; +} + +@media (max-width: 1680px){ + .header header { + max-width: 1200px; + } + + .header ul { + margin-right: 204px; + } +} +.footer { + width: 100%; + height: 300px; +} +.footer a { + color: #575d6c; +} +.footer footer { + width: 100%; + /*height: 250px;*/ + color: #575d6c; + background-color: #f0eff0; +} +.footer-mode { + /*height: 200px;*/ + /*background-color: rgb(37, 37, 37);*/ +} +.logo{ + padding: 0 60px; +} +.nav { + width: 225px; + height: 273px; + /* padding: 0 80px; */ + display: flex; + flex-direction: column; +} +.nav li{ + padding-bottom: 20px; +} +.nav li b{ + color: #333; +} +.mode-link{ + width: 1px; + height: 273px; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.mode-link .link-center{ + background-color: #bfbfbf; + height: 150px; + width: 1px; +} +.contact { + padding: 0 85px; + display: flex; + flex-direction: column; + text-align: center; +} +.contact p:nth-child(1) { + padding-bottom: 25px; +} +.contact p:nth-child(2) { + font-size: 18px; +} +.contact p:nth-child(3) { + font-family: Impact; + font-size: 34px; + letter-spacing: 1px; + margin-top: 4px; + color: #34802a; +} +.contact p:nth-child(4) { + font-size: 14px; + padding-bottom: 25px; + margin-top: 4px; +} +.contact p:nth-child(5) { + margin-bottom: 12px; +} +.contact ul{ + display: flex; + justify-content: center; +} +.contact ul li{ + position: relative; +} +.contact ul li:hover .qrcode-no{ + display: none !important; +} +.contact ul li:hover .qrcode-yes{ + display: block !important; +} +.contact ul li .qrcode-img{ + position: absolute; + top: -110px; + left: -38px; + display: none; +} + +.footer-links{ + margin-top: 10px; +} +.footer-links .links-box{ + border-top: 1px solid #bfbfbf; + border-bottom: 1px solid #bfbfbf; + padding-top: 25px; + padding-bottom: 10px; + display: flex; + flex-flow: wrap; +} +.links-box .links-left{ + width: 80px; +} +.links-box .links-right{ + width: 1200px; +} +.links-box .links-right ul{ + display: flex; + flex-flow: wrap; +} +.links-box .links-right ul li{ + padding-right: 15px; + padding-bottom: 15px; +} + +.attention{ + font-size: 14px; + text-align: center; + line-height: 24px; + padding-left: 60px; +} +.copyright { + /*background-color: rgb(51, 51, 51);*/ + font-size: 14px; + text-align: center; + color: #575d6c; + padding: 10px; +} +.copyright .w1200 { + height: 50px; +} +.copyright .w1200 p:nth-child(2) { + margin: 0 30px; +} +.navColor{ + color: #50972c!important; +} + +.footer-guarantee{ + +} +.footer-guarantee dl{ + display: flex; + height: 90px; +} +.footer-guarantee dt{ + width: 60px; + display: flex; + justify-content: center; + align-items: center; +} + +.footer-guarantee dd{ + width: 225px; + display: flex; + flex-flow: column; + justify-content: center; +} +.footer-guarantee dd p:nth-child(1){ + padding-bottom: 2px; + font-size: 18px; + font-weight: 700; +} +.footer-guarantee dd p:nth-child(2){ + font-size: 14px; +} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/css/swiper.css b/themes/huishou/exampleSite/static/assets/css/swiper.css new file mode 100644 index 0000000..5b83729 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/css/swiper.css @@ -0,0 +1,13 @@ +/** + * Swiper 6.6.2 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2021 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: May 19, 2021 + */ + +@font-face{font-family:swiper-icons;src:url('../fonts/3d7c5314e98e4535b1cbd2cb23e5d046.woff') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/fonts/iconfont.eot b/themes/huishou/exampleSite/static/assets/fonts/iconfont.eot new file mode 100644 index 0000000..622d7ec Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/fonts/iconfont.eot differ diff --git a/themes/huishou/exampleSite/static/assets/fonts/iconfont.svg b/themes/huishou/exampleSite/static/assets/fonts/iconfont.svg new file mode 100644 index 0000000..999ca1f --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/fonts/iconfont.svg @@ -0,0 +1,554 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/huishou/exampleSite/static/assets/fonts/iconfont.ttf b/themes/huishou/exampleSite/static/assets/fonts/iconfont.ttf new file mode 100644 index 0000000..06e30f9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/fonts/iconfont.ttf differ diff --git a/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff b/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff new file mode 100644 index 0000000..66a1783 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff differ diff --git a/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff2 b/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff2 new file mode 100644 index 0000000..47e9980 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/fonts/iconfont.woff2 differ diff --git a/themes/huishou/exampleSite/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg b/themes/huishou/exampleSite/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg new file mode 100644 index 0000000..3f0fc24 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg b/themes/huishou/exampleSite/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg new file mode 100644 index 0000000..6bf5f4e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg b/themes/huishou/exampleSite/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg new file mode 100644 index 0000000..5f46ab9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/15fa28620538174287af554a39b17989.jpg b/themes/huishou/exampleSite/static/assets/images/15fa28620538174287af554a39b17989.jpg new file mode 100644 index 0000000..55ac58d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/15fa28620538174287af554a39b17989.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg b/themes/huishou/exampleSite/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg new file mode 100644 index 0000000..9c0b00f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg b/themes/huishou/exampleSite/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg new file mode 100644 index 0000000..d9a3ee0 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg b/themes/huishou/exampleSite/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg new file mode 100644 index 0000000..019fe41 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg b/themes/huishou/exampleSite/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg new file mode 100644 index 0000000..dec2b83 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg b/themes/huishou/exampleSite/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg new file mode 100644 index 0000000..9e744c3 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg b/themes/huishou/exampleSite/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg new file mode 100644 index 0000000..c940cbc Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg b/themes/huishou/exampleSite/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg new file mode 100644 index 0000000..12b15fc Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg b/themes/huishou/exampleSite/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg new file mode 100644 index 0000000..9b4de8d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg b/themes/huishou/exampleSite/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg new file mode 100644 index 0000000..a2eb386 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg b/themes/huishou/exampleSite/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg new file mode 100644 index 0000000..3e33aa7 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg b/themes/huishou/exampleSite/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg new file mode 100644 index 0000000..e84ea76 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg b/themes/huishou/exampleSite/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg new file mode 100644 index 0000000..fb847dd Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg b/themes/huishou/exampleSite/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg new file mode 100644 index 0000000..d39c3d2 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg b/themes/huishou/exampleSite/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg new file mode 100644 index 0000000..d035ee5 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg b/themes/huishou/exampleSite/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg new file mode 100644 index 0000000..c1fcdf8 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg b/themes/huishou/exampleSite/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg new file mode 100644 index 0000000..ebfc8e9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg b/themes/huishou/exampleSite/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg new file mode 100644 index 0000000..4a004ed Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg b/themes/huishou/exampleSite/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg new file mode 100644 index 0000000..72c95e6 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg b/themes/huishou/exampleSite/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg new file mode 100644 index 0000000..7e7d5a9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg b/themes/huishou/exampleSite/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg new file mode 100644 index 0000000..8470b0f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg b/themes/huishou/exampleSite/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg new file mode 100644 index 0000000..7e6e221 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/acbf278b22be871a9897b07667844faa.jpg b/themes/huishou/exampleSite/static/assets/images/acbf278b22be871a9897b07667844faa.jpg new file mode 100644 index 0000000..b53f649 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/acbf278b22be871a9897b07667844faa.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner-certify.jpg b/themes/huishou/exampleSite/static/assets/images/banner-certify.jpg new file mode 100644 index 0000000..5bfd765 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner-certify.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner-course.jpg b/themes/huishou/exampleSite/static/assets/images/banner-course.jpg new file mode 100644 index 0000000..b070536 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner-course.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner-esg.jpg b/themes/huishou/exampleSite/static/assets/images/banner-esg.jpg new file mode 100644 index 0000000..9d80408 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner-esg.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner-esg1.jpg b/themes/huishou/exampleSite/static/assets/images/banner-esg1.jpg new file mode 100644 index 0000000..1718060 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner-esg1.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner-right.jpg b/themes/huishou/exampleSite/static/assets/images/banner-right.jpg new file mode 100644 index 0000000..933ea6f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner-right.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner.jpg b/themes/huishou/exampleSite/static/assets/images/banner.jpg new file mode 100644 index 0000000..09f7964 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/banner.png b/themes/huishou/exampleSite/static/assets/images/banner.png new file mode 100644 index 0000000..af05602 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/banner.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/bj1.png b/themes/huishou/exampleSite/static/assets/images/bj1.png new file mode 100644 index 0000000..64e7ced Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/bj1.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/brand-intro.jpg b/themes/huishou/exampleSite/static/assets/images/brand-intro.jpg new file mode 100644 index 0000000..885b0ea Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/brand-intro.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/case-bg.jpg b/themes/huishou/exampleSite/static/assets/images/case-bg.jpg new file mode 100644 index 0000000..8f30a11 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/case-bg.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg b/themes/huishou/exampleSite/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg new file mode 100644 index 0000000..6a5bcef Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg b/themes/huishou/exampleSite/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg new file mode 100644 index 0000000..9bdeb6c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg b/themes/huishou/exampleSite/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg new file mode 100644 index 0000000..76e9b01 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/charity-bg.png b/themes/huishou/exampleSite/static/assets/images/charity-bg.png new file mode 100644 index 0000000..d67ebd7 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/charity-bg.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/checkbox_12x12.png b/themes/huishou/exampleSite/static/assets/images/checkbox_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/images/checkbox_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/images/checked_12x12.png b/themes/huishou/exampleSite/static/assets/images/checked_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/images/checked_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/images/close-01.png b/themes/huishou/exampleSite/static/assets/images/close-01.png new file mode 100644 index 0000000..c991022 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/close-01.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/close-02.png b/themes/huishou/exampleSite/static/assets/images/close-02.png new file mode 100644 index 0000000..dab5dee Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/close-02.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg b/themes/huishou/exampleSite/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/dsc-icon.png b/themes/huishou/exampleSite/static/assets/images/dsc-icon.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/images/dsc-icon.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/images/e440d56b738e29b417278f88aa534490.jpg b/themes/huishou/exampleSite/static/assets/images/e440d56b738e29b417278f88aa534490.jpg new file mode 100644 index 0000000..ef2c994 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/e440d56b738e29b417278f88aa534490.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg b/themes/huishou/exampleSite/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg new file mode 100644 index 0000000..3c076a6 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg b/themes/huishou/exampleSite/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg new file mode 100644 index 0000000..afa4edf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg b/themes/huishou/exampleSite/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg new file mode 100644 index 0000000..9a28705 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/fa-bg01.png b/themes/huishou/exampleSite/static/assets/images/fa-bg01.png new file mode 100644 index 0000000..13f69ae Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/fa-bg01.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/i3.png b/themes/huishou/exampleSite/static/assets/images/i3.png new file mode 100644 index 0000000..fe8561e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/i3.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/jn.png b/themes/huishou/exampleSite/static/assets/images/jn.png new file mode 100644 index 0000000..ee7c1ae Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/jn.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/loading.gif b/themes/huishou/exampleSite/static/assets/images/loading.gif new file mode 100644 index 0000000..5b33f7e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/loading.gif differ diff --git a/themes/huishou/exampleSite/static/assets/images/logo.png b/themes/huishou/exampleSite/static/assets/images/logo.png new file mode 100644 index 0000000..64c8058 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/logo.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/qywh1-bg.jpg b/themes/huishou/exampleSite/static/assets/images/qywh1-bg.jpg new file mode 100644 index 0000000..b9ad6a2 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/qywh1-bg.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/search.png b/themes/huishou/exampleSite/static/assets/images/search.png new file mode 100644 index 0000000..415fa53 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/search.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/service-bg01.png b/themes/huishou/exampleSite/static/assets/images/service-bg01.png new file mode 100644 index 0000000..d9059ab Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/service-bg01.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/service-bg03.png b/themes/huishou/exampleSite/static/assets/images/service-bg03.png new file mode 100644 index 0000000..e0275a8 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/service-bg03.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/site-bg.jpg b/themes/huishou/exampleSite/static/assets/images/site-bg.jpg new file mode 100644 index 0000000..817599c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/site-bg.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/tx-bg.png b/themes/huishou/exampleSite/static/assets/images/tx-bg.png new file mode 100644 index 0000000..8d25357 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/tx-bg.png differ diff --git a/themes/huishou/exampleSite/static/assets/images/video.jpg b/themes/huishou/exampleSite/static/assets/images/video.jpg new file mode 100644 index 0000000..6543e48 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/video.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/images/wm_button_icon.png b/themes/huishou/exampleSite/static/assets/images/wm_button_icon.png new file mode 100644 index 0000000..cb4f816 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/images/wm_button_icon.png differ diff --git a/themes/huishou/exampleSite/static/assets/js/about.js b/themes/huishou/exampleSite/static/assets/js/about.js new file mode 100644 index 0000000..56b56d6 --- /dev/null +++ b/themes/huishou/exampleSite/static/assets/js/about.js @@ -0,0 +1,462 @@ +var vm = new Vue({ + el: '#content', + data: { + site_tab_idx:0, + site_content_sel:[], + site_content_list:[ + { + city: "李桥店展厅", + area: "12000", + address: "北京市顺义区Y603(沿沙路)楚天子谋大厦", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj4.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj5.jpg', + ] + }, + { + city: "青浦展厅", + area: "12000", + address: "上海市青浦区嘉松中路3568号", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-qp-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-5.jpg', + ] + }, + { + city: "浦东展厅", + area: "5000", + address: "上海市浦东新区秀沿路128号11号楼3F第二树", + url: "https://pd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd05.jpg', + ] + }, + { + city: "闵行展厅", + area: "5000", + address: "上海市松江区申光路168号6栋115号", + url: "https://mh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-mh-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-5.jpg', + ] + }, + { + city: "广州展厅", + area: "11000", + address: "广州市番禺区丽景路78号", + url: "https://gz.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/gz1.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz05.jpg', + ] + }, + { + city: "深圳展厅", + area: "8000", + address: "深圳市南山区麻磡社区奇星路47号", + url: "https://sz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz05.jpg', + ] + }, + { + city: "天津展厅", + area: "7500", + address: "天津市北辰区青光镇铁锅店村104国道旁", + url: "https://tj.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj05.jpg', + ] + }, + { + city: "武汉展厅", + area: "5000", + address: "武汉市洪山区白沙洲大道2号(华中城物流建材大市场)4栋3楼", + url: "https://wh.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh05.jpg', + ] + }, + { + city: "杭州展厅", + area: "6000", + address: "杭州市萧山区义蓬街道南沙路17号", + url: "https://hz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz05.jpg', + ] + }, + { + city: "成都展厅", + area: "8000", + address: "成都市双流区西航港大道中三段2667号第二树", + url: "https://cd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd05.jpg', + ] + }, + { + city: "重庆展厅", + area: "6000", + address: "重庆市江北区江北城组团A07地块(江北嘴金融城旁)俊豪ICFC,A座305", + url: "https://cq.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq05.jpg', + ] + }, + { + city: "香港展厅", + area: "800", + address: "香港特别行政区观塘区九龙湾启祥道9号信和工商中心7F", + url: "https://hk.deartree.com/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg05.jpg', + ] + }, + { + city: "双桥店展厅", + area: "1200", + address: "北京市朝阳区豆各庄乡Find未来园区二楼", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj-sq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-4.jpg', + ] + }, + { + city: "金桥店展厅", + area: "750", + address: "上海市浦东新区金苏路200号金桥万创中心F栋", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-jq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-5.jpg', + ] + }, + ], + }, + created() { + if (/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i + .test(navigator.userAgent)) { + //window.location.href = "/wap/about"; + } + // this.site_content_sel = this.site_content_list[0]; + }, + methods: { + clickSiteTab: function(idx) { + this.site_tab_idx = idx; + // this.site_content_sel = this.site_content_list[idx]; + showSite(); + }, + + } +}); +showSite(); +//展厅 +function showSite() { + var swiperSite = new Swiper('.swiper-site', { + initialSlide:0, + observer:true,//修改swiper自己或子元素时,自动初始化swiper + autoplay: false, + speed:2000, + loop: true, + // slidesPerView: 1, + navigation: { + nextEl: '.swiper-next-site', + prevEl: '.swiper-prev-site', + }, + }); +} + + + +//展厅 +// var gallerySite = new Swiper('.gallery-site', { +// slidesPerView: 11, +// freeMode: true, +// watchSlidesVisibility: true, +// watchSlidesProgress: true, +// }); +// var galleryTop = new Swiper('.gallery-top', { +// autoplay: false, +// loop: true, +// thumbs: { +// swiper: gallerySite, +// }, +// }); +//企业文化 +var solidQywh = new Swiper('.solid-qywh', { + slidesPerView: 6, + freeMode: true, + watchSlidesVisibility: true, + watchSlidesProgress: true, +}); +var swiperQywh = new Swiper('.swiper-qywh', { + autoplay: false, + speed:2000, + loop: true, + loopedSlides: 6, + thumbs: { + swiper: solidQywh, + }, +}); +//荣誉 +certifySwiper = new Swiper('#certify .swiper-container', { + watchSlidesProgress: true, + slidesPerView: 'auto', + centeredSlides: true, + loop: true, + loopedSlides: 5, + autoplay: false, + navigation: { + nextEl: '.swiper-next-certify', + prevEl: '.swiper-prev-certify', + }, + pagination: { + el: '.swiper-pagination-certify', + clickable :true, + }, + on: { + progress: function(progress) { + for (i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i); + var slideProgress = this.slides[i].progress; + modify = 1; + if (Math.abs(slideProgress) > 1) { + modify = (Math.abs(slideProgress) - 1) * 0.3 + 1; + } + translate = slideProgress * modify * 260 + 'px'; + scale = 1 - Math.abs(slideProgress) / 5; + zIndex = 999 - Math.abs(Math.round(10 * slideProgress)); + slide.transform('translateX(' + translate + ') scale(' + scale + ')'); + slide.css('zIndex', zIndex); + slide.css('opacity', 1); + if (Math.abs(slideProgress) > 3) { + slide.css('opacity', 0); + } + } + }, + setTransition: function(swiper, transition) { + for (var i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i) + slide.transition(transition); + } + + } + } +}) +//里程碑 +var proTab = new Swiper('.milestone-tab', { + speed:1000, + // spaceBetween: 6, + slidesPerView: 5, + freeMode: true, + watchSlidesProgress: true, +}); +var swiper = new Swiper(".milestone-content", { + speed:1000, + // spaceBetween: 6, + thumbs: { + swiper: proTab, + }, + navigation: { + nextEl: '.swiper-next-course', + prevEl: '.swiper-prev-course', + }, +}); +//爱心公益 +var swiperWelfare = new Swiper('.swiper-welfare', { + autoplay: false, + // loop: true, + slidesPerView: 4, + spaceBetween: 20, + pagination: { + el: ".swiper-pagination-welfare", + type: "progressbar", + }, + navigation: { + nextEl: '.swiper-next-welfare', + prevEl: '.swiper-prev-welfare', + }, +}); +// swiperWelfare.el.onmouseover = function() { //鼠标放上暂停轮播 +// swiperWelfare.autoplay.stop(); +// } +// swiperWelfare.el.onmouseleave = function() { +// swiperWelfare.autoplay.start(); +// } + +/* *********************************************************************************************/ +var wow = new WOW( + { + boxClass: 'wow', // 需要执行动画的元素的 class(默认是wow) + animateClass: 'animated', // animation.css 动画的 class(默认是animated) + offset: 100, // 距离可视区域多少开始执行动画(默认为0) + mobile: true, // 是否在移动设备上执行动画(默认为true) + live: true, // 异步加载的内容是否有效(默认为true) + callback: function (box) { + // 每次动画启动时都会触发这个回调函数 + //传入的参数是动画DOM节点 + }, + scrollContainer: null // 可选滚动容器选择器,否则使用窗口 + } +); +wow.init(); +function playVideo(opt) { + if (typeof (opt) == "undefined") { + alert("请传入必要参数!"); + return; + } + if (typeof (opt.elemt) == "undefined") { + alert("请指定播放器要插入的对象!"); + return; + } + if (typeof (opt.src) == "undefined") { + alert("请指定要播放视频的路径!"); + return; + } + var _this = this; + _this.elemt = opt.elemt; //播放器要插入的对象 + _this.src = opt.src; //视频的URL(必设) + _this.width = opt.width > 0 ? opt.width + "" : "100%"; //宽度(默认100%) + _this.height = opt.height > 0 ? opt.height + "" : ""; //高度(默认100%) + _this.autoplay = opt.autoplay == "false" ? "autoplay" : ""; //自动播放(true为自动播放) + _this.poster = opt.poster; //视频封面,播放时的封面图片 + _this.preload = opt.preload == "true" ? "preload" : ""; //预加载(true时启动加载) + _this.loop = opt.loop == "false" ? "loop" : ""; //循环播放(true时循环播放) + var str = ""; + _this.elemt.innerHTML = str; //将str放到要插入的对象中 + $('video').bind('contextmenu', function () { return false; }); +} + +$('.videoShow').on('click', function () { + var video = 'https://cdn.jsdelivr.net/gh/lopinv/wooooden.com@main/docs/assets/images/about.mp4'; + var emhtml = '
'; + emhtml = emhtml + ' + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/exampleSite/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg b/themes/huishou/exampleSite/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg new file mode 100644 index 0000000..bea4075 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg b/themes/huishou/exampleSite/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg new file mode 100644 index 0000000..c5c8491 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg b/themes/huishou/exampleSite/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg new file mode 100644 index 0000000..9a9b8dd Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg b/themes/huishou/exampleSite/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg new file mode 100644 index 0000000..9fc9413 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg b/themes/huishou/exampleSite/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg new file mode 100644 index 0000000..5d12649 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg b/themes/huishou/exampleSite/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg new file mode 100644 index 0000000..f181693 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg b/themes/huishou/exampleSite/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg new file mode 100644 index 0000000..df76b4f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg b/themes/huishou/exampleSite/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg new file mode 100644 index 0000000..d4280bf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg b/themes/huishou/exampleSite/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg new file mode 100644 index 0000000..9ddf3cd Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg b/themes/huishou/exampleSite/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg new file mode 100644 index 0000000..4295712 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg b/themes/huishou/exampleSite/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg new file mode 100644 index 0000000..d1cc8e3 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg b/themes/huishou/exampleSite/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg new file mode 100644 index 0000000..919ab96 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg b/themes/huishou/exampleSite/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg new file mode 100644 index 0000000..9728423 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg b/themes/huishou/exampleSite/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg new file mode 100644 index 0000000..2ac683d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg b/themes/huishou/exampleSite/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg b/themes/huishou/exampleSite/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg new file mode 100644 index 0000000..be85b5a Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg b/themes/huishou/exampleSite/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg new file mode 100644 index 0000000..2c25bdf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg b/themes/huishou/exampleSite/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg new file mode 100644 index 0000000..7172e65 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg b/themes/huishou/exampleSite/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg new file mode 100644 index 0000000..f39e71c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg b/themes/huishou/exampleSite/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg new file mode 100644 index 0000000..0e3bf0e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg b/themes/huishou/exampleSite/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg new file mode 100644 index 0000000..9d42945 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg b/themes/huishou/exampleSite/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg new file mode 100644 index 0000000..499389d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cc01.png b/themes/huishou/exampleSite/static/assets/picture/cc01.png new file mode 100644 index 0000000..c641a79 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cc01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cc02.png b/themes/huishou/exampleSite/static/assets/picture/cc02.png new file mode 100644 index 0000000..dabfe19 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cc02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cc03.png b/themes/huishou/exampleSite/static/assets/picture/cc03.png new file mode 100644 index 0000000..b684a71 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cc03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cc04.png b/themes/huishou/exampleSite/static/assets/picture/cc04.png new file mode 100644 index 0000000..6732603 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cc04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg b/themes/huishou/exampleSite/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg new file mode 100644 index 0000000..78e5de0 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ccjc-bg-3.png b/themes/huishou/exampleSite/static/assets/picture/ccjc-bg-3.png new file mode 100644 index 0000000..b46d10d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ccjc-bg-3.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg b/themes/huishou/exampleSite/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg new file mode 100644 index 0000000..dee3a74 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg b/themes/huishou/exampleSite/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg new file mode 100644 index 0000000..0814450 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg b/themes/huishou/exampleSite/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg new file mode 100644 index 0000000..cda4531 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg b/themes/huishou/exampleSite/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg new file mode 100644 index 0000000..9a5872e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg b/themes/huishou/exampleSite/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg new file mode 100644 index 0000000..edbc208 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/charity01.png b/themes/huishou/exampleSite/static/assets/picture/charity01.png new file mode 100644 index 0000000..8a6c784 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/charity01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/charity02.png b/themes/huishou/exampleSite/static/assets/picture/charity02.png new file mode 100644 index 0000000..09a966b Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/charity02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/charity03.png b/themes/huishou/exampleSite/static/assets/picture/charity03.png new file mode 100644 index 0000000..725b287 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/charity03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cy01.jpg b/themes/huishou/exampleSite/static/assets/picture/cy01.jpg new file mode 100644 index 0000000..f7a4069 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cy01.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cy02.jpg b/themes/huishou/exampleSite/static/assets/picture/cy02.jpg new file mode 100644 index 0000000..a044bd1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cy02.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/cy03.jpg b/themes/huishou/exampleSite/static/assets/picture/cy03.jpg new file mode 100644 index 0000000..6b979c9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/cy03.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg b/themes/huishou/exampleSite/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg new file mode 100644 index 0000000..c19de70 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg b/themes/huishou/exampleSite/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg new file mode 100644 index 0000000..7eeed5e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg b/themes/huishou/exampleSite/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg new file mode 100644 index 0000000..0782763 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg b/themes/huishou/exampleSite/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg new file mode 100644 index 0000000..8abb499 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg b/themes/huishou/exampleSite/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg new file mode 100644 index 0000000..c0ae003 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg b/themes/huishou/exampleSite/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg new file mode 100644 index 0000000..0016572 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg b/themes/huishou/exampleSite/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg new file mode 100644 index 0000000..ea9f135 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg b/themes/huishou/exampleSite/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg new file mode 100644 index 0000000..08fa3e9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg b/themes/huishou/exampleSite/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg new file mode 100644 index 0000000..c21d248 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg b/themes/huishou/exampleSite/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg new file mode 100644 index 0000000..d94f5d4 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg b/themes/huishou/exampleSite/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg new file mode 100644 index 0000000..eafc287 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/dz2.png b/themes/huishou/exampleSite/static/assets/picture/dz2.png new file mode 100644 index 0000000..303db09 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/dz2.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg b/themes/huishou/exampleSite/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg new file mode 100644 index 0000000..37f31a8 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg b/themes/huishou/exampleSite/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg new file mode 100644 index 0000000..263b204 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg b/themes/huishou/exampleSite/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg new file mode 100644 index 0000000..db1c3f3 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg b/themes/huishou/exampleSite/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg new file mode 100644 index 0000000..c30b446 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg b/themes/huishou/exampleSite/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg new file mode 100644 index 0000000..a591ae9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg b/themes/huishou/exampleSite/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg new file mode 100644 index 0000000..54c3709 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg b/themes/huishou/exampleSite/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg new file mode 100644 index 0000000..2759d0d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg b/themes/huishou/exampleSite/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg new file mode 100644 index 0000000..8abfdb6 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg b/themes/huishou/exampleSite/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg new file mode 100644 index 0000000..043da66 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg b/themes/huishou/exampleSite/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg new file mode 100644 index 0000000..891879d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg b/themes/huishou/exampleSite/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg new file mode 100644 index 0000000..6348c01 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg b/themes/huishou/exampleSite/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg new file mode 100644 index 0000000..7868437 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg b/themes/huishou/exampleSite/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg new file mode 100644 index 0000000..5afe0e5 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg b/themes/huishou/exampleSite/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg new file mode 100644 index 0000000..a60e6fe Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg b/themes/huishou/exampleSite/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg new file mode 100644 index 0000000..ba2a073 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg b/themes/huishou/exampleSite/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg new file mode 100644 index 0000000..bdc4192 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg b/themes/huishou/exampleSite/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg new file mode 100644 index 0000000..fa4e90d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg b/themes/huishou/exampleSite/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg new file mode 100644 index 0000000..e004d27 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg b/themes/huishou/exampleSite/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg new file mode 100644 index 0000000..e18ed71 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg b/themes/huishou/exampleSite/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg new file mode 100644 index 0000000..72c1410 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg b/themes/huishou/exampleSite/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg new file mode 100644 index 0000000..9daeae6 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg b/themes/huishou/exampleSite/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg new file mode 100644 index 0000000..2779494 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg b/themes/huishou/exampleSite/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg new file mode 100644 index 0000000..7dd96fb Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg b/themes/huishou/exampleSite/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg new file mode 100644 index 0000000..f1a1985 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg b/themes/huishou/exampleSite/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg new file mode 100644 index 0000000..2877be8 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg b/themes/huishou/exampleSite/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg new file mode 100644 index 0000000..b47943d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg b/themes/huishou/exampleSite/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg new file mode 100644 index 0000000..fe491c5 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg b/themes/huishou/exampleSite/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg new file mode 100644 index 0000000..1f3de60 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg b/themes/huishou/exampleSite/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg new file mode 100644 index 0000000..dfc6d58 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg b/themes/huishou/exampleSite/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg new file mode 100644 index 0000000..5374346 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg b/themes/huishou/exampleSite/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg new file mode 100644 index 0000000..7e14139 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/flow01.png b/themes/huishou/exampleSite/static/assets/picture/flow01.png new file mode 100644 index 0000000..c4113f0 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/flow01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/flow02.png b/themes/huishou/exampleSite/static/assets/picture/flow02.png new file mode 100644 index 0000000..3ea8481 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/flow02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/flow03.png b/themes/huishou/exampleSite/static/assets/picture/flow03.png new file mode 100644 index 0000000..70aeb43 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/flow03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/flow04.png b/themes/huishou/exampleSite/static/assets/picture/flow04.png new file mode 100644 index 0000000..9f2a503 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/flow04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/footer-bz1.png b/themes/huishou/exampleSite/static/assets/picture/footer-bz1.png new file mode 100644 index 0000000..06b0b0a Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/footer-bz1.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/footer-bz2.png b/themes/huishou/exampleSite/static/assets/picture/footer-bz2.png new file mode 100644 index 0000000..7610893 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/footer-bz2.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/footer-bz3.png b/themes/huishou/exampleSite/static/assets/picture/footer-bz3.png new file mode 100644 index 0000000..10a3cc1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/footer-bz3.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/footer-bz4.png b/themes/huishou/exampleSite/static/assets/picture/footer-bz4.png new file mode 100644 index 0000000..e8b6916 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/footer-bz4.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy01.jpg b/themes/huishou/exampleSite/static/assets/picture/gy01.jpg new file mode 100644 index 0000000..8de0b1f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy01.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy01.png b/themes/huishou/exampleSite/static/assets/picture/gy01.png new file mode 100644 index 0000000..764629e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy02.jpg b/themes/huishou/exampleSite/static/assets/picture/gy02.jpg new file mode 100644 index 0000000..8146a3f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy02.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy02.png b/themes/huishou/exampleSite/static/assets/picture/gy02.png new file mode 100644 index 0000000..aa32cb7 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy03.jpg b/themes/huishou/exampleSite/static/assets/picture/gy03.jpg new file mode 100644 index 0000000..dbcf656 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy03.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy04.jpg b/themes/huishou/exampleSite/static/assets/picture/gy04.jpg new file mode 100644 index 0000000..f4aba71 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy04.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy05.jpg b/themes/huishou/exampleSite/static/assets/picture/gy05.jpg new file mode 100644 index 0000000..5510c30 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy05.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy06.jpg b/themes/huishou/exampleSite/static/assets/picture/gy06.jpg new file mode 100644 index 0000000..169e5ac Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy06.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy07.jpg b/themes/huishou/exampleSite/static/assets/picture/gy07.jpg new file mode 100644 index 0000000..8551f2e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy07.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy08.jpg b/themes/huishou/exampleSite/static/assets/picture/gy08.jpg new file mode 100644 index 0000000..1577e74 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy08.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy09.jpg b/themes/huishou/exampleSite/static/assets/picture/gy09.jpg new file mode 100644 index 0000000..57883fe Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy09.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy10.jpg b/themes/huishou/exampleSite/static/assets/picture/gy10.jpg new file mode 100644 index 0000000..d5705bb Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy10.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy11.jpg b/themes/huishou/exampleSite/static/assets/picture/gy11.jpg new file mode 100644 index 0000000..9d17617 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy11.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy12.jpg b/themes/huishou/exampleSite/static/assets/picture/gy12.jpg new file mode 100644 index 0000000..898913a Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy12.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy13.jpg b/themes/huishou/exampleSite/static/assets/picture/gy13.jpg new file mode 100644 index 0000000..ce2b657 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy13.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy14.jpg b/themes/huishou/exampleSite/static/assets/picture/gy14.jpg new file mode 100644 index 0000000..696c798 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy14.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy15.jpg b/themes/huishou/exampleSite/static/assets/picture/gy15.jpg new file mode 100644 index 0000000..9478d86 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy15.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy16.jpg b/themes/huishou/exampleSite/static/assets/picture/gy16.jpg new file mode 100644 index 0000000..696ccb7 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy16.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy17.jpg b/themes/huishou/exampleSite/static/assets/picture/gy17.jpg new file mode 100644 index 0000000..bba2869 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy17.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy18.jpg b/themes/huishou/exampleSite/static/assets/picture/gy18.jpg new file mode 100644 index 0000000..f143d60 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy18.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy19.jpg b/themes/huishou/exampleSite/static/assets/picture/gy19.jpg new file mode 100644 index 0000000..e6ffafc Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy19.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy20.jpg b/themes/huishou/exampleSite/static/assets/picture/gy20.jpg new file mode 100644 index 0000000..808a230 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy20.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy21.jpg b/themes/huishou/exampleSite/static/assets/picture/gy21.jpg new file mode 100644 index 0000000..759966a Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy21.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy22.jpg b/themes/huishou/exampleSite/static/assets/picture/gy22.jpg new file mode 100644 index 0000000..13142cf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy22.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy23.jpg b/themes/huishou/exampleSite/static/assets/picture/gy23.jpg new file mode 100644 index 0000000..a9d84ed Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy23.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/gy24.jpg b/themes/huishou/exampleSite/static/assets/picture/gy24.jpg new file mode 100644 index 0000000..1a94bdc Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/gy24.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/hot.png b/themes/huishou/exampleSite/static/assets/picture/hot.png new file mode 100644 index 0000000..8a2a1ce Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/hot.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/hs01.png b/themes/huishou/exampleSite/static/assets/picture/hs01.png new file mode 100644 index 0000000..7a3b1c1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/hs01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/hs02.png b/themes/huishou/exampleSite/static/assets/picture/hs02.png new file mode 100644 index 0000000..bbdfaa0 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/hs02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/hs03.png b/themes/huishou/exampleSite/static/assets/picture/hs03.png new file mode 100644 index 0000000..b07e0ce Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/hs03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/hs04.png b/themes/huishou/exampleSite/static/assets/picture/hs04.png new file mode 100644 index 0000000..0059fcf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/hs04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-dy-no.png b/themes/huishou/exampleSite/static/assets/picture/ico-dy-no.png new file mode 100644 index 0000000..fb3030d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-dy-no.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-dy-yes.png b/themes/huishou/exampleSite/static/assets/picture/ico-dy-yes.png new file mode 100644 index 0000000..0bb8c76 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-dy-yes.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-wb-no.png b/themes/huishou/exampleSite/static/assets/picture/ico-wb-no.png new file mode 100644 index 0000000..961ac6b Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-wb-no.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-wb-yes.png b/themes/huishou/exampleSite/static/assets/picture/ico-wb-yes.png new file mode 100644 index 0000000..29ac21e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-wb-yes.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-wx-no.png b/themes/huishou/exampleSite/static/assets/picture/ico-wx-no.png new file mode 100644 index 0000000..1a5aeb1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-wx-no.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ico-wx-yes.png b/themes/huishou/exampleSite/static/assets/picture/ico-wx-yes.png new file mode 100644 index 0000000..d77daf9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ico-wx-yes.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/index-jjxs.png b/themes/huishou/exampleSite/static/assets/picture/index-jjxs.png new file mode 100644 index 0000000..8d4fb00 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/index-jjxs.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/kzks-hs.png b/themes/huishou/exampleSite/static/assets/picture/kzks-hs.png new file mode 100644 index 0000000..599154c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/kzks-hs.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/lc-23.jpg b/themes/huishou/exampleSite/static/assets/picture/lc-23.jpg new file mode 100644 index 0000000..e25e39c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/lc-23.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/lc-24-495.jpg b/themes/huishou/exampleSite/static/assets/picture/lc-24-495.jpg new file mode 100644 index 0000000..a921a30 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/lc-24-495.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/logo.png b/themes/huishou/exampleSite/static/assets/picture/logo.png new file mode 100644 index 0000000..e7dd0b5 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/logo.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/logo3.png b/themes/huishou/exampleSite/static/assets/picture/logo3.png new file mode 100644 index 0000000..628346c Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/logo3.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qrcode-dy.png b/themes/huishou/exampleSite/static/assets/picture/qrcode-dy.png new file mode 100644 index 0000000..4c5e9eb Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qrcode-dy.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qrcode-wb.png b/themes/huishou/exampleSite/static/assets/picture/qrcode-wb.png new file mode 100644 index 0000000..3184b0e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qrcode-wb.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qrcode-wx.png b/themes/huishou/exampleSite/static/assets/picture/qrcode-wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qrcode-wx.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qywh1.png b/themes/huishou/exampleSite/static/assets/picture/qywh1.png new file mode 100644 index 0000000..5c915b7 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qywh1.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qywh2.png b/themes/huishou/exampleSite/static/assets/picture/qywh2.png new file mode 100644 index 0000000..012ed1a Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qywh2.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qywh3.png b/themes/huishou/exampleSite/static/assets/picture/qywh3.png new file mode 100644 index 0000000..bdda47d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qywh3.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qywh4.png b/themes/huishou/exampleSite/static/assets/picture/qywh4.png new file mode 100644 index 0000000..b76fe42 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qywh4.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/qywh5.png b/themes/huishou/exampleSite/static/assets/picture/qywh5.png new file mode 100644 index 0000000..ade0433 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/qywh5.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/right-next.png b/themes/huishou/exampleSite/static/assets/picture/right-next.png new file mode 100644 index 0000000..046e135 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/right-next.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-01.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-01.png new file mode 100644 index 0000000..f50fe4e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-03.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-03.png new file mode 100644 index 0000000..507dd72 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-04.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-04.png new file mode 100644 index 0000000..1f583ac Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-05.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-05.png new file mode 100644 index 0000000..12d427d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-05.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-on-01.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-01.png new file mode 100644 index 0000000..b228ac1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-on-03.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-03.png new file mode 100644 index 0000000..e71592f Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-on-04.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-04.png new file mode 100644 index 0000000..fcadf35 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/rightnav-on-05.png b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-05.png new file mode 100644 index 0000000..3e290cc Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/rightnav-on-05.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/service-1.jpg b/themes/huishou/exampleSite/static/assets/picture/service-1.jpg new file mode 100644 index 0000000..5ace678 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/service-1.jpg differ diff --git a/themes/huishou/exampleSite/static/assets/picture/service02.png b/themes/huishou/exampleSite/static/assets/picture/service02.png new file mode 100644 index 0000000..13fb833 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/service02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/service03.png b/themes/huishou/exampleSite/static/assets/picture/service03.png new file mode 100644 index 0000000..914059d Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/service03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/service04.png b/themes/huishou/exampleSite/static/assets/picture/service04.png new file mode 100644 index 0000000..a3035a1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/service04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/top-ico1.png b/themes/huishou/exampleSite/static/assets/picture/top-ico1.png new file mode 100644 index 0000000..4a89927 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/top-ico1.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/top-ico2.png b/themes/huishou/exampleSite/static/assets/picture/top-ico2.png new file mode 100644 index 0000000..d993a54 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/top-ico2.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/top-ico3.png b/themes/huishou/exampleSite/static/assets/picture/top-ico3.png new file mode 100644 index 0000000..8e5eec8 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/top-ico3.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/top-ico4.png b/themes/huishou/exampleSite/static/assets/picture/top-ico4.png new file mode 100644 index 0000000..448d23e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/top-ico4.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/wx.png b/themes/huishou/exampleSite/static/assets/picture/wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/wx.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/xs01.png b/themes/huishou/exampleSite/static/assets/picture/xs01.png new file mode 100644 index 0000000..623bbd2 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/xs01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/xs02.png b/themes/huishou/exampleSite/static/assets/picture/xs02.png new file mode 100644 index 0000000..429f14e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/xs02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/xs03.png b/themes/huishou/exampleSite/static/assets/picture/xs03.png new file mode 100644 index 0000000..98436e0 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/xs03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/xs04.png b/themes/huishou/exampleSite/static/assets/picture/xs04.png new file mode 100644 index 0000000..0673eaf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/xs04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys01.png b/themes/huishou/exampleSite/static/assets/picture/ys01.png new file mode 100644 index 0000000..2face8e Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys02.png b/themes/huishou/exampleSite/static/assets/picture/ys02.png new file mode 100644 index 0000000..89994ed Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys03.png b/themes/huishou/exampleSite/static/assets/picture/ys03.png new file mode 100644 index 0000000..6291fbf Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys04.png b/themes/huishou/exampleSite/static/assets/picture/ys04.png new file mode 100644 index 0000000..d6c90f9 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys05.png b/themes/huishou/exampleSite/static/assets/picture/ys05.png new file mode 100644 index 0000000..919d9e1 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys05.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/ys06.png b/themes/huishou/exampleSite/static/assets/picture/ys06.png new file mode 100644 index 0000000..7c2df59 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/ys06.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zl.png b/themes/huishou/exampleSite/static/assets/picture/zl.png new file mode 100644 index 0000000..328ccf2 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zl.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zl01.png b/themes/huishou/exampleSite/static/assets/picture/zl01.png new file mode 100644 index 0000000..047f228 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zl01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zl02.png b/themes/huishou/exampleSite/static/assets/picture/zl02.png new file mode 100644 index 0000000..8b48f96 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zl02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zl03.png b/themes/huishou/exampleSite/static/assets/picture/zl03.png new file mode 100644 index 0000000..93b364b Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zl03.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zl04.png b/themes/huishou/exampleSite/static/assets/picture/zl04.png new file mode 100644 index 0000000..ecf7727 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zl04.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zs01.png b/themes/huishou/exampleSite/static/assets/picture/zs01.png new file mode 100644 index 0000000..c2487b4 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zs01.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zs02.png b/themes/huishou/exampleSite/static/assets/picture/zs02.png new file mode 100644 index 0000000..0b1e362 Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zs02.png differ diff --git a/themes/huishou/exampleSite/static/assets/picture/zs03.png b/themes/huishou/exampleSite/static/assets/picture/zs03.png new file mode 100644 index 0000000..4b6d8ca Binary files /dev/null and b/themes/huishou/exampleSite/static/assets/picture/zs03.png differ diff --git a/themes/huishou/exampleSite/static/favicon.ico b/themes/huishou/exampleSite/static/favicon.ico new file mode 100644 index 0000000..67f8b77 Binary files /dev/null and b/themes/huishou/exampleSite/static/favicon.ico differ diff --git a/themes/huishou/layouts/404.html b/themes/huishou/layouts/404.html new file mode 100644 index 0000000..b95c5db --- /dev/null +++ b/themes/huishou/layouts/404.html @@ -0,0 +1,24 @@ +{{ define "meta" }} +404: Page not found - {{ .Site.Title }} + + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/baseof.html b/themes/huishou/layouts/_default/baseof.html new file mode 100644 index 0000000..5e90b4e --- /dev/null +++ b/themes/huishou/layouts/_default/baseof.html @@ -0,0 +1,271 @@ + + + + + + + + + {{ hugo.Generator }} + {{ block "meta" . }}{{ end }} + + + + + {{ block "headscript" . }}{{ end }} + + + + +
+ +
+
+ {{ if eq .IsHome true }}

{{ else }}
{{ end }} + + + + {{ if eq .IsHome true }}

{{ else }}
{{ end }} + +
电话:{{ .Site.Params.phoneNumber }}
+ +
+ + + {{ block "main" . }}{{ end }} + + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ + + + + + + + + + + + + + {{ block "footscript" . }}{{ end }} + + + + \ No newline at end of file diff --git a/themes/huishou/layouts/_default/case.html b/themes/huishou/layouts/_default/case.html new file mode 100644 index 0000000..9a4fc7d --- /dev/null +++ b/themes/huishou/layouts/_default/case.html @@ -0,0 +1,1667 @@ +{{ define "meta" }} +二手办公家具采购回收案例-装配狮 + + +{{ end }} + +{{ define "headscript" }} + +{{ end }} + +{{ define "main" }} +
+ + + + +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 + 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,北京分公司安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 + 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 + 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们合作,此次采购二手办公家具约1500多件。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 + 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 + 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们,秉持着为企业节约成本,为社会节约资源的想法,选择了我们的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ + +
+
+
+

更多行业安装项目

+

众多知名企业选择我们

+
+
+
+ 按行业选择: +
    +
  • 全部
  • +
  • 互联网
  • +
  • 医疗/教培
  • +
  • 设计/建筑
  • +
  • 科技
  • +
  • 政府单位
  • +
  • 金融/保险
  • +
  • 制造
  • +
  • 服务
  • +
+
+
+
+
北京某电气科技公司办公家具采购案例
+
+

北京某电气科技公司办公家具采购案例

+

北京2024.10.11

+
+
+
+
广州某设计工程公司办公家具采购案例
+
+

广州某设计工程公司办公家具采购案例

+

广州2024.10.10

+
+
+
+
深圳某知名口腔护理公司办公家具采购案例
+
+

深圳某知名口腔护理公司办公家具采购案例

+

深圳2024.10.09

+
+
+
+
苏州某能源科技公司办公家具采购案例
+
+

苏州某能源科技公司办公家具采购案例

+

上海2024.10.07

+
+
+
+
广州某技术科技公司办公家具采购案例
+
+

广州某技术科技公司办公家具采购案例

+

广州2024.10.07

+
+
+
+
上海某医疗科技公司办公家具采购案例
+
+

上海某医疗科技公司办公家具采购案例

+

上海2024.10.04

+
+
+
+
深圳某智能清洁科技公司办公家具采购案例
+
+

深圳某智能清洁科技公司办公家具采购案例

+

深圳2024.09.30

+
+
+
+
天津某复合材料公司办公家具采购案例
+
+

天津某复合材料公司办公家具采购案例

+

天津2024.09.30

+
+
+
+
上海某自动化技术公司办公家具采购案例
+
+

上海某自动化技术公司办公家具采购案例

+

上海2024.09.27

+
+
+
+
深圳某电子科技公司办公家具采购案例
+
+

深圳某电子科技公司办公家具采购案例

+

深圳2024.09.26

+
+
+
+
广州某体育文化发展公司办公家具采购案例
+
+

广州某体育文化发展公司办公家具采购案例

+

广州2024.09.23

+
+
+
+
苏州某设备研发公司办公家具采购案例
+
+

苏州某设备研发公司办公家具采购案例

+

苏州2024.09.21

+
+
+
+
深圳某电子科技公司办公家具采购案例
+
+

深圳某电子科技公司办公家具采购案例

+

深圳2024.09.21

+
+
+
+
成都某科技公司办公家具采购案例
+
+

成都某科技公司办公家具采购案例

+

成都2024.09.20

+
+
+
+
上海某国际贸易公司办公家具采购案例
+
+

上海某国际贸易公司办公家具采购案例

+

上海2024.09.18

+
+
+
+
杭州某科技公司办公家具采购案例
+
+

杭州某科技公司办公家具采购案例

+

杭州2024.09.18

+
+
+
+
+
+
深圳某电子科技公司办公家具采购案例
+
+

深圳某电子科技公司办公家具采购案例

+

深圳2024.09.21

+
+
+
+
上海某国际贸易公司办公家具采购案例
+
+

上海某国际贸易公司办公家具采购案例

+

上海2024.09.18

+
+
+
+
深圳某互联网科技公司办公家具采购案例
+
+

深圳某互联网科技公司办公家具采购案例

+

深圳2024.08.31

+
+
+
+
上海某网络科技公司办公家具采购案例
+
+

上海某网络科技公司办公家具采购案例

+

上海2024.08.17

+
+
+
+
北京某研究院有限公司二手办公家具采购案例
+
+

北京某研究院有限公司二手办公家具采购案例

+

北京2024.08.05

+
+
+
+
上海某知名游戏公司办公家具采购案例
+
+

上海某知名游戏公司办公家具采购案例

+

上海2024.07.17

+
+
+
+
浙江某技术运营公司办公家具采购案例
+
+

浙江某技术运营公司办公家具采购案例

+

杭州2024.07.10

+
+
+
+
北京某环境技术公司办公家具采购案例
+
+

北京某环境技术公司办公家具采购案例

+

北京2024.07.01

+
+
+
+
国内某知名电商平台(成都)办公家具采购案例
+
+

国内某知名电商平台(成都)办公家具采购案例

+

成都2024.06.24

+
+
+
+
天津某国际贸易公司办公家具采购案例
+
+

天津某国际贸易公司办公家具采购案例

+

天津2024.06.11

+
+
+
+
天津某电商公司办公家具采购案例
+
+

天津某电商公司办公家具采购案例

+

天津2024.06.08

+
+
+
+
深圳某数据科技公司办公家具采购案例
+
+

深圳某数据科技公司办公家具采购案例

+

深圳2024.05.26

+
+
+
+
广州某服饰网络科技公司办公家具采购案例
+
+

广州某服饰网络科技公司办公家具采购案例

+

广州2024.05.18

+
+
+
+
国内某知名电子商务公司办公家具采购案例
+
+

国内某知名电子商务公司办公家具采购案例

+

成都2024.05.04

+
+
+
+
北京某教育科技公司办公家具采购案例
+
+

北京某教育科技公司办公家具采购案例

+

北京2024.05.01

+
+
+
+
杭州某电子商务公司办公家具采购案例
+
+

杭州某电子商务公司办公家具采购案例

+

杭州2024.04.30

+
+
+
+
+
+
上海某医疗科技公司办公家具采购案例
+
+

上海某医疗科技公司办公家具采购案例

+

上海2024.10.04

+
+
+
+
国内某教育培训公司二手办公家具采购案例
+
+

国内某教育培训公司二手办公家具采购案例

+

北京/西安2024年5-8月

+
+
+
+
国内某知名在线教育集团(济南)办公家具采购项目
+
+

国内某知名在线教育集团(济南)办公家具采购项目

+

天津2024.06.26

+
+
+
+
国内某知名口腔护理公司办公家具采购案例
+
+

国内某知名口腔护理公司办公家具采购案例

+

山东济南2024.06.18

+
+
+
+
北京某知名教育培训公司办公家具采购案例
+
+

北京某知名教育培训公司办公家具采购案例

+

北京2024.05.30

+
+
+
+
苏州某医药连锁公司办公家具采购案例
+
+

苏州某医药连锁公司办公家具采购案例

+

杭州2024.05.11

+
+
+
+
上海某医疗科技公司办公家具采购案例
+
+

上海某医疗科技公司办公家具采购案例

+

上海2024.03.25

+
+
+
+
深圳某生物科技公司办公家具采购案例
+
+

深圳某生物科技公司办公家具采购案例

+

深圳2024.02.25

+
+
+
+
杭州某教育服务公司办公家具采购案例
+
+

杭州某教育服务公司办公家具采购案例

+

杭州2023.12.2

+
+
+
+
天津某教育咨询公司办公家具采购案例
+
+

天津某教育咨询公司办公家具采购案例

+

天津2023.09.28

+
+
+
+
上海某教育公司办公家具采购案例
+
+

上海某教育公司办公家具采购案例

+

上海2023.08.30

+
+
+
+
某在线教育集团(北京)办公家具采购项目
+
+

某在线教育集团(北京)办公家具采购项目

+

北京2023.08.19

+
+
+
+
杭州某美容机构公司办公家具采购案例
+
+

杭州某美容机构公司办公家具采购案例

+

杭州2023.07.27

+
+
+
+
上海某生物科技公司二手办公家具采购案例
+
+

上海某生物科技公司二手办公家具采购案例

+

上海2023.07.18

+
+
+
+
杭州某医疗科技公司二手办公家具采购案例
+
+

杭州某医疗科技公司二手办公家具采购案例

+

杭州2023.06.29

+
+
+
+
深圳某教育科技公司办公家具租赁案例
+
+

深圳某教育科技公司办公家具租赁案例

+

深圳2023.06.21

+
+
+
+
+
+
广州某设计工程公司办公家具采购案例
+
+

广州某设计工程公司办公家具采购案例

+

广州2024.10.10

+
+
+
+
上海某置业公司办公家具采购案例
+
+

上海某置业公司办公家具采购案例

+

上海2024.09.03

+
+
+
+
北京某建筑科技公司办公家具采购案例
+
+

北京某建筑科技公司办公家具采购案例

+

北京2024.08.08

+
+
+
+
山西某煤化公司办公家具采购案例
+
+

山西某煤化公司办公家具采购案例

+

山西2024.05.26

+
+
+
+
北京某建筑工程公司办公家具采购案例
+
+

北京某建筑工程公司办公家具采购案例

+

北京2024.05.14

+
+
+
+
深圳某设计公司办公家具采购案例
+
+

深圳某设计公司办公家具采购案例

+

深圳2024.03.25

+
+
+
+
东莞某环境工程技术公司办公家具采购案例
+
+

东莞某环境工程技术公司办公家具采购案例

+

深圳2024.02.24

+
+
+
+
天津某汽车设计公司办公家具采购案例
+
+

天津某汽车设计公司办公家具采购案例

+

天津2023.11.16

+
+
+
+
杭州某建筑装饰公司办公家具采购案例
+
+

杭州某建筑装饰公司办公家具采购案例

+

杭州2023.09.06

+
+
+
+
天津某房地产经济公司办公家具采购案例
+
+

天津某房地产经济公司办公家具采购案例

+

天津2023.09.05

+
+
+
+
重庆某房地产管理公司办公家具采购案例
+
+

重庆某房地产管理公司办公家具采购案例

+

重庆2023.09.02

+
+
+
+
上海某建设工程公司办公家具采购案例
+
+

上海某建设工程公司办公家具采购案例

+

上海2023.08.14

+
+
+
+
广州某建筑工程公司办公家具采购案例
+
+

广州某建筑工程公司办公家具采购案例

+

广州2023.06.25

+
+
+
+
杭州某装饰工程公司办公家具采购案例
+
+

杭州某装饰工程公司办公家具采购案例

+

杭州2023.05.23

+
+
+
+
广州某贸易公司办公家具采购案例
+
+

广州某贸易公司办公家具采购案例

+

广州2023.03.21

+
+
+
+
重庆某动漫影视公司办公家具采购案例
+
+

重庆某动漫影视公司办公家具采购案例

+

重庆2023.03

+
+
+
+ +
+
+
北京某电气科技公司办公家具采购案例
+
+

北京某电气科技公司办公家具采购案例

+

北京2024.10.11

+
+
+
+
广州某技术科技公司办公家具采购案例
+
+

广州某技术科技公司办公家具采购案例

+

广州2024.10.07

+
+
+
+
深圳某智能清洁科技公司办公家具采购案例
+
+

深圳某智能清洁科技公司办公家具采购案例

+

深圳2024.09.30

+
+
+
+
深圳某电子科技公司办公家具采购案例
+
+

深圳某电子科技公司办公家具采购案例

+

深圳2024.09.26

+
+
+
+
成都某科技公司办公家具采购案例
+
+

成都某科技公司办公家具采购案例

+

成都2024.09.20

+
+
+
+
杭州某科技公司办公家具采购案例
+
+

杭州某科技公司办公家具采购案例

+

杭州2024.09.18

+
+
+
+
广州某信息技术公司办公家具采购案例
+
+

广州某信息技术公司办公家具采购案例

+

广州2024.09.09

+
+
+
+
杭州某数智科技公司办公家具采购案例
+
+

杭州某数智科技公司办公家具采购案例

+

杭州2024.09.07

+
+
+
+
杭州某智能科技公司办公家具采购案例
+
+

杭州某智能科技公司办公家具采购案例

+

杭州2024.08.25

+
+
+
+
成都某网信科技公司办公家具采购案例
+
+

成都某网信科技公司办公家具采购案例

+

成都2024.08.17

+
+
+
+
广州某电子科技公司办公家具采购案例
+
+

广州某电子科技公司办公家具采购案例

+

广州2024.08.08

+
+
+
+
杭州某数字科技公司办公家具采购案例
+
+

杭州某数字科技公司办公家具采购案例

+

杭州2024.08.06

+
+
+
+
深圳某智能科技公司办公家具采购案例
+
+

深圳某智能科技公司办公家具采购案例

+

深圳2024.08.02

+
+
+
+
杭州某技术科技公司办公家具采购案例
+
+

杭州某技术科技公司办公家具采购案例

+

杭州2024.07.20

+
+
+
+
深圳某电子科技公司办公家具采购案例
+
+

深圳某电子科技公司办公家具采购案例

+

深圳2024.07.16

+
+
+
+
成都某智能科技公司办公家具采购案例
+
+

成都某智能科技公司办公家具采购案例

+

成都2024.07.12

+
+
+
+
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
+

中国建筑集团溧阳市政府办公家具采购案例

+

江苏2024.03.17

+
+
+
+
成都大运会办公家具租赁项目
+
+

成都大运会办公家具租赁项目

+

成都2023年7月

+
+
+
+
南京某电力公司办公家具采购案例
+
+

南京某电力公司办公家具采购案例

+

南京2024.01.19

+
+
+
+
重庆某电力工程公司办公家具安装项目
+
+

重庆某电力工程公司办公家具安装项目

+

重庆2023年9月

+
+
+
+
重庆某电力工程公司二手办公家具采购案例
+
+

重庆某电力工程公司二手办公家具采购案例

+

重庆2023.09.26

+
+
+
+
成都大运动会项目二手办公家具租赁项目
+
+

成都大运动会项目二手办公家具租赁项目

+

成都2023.05.04

+
+
+
+
武汉某农业开发公司办公家具采购案例
+
+

武汉某农业开发公司办公家具采购案例

+

武汉2022.12

+
+
+
+
四川某文化传媒公司办公家具采购案例
+
+

四川某文化传媒公司办公家具采购案例

+

成都2022年10月

+
+
+
+
中勤万信会计师事务所湖北分所安装项目
+
+

中勤万信会计师事务所湖北分所安装项目

+

武汉2022年4月

+
+
+
+
+
+
上海某财务管理咨询公司办公家具采购案例
+
+

上海某财务管理咨询公司办公家具采购案例

+

上海2024.04.25

+
+
+
+
杭州某商业银行公司办公家具采购案例
+
+

杭州某商业银行公司办公家具采购案例

+

杭州2023.11.04

+
+
+
+
广州某金融机构办公家具采购案例
+
+

广州某金融机构办公家具采购案例

+

广州2023.10.18

+
+
+
+
深圳某金融服务公司办公家具采购案例
+
+

深圳某金融服务公司办公家具采购案例

+

深圳2023.03

+
+
+
+
杭州某金融公司二手办公家具租赁案例
+
+

杭州某金融公司二手办公家具租赁案例

+

杭州2022.10

+
+
+
+
上海某金融服务公司二手办公家具采购案例
+
+

上海某金融服务公司二手办公家具采购案例

+

上海2022年10月

+
+
+
+
杭州某网络科技公司办公家具采购案例
+
+

杭州某网络科技公司办公家具采购案例

+

杭州2022年9月

+
+
+
+
中国某健康保险公司办公家具采购案例
+
+

中国某健康保险公司办公家具采购案例

+

北京朝阳区2022年6月

+
+
+
+
+
+
苏州某能源科技公司办公家具采购案例
+
+

苏州某能源科技公司办公家具采购案例

+

上海2024.10.07

+
+
+
+
天津某复合材料公司办公家具采购案例
+
+

天津某复合材料公司办公家具采购案例

+

天津2024.09.30

+
+
+
+
上海某自动化技术公司办公家具采购案例
+
+

上海某自动化技术公司办公家具采购案例

+

上海2024.09.27

+
+
+
+
苏州某设备研发公司办公家具采购案例
+
+

苏州某设备研发公司办公家具采购案例

+

苏州2024.09.21

+
+
+
+
天津某液压技术公司办公家具采购案例
+
+

天津某液压技术公司办公家具采购案例

+

天津2024.09.06

+
+
+
+
深圳某五金塑胶制品公司办公家具采购案例
+
+

深圳某五金塑胶制品公司办公家具采购案例

+

深圳2024.09.04

+
+
+
+
天津某工业研究院公司办公家具采购案例
+
+

天津某工业研究院公司办公家具采购案例

+

天津2024.08.17

+
+
+
+
常州某能源装备上市公司办公家具采购案例
+
+

常州某能源装备上市公司办公家具采购案例

+

常州2024.08.13

+
+
+
+
某知名保健品公司办公家具采购案例
+
+

某知名保健品公司办公家具采购案例

+

上海2024.07.21

+
+
+
+
苏州某智能设备公司办公家具采购案例
+
+

苏州某智能设备公司办公家具采购案例

+

苏州2024.07.10

+
+
+
+
杭州某护理用品公司办公家具采购案例
+
+

杭州某护理用品公司办公家具采购案例

+

杭州2024.05.16

+
+
+
+
广州某包装制品公司办公家具采购案例
+
+

广州某包装制品公司办公家具采购案例

+

广州2024.04.12

+
+
+
+
苏州某光电公司二手办公家具采购案例
+
+

苏州某光电公司二手办公家具采购案例

+

苏州2024.02.28

+
+
+
+
天津某机电股份公司办公家具采购案例
+
+

天津某机电股份公司办公家具采购案例

+

天津2024.01.28

+
+
+
+
上海某电路设计公司办公家具采购案例
+
+

上海某电路设计公司办公家具采购案例

+

上海2024.01.27

+
+
+
+
天津某汽车设计公司办公家具采购案例(第二期)
+
+

天津某汽车设计公司办公家具采购案例(第二期)

+

天津2024.01.14

+
+
+
+
+
+
深圳某知名口腔护理公司办公家具采购案例
+
+

深圳某知名口腔护理公司办公家具采购案例

+

深圳2024.10.09

+
+
+
+
广州某体育文化发展公司办公家具采购案例
+
+

广州某体育文化发展公司办公家具采购案例

+

广州2024.09.23

+
+
+
+
深圳某商务发展公司办公家具采购案例
+
+

深圳某商务发展公司办公家具采购案例

+

深圳2024.09.13

+
+
+
+
北京某文化发展公司办公家具采购案例
+
+

北京某文化发展公司办公家具采购案例

+

北京2024.09.07

+
+
+
+
北京某文化发展公司办公家具采购案例
+
+

北京某文化发展公司办公家具采购案例

+

北京2024.09.07

+
+
+
+
广州某传媒公司办公家具采购案例
+
+

广州某传媒公司办公家具采购案例

+

广州2024.09.01

+
+
+
+
上海某创业孵化器公司办公家具采购案例
+
+

上海某创业孵化器公司办公家具采购案例

+

上海2024.08.30

+
+
+
+
上海某创业中心办公家具采购案例
+
+

上海某创业中心办公家具采购案例

+

上海2024.08.28

+
+
+
+
广州某人才服务公司办公家具采购案例
+
+

广州某人才服务公司办公家具采购案例

+

广州2024.08.28

+
+
+
+
深圳某创意文化公司办公家具采购案例
+
+

深圳某创意文化公司办公家具采购案例

+

深圳2024.08.21

+
+
+
+
杭州某人力资源公司办公家具采购案例
+
+

杭州某人力资源公司办公家具采购案例

+

杭州2024.08.15

+
+
+
+
深圳某货运代理公司办公家具采购案例
+
+

深圳某货运代理公司办公家具采购案例

+

深圳2024.08.14

+
+
+
+
佛山某文化传媒公司办公家具采购案例
+
+

佛山某文化传媒公司办公家具采购案例

+

佛山2024.08.14

+
+
+
+
成都某网盾科技公司办公家具采购案例
+
+

成都某网盾科技公司办公家具采购案例

+

成都2024.08.06

+
+
+
+
成都某文化传媒公司办公家具采购案例
+
+

成都某文化传媒公司办公家具采购案例

+

成都2024.08.01

+
+
+
+
佛山某服务管理公司办公家具采购案例
+
+

佛山某服务管理公司办公家具采购案例

+

广州2024.07.10

+
+
+
+ +
点击了解更多安装案例 >>
+
+
+
+
+ +
+
+
+

1500+家具回收合作伙伴

+

成功服务1500余家在华世界500强及知名大中型知名企业

+
+
+
+ 企业品牌 +
+ +
+
+
国内某知名短视频企业回收项目
+
+

国内某知名短视频企业回收项目

+

2023年10月,为该公司提供全国范围内的回收服务,回收家具包含:员工办公桌椅柜、文件柜、沙发茶几、餐桌椅等

+
+
+
+
上海某互娱科技公司回收项目
+
+

上海某互娱科技公司回收项目

+

2023年8月,从该互娱科技公司回收500多套二手办公家具。

+
+
+
+
某500强国际银行回收项目(上海)
+
+

某500强国际银行回收项目(上海)

+

2023年5月,为世界500强国际银行提供办公家具回收服务,回收家具品牌为:海沃氏。

+
+
+
+
某连锁水果品牌办公家具回收项目(广州)
+
+

某连锁水果品牌办公家具回收项目(广州)

+

2023年4-5月,为某水果连锁品牌公司提供办公家具回收服务,家具品牌:欧林、震旦等

+
+
+
+
领英(北京)回收项目
+
+

领英(北京)回收项目

+

2023年1月,为领英(北京)公司提供办公家具回收服务,家具品牌:海沃氏、国林等

+
+
+
+
某跨境电商企业回收项目(深圳)
+
+

某跨境电商企业回收项目(深圳)

+

2023年2月,为某跨境电商公司提供办公家具回收服务,家具品牌:科誉、玛祖铭立等

+
+
+
+
IBM(广州)回收项目
+
+

IBM(广州)回收项目

+

2022年,为IBM广州分部提供办公家具回收服务,家具品牌:海沃氏、世楷等

+
+
+
+
阿里巴巴(杭州)回收项目
+
+

阿里巴巴(杭州)回收项目

+

2022年,为阿里巴巴杭州分部提供办公家具回收服务,回收办公家具约1000多套。

+
+
+
+
荣耀公司回收项目(杭州)
+
+

荣耀公司回收项目(杭州)

+

2022年,为荣耀公司杭州分部提供办公家具回收服务,家具品牌:百利、海沃氏等

+
+
+
+
有赞微商城回收项目
+
+

有赞微商城回收项目

+

2022年,为有赞微商城提供全国范围内的办公家具回收服务,约3000多套。

+
+
+
+
无限极研究所回收项目
+
+

无限极研究所回收项目

+

2022年,为无限极研究所广州公司提供办公家具回收服务,家具品牌:科誉等。

+
+
+
+
猿辅导在线教育回收案例
+
+

猿辅导在线教育回收案例

+

2021-2022年,和猿辅导达成合作关系,全国回收上千套诺伟品牌办公家具产品。

+
+
+
+
SAP思爱普公司办公家具回收项目
+
+

SAP思爱普公司办公家具回收项目

+

2021年,为思爱普公司提供办公家具回收项目,家具品牌大多是海沃氏。

+
+
+
+
强生(上海)回收项目
+
+

强生(上海)回收项目

+

2016年,为强生(上海)提供办公家具回收服务,家具品牌:海沃氏、世楷等。

+
+
+
+
仲量联行JLL公司回收项目(上海)
+
+

仲量联行JLL公司回收项目(上海)

+

2017年,为仲量联行JLL提供办公家具回收服务,家具品牌为海沃氏。

+
+
+
+
百事可乐公司回收项目(中国)
+
+

百事可乐公司回收项目(中国)

+

2017年,与百事可乐公司达成合作,提供上海公司的办公家具回收项目。

+
+
+
+ +
点击了解更多回收案例 >>
+
+
+
+
+ +
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/esg.html b/themes/huishou/layouts/_default/esg.html new file mode 100644 index 0000000..e4f9f98 --- /dev/null +++ b/themes/huishou/layouts/_default/esg.html @@ -0,0 +1,228 @@ +{{ define "meta" }} +二手办公家具ESG碳减排-装配狮循环家具 + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+ ESG碳减排 +
+ + +
+
+

深耕办公服务圈
助力企业ESG碳减排

+

构建起以中高端办公家具为主的“资源回收—筛选分类—翻新仓储—租售兼
营”可租可售可回收的全生态链专业服务体系。

+
+
+
+
89%
+
+

+

{{ .Site.Params.companyStart}}-2023年装配狮所有办公家具的家具回收利用率最高可达89%

+
+
+
+
2742.11吨
+
+

+

经CEC评价,装配狮开展的32种家具碳减排项目,报告期内减排量为2742.11吨

+
+
+
+
50%
+
+

+

经中环联合认证中心专家估算,二手办公家具减排量可达30-50%

+
+
+
+
300万+
+
+

+

经核算,从2009年至今约循环利用了300万余件二手办公家具

+
+
+
+ +
+ +
+
+
+

注重经济和环境双重效益
献力低碳循环经济产业

+

将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,
并对其他进行零部件拆解,
化整为零,对可利用的板材、组件、零件进行归类再次利用。

+
+
+ + +
+
+
+
+
+ +
+
+

家具使用越久
资源消耗越少

+

实现更多可使用家具的回收再利用装配狮邀您一起,
低碳减排,绿色办公!

+
+
+
+
90816
+
客户合作数
+
+
+
1150334
+
循环家具数
+
+
+
27468720kg
+
合计减碳值
+
+
+
(数据统计周期:2021年1月1日0时至今)
+
+ +
+
+
+

为企业颁布
碳减排评价证书

+

根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减
排评价证书,帮助企业实现碳中和。

+
+
+
    +
  • +
  • +
  • +
+
+
+
+ +
+
+
+

担当企业责任
助力社会公益

+

+
+ +
+
+
+
大树之光×守护童心计划,携手猿力科技有限公司,将279本童书绘本送到云南泸沽湖达组小学有需要的孩子手中
+
+
+
+
为渣打银行“未来创客”项目捐赠241088元,用于开展公益慈善活动
+
+
+
+
携手JLL仲量联行,开启大树之光 × 换新衣计划,向云南昭通大寨村完小学及新开村小学的339位孩子送去冬衣御寒
+
+
+
+
大树之光 × 湿地守护计划,向上海崇明东滩鸟类国家级自然保护区中兴镇富圩村基地教室捐赠家具69件
+
+
+
更多公益我们一直在行动
+
+
+ +
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/home.html b/themes/huishou/layouts/_default/home.html new file mode 100644 index 0000000..57bf7d9 --- /dev/null +++ b/themes/huishou/layouts/_default/home.html @@ -0,0 +1,2183 @@ +{{ define "meta" }} + + + + +企业办公家具采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+
+
+ +
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+ +
+
+

ESG碳减排

+

装配狮献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+
+
+

Hi~欢迎来到装配狮

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来装配狮

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意装配狮的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

装配狮办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在装配狮一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 + 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们装配狮一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,装配狮北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 + 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 + 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为装配狮的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们装配狮合作,此次采购二手办公家具约1500多件。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 + 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们装配狮,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 + 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们装配狮一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 + 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 + 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。装配狮作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们装配狮,秉持着为企业节约成本,为社会节约资源的想法,选择了我们装配狮的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 + 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
装配狮助力ESG碳减排
+
装配狮从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。 +
+
+
+
90816
+
合作客户数
+
+
+
1150334
+
循环家具数
+
+
+
27468720kg
+
合计减碳值
+
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+
+
+
+

二手办公家具行业资讯

+

更快掌握装配狮最新动态和行业动态 + 查看全部资讯> +

+
+
+ {{ $pages := .Site.RegularPages }} +
+ {{ $firstPage := first 1 $pages }} + {{ range $firstPage }} + {{ $images := .Resources.ByType "image" }} + {{ $firstImage := index $images 0 }} + +
+
+
+

{{ .Title }}

+

+ 市场资讯 + {{ .Date.Format "2006-01-02" }} +

+
+
+
+ {{ end }} +
+
+ {{ range (first 6 (after 1 $pages)) }} + +
+
{{ .Title }}
+
+ 家具知识 + {{ .Date.Format "2006-01-02" }} +
+
+
+ {{ end }} +
+
+
+
+ + + +
+{{ end }} + +{{ define "footscript" }} + + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/kefu.html b/themes/huishou/layouts/_default/kefu.html new file mode 100644 index 0000000..c48a525 --- /dev/null +++ b/themes/huishou/layouts/_default/kefu.html @@ -0,0 +1,37 @@ +{{ define "meta" }} +办公家具采购平台客服 - {{ .Site.Title }} + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/list.html b/themes/huishou/layouts/_default/list.html new file mode 100644 index 0000000..e77e791 --- /dev/null +++ b/themes/huishou/layouts/_default/list.html @@ -0,0 +1,185 @@ +{{ define "meta" }} +二手办公家具行业资讯_二手办公家具市场动态-装配狮 + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+ +
+
+
+
+
    +
  • 热门推荐
  • +
+
+
+ {{ $pages := .Site.RegularPages }} + {{ $count := len $pages }} + {{ $numArticles := 5 }} + + {{ $indices := seq 0 (sub $count 1) }} + {{ $randomIndices := shuffle $indices }} + + {{ if gt $count $numArticles }} + {{ $randomIndices = $randomIndices | first $numArticles }} + {{ end }} + + {{ range $index := $randomIndices }} + {{ $page := index $pages $index }} + {{ $images := $page.Resources.ByType "image" }} + {{ $firstImage := index $images 0 }} + +
+
+
+
+

{{ $page.Title }}

+

{{ $page.Date.Format "2006-01-02" }}

+
+
+
+ {{ end }} +
+ +
+
+
+

企业采购办公家具就来装配狮

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意装配狮的 用户协议 +
+
+ +
+
+
+
+
+
+ +
+
+
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/news.html b/themes/huishou/layouts/_default/news.html new file mode 100644 index 0000000..392bf8c --- /dev/null +++ b/themes/huishou/layouts/_default/news.html @@ -0,0 +1,212 @@ +{{ define "meta" }} +二手办公家具行业资讯_二手办公家具市场动态-装配狮 + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+
+ + +
+
+
+
+
+ +
+
+ {{ range .Site.RegularPages }} + {{ $images := .Resources.ByType "image" }} + {{ $firstImage := index $images 0 }} + +
+
+
+
+

{{ .LinkTitle }}

+

{{ .Summary | plainify }}

+
+ + 企业动态 + + {{ .Date.Format "2006-01-02" }} +
+
+
+
+ {{ end }} +
+
+
+
+
+
+

企业采购办公家具就来装配狮

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意装配狮的 用户协议 +
+
+ +
+
+
+
+
+
+
    +
  • 热门推荐
  • +
+
+
+ {{ $pages := .Site.RegularPages }} + {{ $count := len $pages }} + {{ $numArticles := 5 }} + + {{ $indices := seq 0 (sub $count 1) }} + {{ $randomIndices := shuffle $indices }} + + {{ if gt $count $numArticles }} + {{ $randomIndices = $randomIndices | first $numArticles }} + {{ end }} + + {{ range $index := $randomIndices }} + {{ $page := index $pages $index }} + {{ $images := $page.Resources.ByType "image" }} + {{ $firstImage := index $images 0 }} + +
+
+
+
+

{{ $page.Title }}

+

{{ $page.Date.Format "2006-01-02" }}

+
+
+
+ {{ end }} +
+
+
+
+
+ +
+
+
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/product.html b/themes/huishou/layouts/_default/product.html new file mode 100644 index 0000000..e3ee3d3 --- /dev/null +++ b/themes/huishou/layouts/_default/product.html @@ -0,0 +1,903 @@ +{{ define "meta" }} +世界500强企业用的办公家具-二手办公家具出售|租赁-装配狮 + + +{{ end }} + +{{ define "headscript" }} + + + +{{ end }} + +{{ define "main" }} +
+
+
+
+ 首页 + > + 商品结果 +
+ +
+
+
+ +
+ + + + +
+ +
+
+
+
+ +
+
+ +
+
+
+
+
+
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/single.html b/themes/huishou/layouts/_default/single.html new file mode 100644 index 0000000..97c0315 --- /dev/null +++ b/themes/huishou/layouts/_default/single.html @@ -0,0 +1,198 @@ +{{ define "meta" }} +{{ .Title }} - {{ .Site.Title }} + + +{{ $images := .Resources.ByType "image" }} +{{ $firstImage := index $images 0 }} + + + + + + + + + + + +{{ end }} + +{{ define "headscript" }} + + +{{ end }} + +{{ define "main" }} +
+ +
+
+
+ +
+
+
+ +
+
+
+

{{ .Title }}

+
+
    + {{- if .Date -}}
  • 发布时间:{{- .Date.Format "2006-01-02" -}} + {{- if $.Site.Params.showLastUpdated -}} + {{- or $.Site.Params.updatedDatePrefix "Updated" -}} :: {{- .Lastmod.Format "2006-01-02" -}} + {{- end -}}
  • {{- end -}} + {{- with .Params.Author -}}
  • 作者:{{ . }}
  • {{- end -}} +
  • {{ range .Params.tags }} + #{{ . }}  + {{ end }}
  • +
+
+
+ 【导读】{{ .Summary | plainify }} +
+
+ {{- with .Content -}} + {{ . | replaceRE "()" `${1}# ${3}` | safeHTML }} + {{- end -}} +
+
+
+ + 2 +
+
+
+ +
+
+
+
+
+
+
+
    +
  • 热门推荐
  • +
+
+
+ {{ $pages := .Site.RegularPages }} + {{ $count := len $pages }} + {{ $numArticles := 5 }} + + {{ $indices := seq 0 (sub $count 1) }} + {{ $randomIndices := shuffle $indices }} + + {{ if gt $count $numArticles }} + {{ $randomIndices = $randomIndices | first $numArticles }} + {{ end }} + + {{ range $index := $randomIndices }} + {{ $page := index $pages $index }} + {{ $images := $page.Resources.ByType "image" }} + {{ $firstImage := index $images 0 }} + +
+
+
+
+

{{ $page.Title }}

+

{{ $page.Date.Format "2006-01-02" }}

+
+
+
+ {{ end }} +
+ +
+
+
+

企业采购办公家具就来装配狮

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意装配狮的 用户协议 +
+
+ +
+
+
+
+
+
+ +
+
+ +
+ +
+{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/_default/temp.html b/themes/huishou/layouts/_default/temp.html new file mode 100644 index 0000000..1a5109b --- /dev/null +++ b/themes/huishou/layouts/_default/temp.html @@ -0,0 +1,15 @@ +{{ define "meta" }} + +{{ end }} + +{{ define "headscript" }} + +{{ end }} + +{{ define "main" }} + +{{ end }} + +{{ define "footscript" }} + +{{ end }} \ No newline at end of file diff --git a/themes/huishou/layouts/robots.txt b/themes/huishou/layouts/robots.txt new file mode 100644 index 0000000..10ceaba --- /dev/null +++ b/themes/huishou/layouts/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: /index + +Sitemap: {{ "sitemap.xml" | absURL }} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/about.css b/themes/huishou/static/assets/css/about.css new file mode 100644 index 0000000..45847bb --- /dev/null +++ b/themes/huishou/static/assets/css/about.css @@ -0,0 +1,550 @@ +.layout-tilte { + text-align: center; + padding: 50px 0; +} + +.layout-tilte p:nth-child(1) { + font-size: 45px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; + padding-bottom: 20px; +} + +.layout-tilte p:nth-child(2) { + width: 75px; + margin: 0 auto; + border: 2px solid #50972c; +} + +/*头部banner*/ +.banner-about { + height: 867px; + background-image: url(../images/banner.jpg); + background-repeat: no-repeat; + background-position: center; +} +.about-banner-box{ + position: relative; + top: 150px; + color: #ffffff; + margin: 0 20px; +} +.box-logo{ + +} +.box-title{ + font-size: 70px; + margin-top: 55px; + width: 600px; + display: flex; + flex-flow: column; + line-height: 80px; +} +.box-title em{ + width: 160px; + height: 3px; + background-color: #ffffff; + margin-top: 40px; +} +.box-number{ + display: flex; + justify-content: space-between; + width: 750px; +} +.box-number dl{ + width: 230px; + height: 100px; + border: 1px solid; + border-radius: 15px; + margin-top: 80px; + display: flex; + flex-flow: column; + text-align: center; + align-items: center; + justify-content: center; +} +.box-number dt{ + font-size: 40px; +} +.box-number dt em{ + font-size: 24px; + padding-left: 5px; +} +.box-number dd{ + font-size: 18px; +} + +/*品牌介绍*/ +.brand-intro{ + height: 867px; + background-image: url(../images/brand-intro.jpg); + background-repeat: no-repeat; + background-position: center; +} +.intro-box{ + height: 100%; + color: #ffffff; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro-title{ + font-size: 60px; + padding-bottom: 75px; +} +.intro-content{ + font-size: 25px; + line-height: 46px; + padding-bottom: 60px; +} +.intro-video{ + font-size: 25px; + display: flex; + justify-content: center; + text-align: center; + align-items: center; + cursor: pointer; +} +.intro-video img{ + width:28px; + height:28px; + padding-left:10px; +} + + +/*展厅实景*/ +.zt-site{ + height: 867px; + background-image: url(../images/site-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.site-box { + position: relative; +} +.zt-nav{ + padding-bottom: 40px; +} +.zt-nav ul{ + display: flex; + justify-content: center; + font-size: 18px; +} +.zt-nav ul li{ + /*width: 117px;*/ + cursor: pointer; + padding: 0 15px; +} +.zt-nav .active { + background-color: #1f8031; + color: #ffffff; + padding: 5px 15px; + border-radius: 25px; +} +.zt-intro { + height: 527px; + background-color: #fff; + display: flex; +} + +.zt-intro ul { + width: 291px; + height: 527px; + padding: 0 48px; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; +} +.zt-intro ul li:nth-child(1) { + color: #1f8031; + font-size: 39px; + font-weight: 700; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(2) { + font-size: 26px; + line-height: 35px; + color: #8a8a8a; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(3) { + font-size: 22px; + line-height: 30px; + color: #8a8a8a; + letter-spacing: 0.63px; + padding-bottom: 40px; +} +.zt-intro ul li:nth-child(4){ + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + align-items: center; +} +.zt-intro ul li:nth-child(4) span:nth-child(1) { + font-size: 22px; + color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; + margin-bottom: 25px; +} +.zt-intro ul li:nth-child(4) span:nth-child(2) { + font-size: 22px; + color: #ffffff; + background-color: #50972c; + cursor: pointer; + border: 1px solid; + border-radius: 20px; + padding: 5px 10px; + width: 140px; +} +.zt-intro .intro-img { + width: 893px; + height: 527px; +} +.zt-intro .intro-img .swiper-slide{ + height: 527px; +} +.zt-intro .intro-img img{ + width: 100%; + height: 100%; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-button-prev { + top: 555px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #ffffff; + color: #1f8031; +} +.zt-intro .swiper-button-next:after, .zt-intro .swiper-button-prev:after{ + font-size: 14px !important; +} +.zt-intro .swiper-button-prev, .zt-intro .swiper-container-rtl .swiper-button-next { + left: 92% !important; +} +.zt-intro .swiper-button-next, .zt-intro .swiper-container-rtl .swiper-button-prev { + right: 2% !important; +} +.zt-intro .swiper-button-next.swiper-button-disabled, .zt-intro .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +/*企业文化*/ +.qywh{ + height: 867px; + background-image: url(../images/qywh1-bg.jpg); + background-repeat: no-repeat; + background-position: center; +} +.qywh-box .slide-content{ + display: flex; + color: #ffffff; +} +.qywh-box .slide-content .slide-content-left{ + width: 584px; + padding-left: 120px; + padding-top: 63px; + background-color: rgba(255,255,255,0.1); +} +.qywh-box .slide-content .slide-content-left div:nth-child(1){ + font-size: 32px; + display: flex; + align-items: center; + padding-bottom: 90px; +} +.qywh-box .slide-content .slide-content-left em{ + width: 5px; + height: 29px; + background-color: #1f8031; + margin-right: 13px; + margin-top: 4px; +} +.qywh-box .slide-content .slide-content-left div:nth-child(2){ + font-size: 30px; +} +.qywh-box .slide-content img{ + +} + +.solid-qywh{ + color: #ffffff; + padding-top: 65px; + font-size: 20px; +} +.solid-qywh .swiper-wrapper { + display: flex; + justify-content: center; + border-top: 1px solid; +} +.solid-qywh .swiper-slide { + width: 190px !important; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + padding-top: 15px; + cursor: pointer; +} +.solid-qywh .swiper-slide em:nth-child(1){ + display: inline-block; + width: 10px; + height: 10px; + border-radius: 20px; + background-color: #ffffff; + position: absolute; + top: -6px; + z-index: 99; +} +.solid-qywh .swiper-slide em:nth-child(2){ + display: inline-block; + width: 20px; + height: 20px; + border-radius: 20px; + background-color: rgba(255,255,255,0.3); + position: absolute; + top: -11px; + z-index: 98; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(1){ + background-color: #50972c; +} +.solid-qywh .swiper-slide-thumb-active em:nth-child(2){ + background-color: rgba(82,151,45,0.3); +} + +/*荣誉*/ +.part5{ + height: 867px; + background-image: url(../images/banner-certify.jpg); + background-repeat: no-repeat; + background-position: center; +} + +/*发展历程*/ +.course{ + height: 867px; + background-image: url(../images/banner-course.jpg); + background-repeat: no-repeat; + background-position: center; +} +.milestone-tab{ + border-bottom: 1px solid #ffffff !important; +} +.milestone-tab .item-li{ + margin: 0 auto; + text-align: center; + display: flex; + flex-flow: wrap; + align-items: flex-end; + height: 100px !important; + position: relative; +} +.milestone-title { + text-align: center; + /*margin: 0 auto 10px !important;*/ + color: #ffffff; +} +.milestone-title .swiper-slide-thumb-active{ + /*color: #50972c;*/ + /*border-bottom: 2px solid #50972c;*/ + /*font-weight: bold;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li div{ + margin: 0 7px; + border-radius: 50% !important; + position: absolute; + right: 0; +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active1{ + /*width: 1px !important;*/ + /*height: 15px !important;*/ + /*background: #ffffff !important;*/ + /*z-index: 1;*/ + /*right: 10px;*/ + /*bottom: 0px;*/ + /*border-radius: unset !important;*/ +} +.milestone-title .swiper-slide-thumb-active .item-li .item-active2{ + width: 20px !important; + height: 20px !important; + z-index: 2; + background: #50972d !important; + right: 3px; + bottom: 3px; + +} + +.milestone-title .swiper-slide-thumb-active span{ + font-size: 60px !important; + top: 0 !important; + left: 125px !important;; +} +.milestone-title .swiper-slide { + width: 195px !important; + padding-right: 10px; + margin: 0 !important; + height: 100px !important; + position: relative !important; +} +.milestone-title .swiper-slide span{ + top: 20px; + left: 155px; + font-size: 30px; +} +.milestone-title .swiper-slide .item-li div{ + width: 1px !important; + height: 15px !important; + background: #ffffff !important; + margin: 0 7px; + position: absolute; + right: 0; + bottom: 0; +} + +.milestone-item dl{ + display: flex; +} +.milestone-item dt{ + width: 494px; + height: 336px; +} +.milestone-item img{ + width: 100%; + /*border-radius: 5px 0 0 5px;*/ +} +.milestone-item dd{ + font-size: 16px; + color: #747272; + padding: 30px 40px; + line-height: 30px; + width: 606px; + height: 276px; + background: #ffffff; + /*border-radius: 0 5px 5px 0;*/ +} +.milestone-item dd p{ + line-height: 30px; +} +.milestone-item dd span{ + font-weight: 700; + color: #50972c; +} +.course-box{ + width: 1180px; + margin-left: 50px; + padding-top: 30px; +} +.course .swiper-button-next, .course .swiper-button-prev { + top: 260px !important; +} +.course .swiper-button-prev, +.course .swiper-container-rtl .swiper-button-next { + left: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} +.course .swiper-button-next:after, .course .swiper-button-prev:after{ + font-size: 16px !important; +} +.course .swiper-button-next, +.course .swiper-container-rtl .swiper-button-prev { + right: 0 !important; + color: #ffffff; + border-radius: 50%; + border: 2px solid #ffffff; + width: 45px; + height: 45px; +} + + +/*爱心公益*/ +.welfare{ + height: 800px; + +} +.welfare-box{ + position: relative; +} +.welfare-box .swiper-welfare{ + height: 460px; +} +.welfare-box .swiper-welfare .swiper-slide{ + +} +.welfare-box .swiper-welfare .swiper-slide-active{ + /*background-color: #1f8031 !important;*/ + /*color: #ffffff;*/ +} +.welfare-box .swiper-button-next, .welfare-box .swiper-button-prev { + top: 530px !important; + border: 2px solid #e9e9e9; + width: 30px; + height: 30px; + border-radius: 50%; + background-color: #1f8031; + color: #ffffff; +} +.welfare-box .swiper-button-next:after, .welfare-box .swiper-button-prev:after{ + font-size: 14px !important; +} +.welfare-box .swiper-button-prev, .welfare-box .swiper-container-rtl .swiper-button-next { + left: 89% !important; +} +.welfare-box .swiper-button-next, .welfare-box .swiper-container-rtl .swiper-button-prev { + right: 4% !important; +} +.welfare-box .swiper-button-next.swiper-button-disabled, .welfare-box .swiper-button-prev.swiper-button-disabled{ + opacity: unset !important; + background-color: #ffffff; + color: #1f8031; +} + +.welfare-box .swiper-welfare .swiper-slide dl{ + width: 265px; + height: 400px; + padding: 20px; + font-size: 18px; + background-color: #f5f5f5; +} +.welfare-box .swiper-welfare .swiper-slide dl:hover{ + background-color: #1f8031 !important; + color: #ffffff; + cursor: pointer; +} +.welfare-box .swiper-welfare .swiper-slide dl img{ + width: 100%; +} +.welfare-box .swiper-welfare .swiper-slide dt{ + padding-bottom: 35px; +} +.welfare-box .swiper-welfare .swiper-slide dd{ + +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(1){ + padding-bottom: 15px; + font-weight: 700; +} +.welfare-box .swiper-welfare .swiper-slide dd p:nth-child(2){ + line-height: 30px; + font-size: 16px; +} +.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{ + top: unset; + bottom: 0; +} +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ + background-color: #1f8031; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/animate.min.css b/themes/huishou/static/assets/css/animate.min.css new file mode 100644 index 0000000..e7dd655 --- /dev/null +++ b/themes/huishou/static/assets/css/animate.min.css @@ -0,0 +1,11 @@ +@charset "UTF-8"; + +/*! + * animate.css -http://daneden.me/animate + * Version - 3.5.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2017 Daniel Eden + */ + +.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:none}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:none}}.wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:none}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:jello;transform-origin:center}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-name:hinge}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:none}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:zoomOutUp}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:slideOutUp} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/case.css b/themes/huishou/static/assets/css/case.css new file mode 100644 index 0000000..c94867e --- /dev/null +++ b/themes/huishou/static/assets/css/case.css @@ -0,0 +1,397 @@ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} + +/*头部轮播*/ +.banner{ + position: relative; + height: 750px; + background-position: top; + background-size: cover; + background-repeat: no-repeat; +} +.banner img{ + width: 100%; +} +.banner video{ + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; + -o-object-position: center top; + object-position: center top; +} +.banner .video-div{ + background-color: rgba(0, 0, 0, 0.4); + z-index: 7; + width: 100%; + height: 100%; + position: absolute; + pointer-events: auto; +} +.banner .banner-box{ + position: absolute; + top: 0; + width: 100%; + height: 100%; + color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + text-align: center; + z-index: 8; +} +.banner .title{ + margin-bottom: 100px; +} +.banner .title p:nth-child(1){ + font-size: 65px; + padding-bottom: 50px; + } +.banner .title p:nth-child(2){ + width: 100px; + height: 5px; + background-color: #fff; + margin: 0 auto; +} +.banner .box-number{ + display: flex; + flex-flow: wrap; + justify-content: center; + margin-bottom: 130px; +} +.banner .box-number dl{ + padding: 0 100px; +} +.banner .box-number dt{ + font-size: 54px; +} +.banner .box-number dd{ + font-size: 18px; +} + +/* 案例Item */ +.case { + /*background-image: url(../images/case-bg.jpg);*/ + /*background-repeat: no-repeat;*/ + /*background-position: center;*/ + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + /*color: #ffffff;*/ +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + /*color: #ffffff;*/ +} +.case-tab a:hover{ + /*color: #ffffff;*/ +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + /*color: #ffffff;*/ +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #f4f4f4; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + +/*案例装修*/ +.case-trim{ + background-color: #f5f6f8; + padding-bottom: 30px; +} +.case-trim .case-list{ + +} +.case-trim .case-list .list-title{ + display: flex; + font-size: 16px; + align-items: center; + margin-bottom: 20px; +} +.case-trim .case-list .list-title ul{ + display: flex; +} +.case-trim .case-list .list-title li{ + border: 1px solid #999; + padding: 5px 15px; + margin-right: 15px; + cursor: pointer; +} +.case-trim .case-list .list-title .active{ + background-color: #b90010; + color: #fff; + border: 1px solid #b90010; +} +.case-trim .case-list .list-box{ + display: flex; + flex-flow: wrap; + min-height: 450px; +} +.case-trim .case-list .list-box dl{ + width: 308px; + height: 310px; +} +.case-trim .case-list .list-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.list-box .margin-rb { + margin: 0 15px 15px 0; +} +.case-trim .case-list .list-box dt{ + height: 230px; +} +.case-trim .case-list .list-box dt img{ + width: 100%; + height: 100%; +} +.case-trim .case-list .list-box dd{ + padding: 15px 10px; + background-color: #fff; +} +.case-trim .case-list .list-box dd p:nth-child(1){ + font-size: 16px; + padding-bottom: 10px; +} +.case-trim .case-list .list-box dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +/*案例回收*/ +.case-recycling{ + background-color: #ffffff; +} +.case-recycling .recycling-box{ + display: flex; + flex-flow: wrap; + padding-top: 30px; +} +.case-recycling .recycling-box dl{ + width: 308px; + height: 325px; + position: relative; +} +.case-recycling .recycling-box dl:hover{ + box-shadow: 1px 1px 10px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.case-recycling .recycling-box dt{ + height: 230px; +} +.case-recycling .recycling-box dt img{ + width: 100%; + height: 100%; +} +.case-recycling .recycling-box dd{ + padding: 15px 10px; + background-color: #f5f6f8; + height: 70px; + overflow: hidden; + /*position: absolute;*/ + /*bottom: 0;*/ + /*left: 0;*/ + /*transition: .5s;*/ + /*line-height: 22px;*/ +} +/*.case-recycling .recycling-box dd:hover{*/ + /*height: 220px;*/ +/*}*/ +.case-recycling .recycling-box dd p:nth-child(1){ + font-size: 16px; + font-weight: 700; + padding-bottom: 10px; +} +.case-recycling .recycling-box dd p:nth-child(2){ + font-size: 14px; + /*display: flex;*/ + /*justify-content: space-between;*/ + color: #999; + height: 40px; + overflow: hidden; +} +.recycling-box .margin-rb { + margin: 0 15px 15px 0; +} + +.recycling-mask { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 25px; + background-image: linear-gradient(rgba(255,255,255,.25),#fff); +} + + +.banner-bottom{ + padding: 30px 0; +} + +.case-more { + width: 280px; + height: 45px; + line-height: 45px; + text-align: center; + /*border: 1px solid #50972c;*/ + color: #50972c; + font-size: 20px; + margin: 20px auto 0; + cursor: pointer; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/certify.css b/themes/huishou/static/assets/css/certify.css new file mode 100644 index 0000000..463f748 --- /dev/null +++ b/themes/huishou/static/assets/css/certify.css @@ -0,0 +1,82 @@ +@charset "utf-8"; +/* CSS Document */ + +#certify { + position: relative; + width: 1200px; + margin: 0 auto +} + +#certify .swiper-container { + padding-bottom: 120px; + padding-top: 60px; +} + +#certify .swiper-slide { + width: 520px; + height: 408px; + background: #fff; + box-shadow: 0 8px 30px #ddd; +} +#certify .swiper-slide img{ + display:block; + width: 100%; +} +#certify .swiper-slide p { + line-height: 98px; + padding-top: 0; + text-align: center; + color: #636363; + font-size: 18px; + margin: 0; +} + +#certify .swiper-pagination { + width: 100%; + bottom: 20px; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet { + margin: 0 5px; + border: 3px solid #fff; + background-color: #d5d5d5; + width: 10px; + height: 10px; + opacity: 1; +} + +#certify .swiper-pagination-bullets .swiper-pagination-bullet-active { + border: 3px solid #50972c; + background-color: #50972c; +} + +#certify .swiper-button-prev { + left: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 0; + background-size: 100%; +} + +#certify .swiper-button-prev:hover { + background-position: 0 -46px; + background-size: 100% +} + +#certify .swiper-button-next { + right: -30px; + width: 45px; + height: 45px; + background: url(../images/wm_button_icon.png) no-repeat; + background-position: 0 -93px; + background-size: 100%; +} + +#certify .swiper-button-next:hover { + background-position: 0 -139px; + background-size: 100% +} +#certify .swiper-button-prev::after,#certify .swiper-button-next::after{ + content: ''; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/esg.css b/themes/huishou/static/assets/css/esg.css new file mode 100644 index 0000000..e3985ad --- /dev/null +++ b/themes/huishou/static/assets/css/esg.css @@ -0,0 +1,239 @@ +/* 通用Title */ +.layout { + background-color: #fff; +} + +.layout-title { + padding: 60px 0; + text-align: center; +} + +.layout-title p:nth-child(1) { + font-size: 36px; + font-weight: bold; + padding-bottom: 10px; +} + +.layout-title p:nth-child(2) { + font-size: 22px; + margin-top: 6px; + /*color: #747272;*/ +} + + + +/*服务优势*/ +.ys-item{ + +} +.ys-item dl{ + display: flex; + flex-flow: column; + /*justify-content: center;*/ + text-align: left; + width: 200px; + height: 240px; + background: #f7f7f7; + border-radius: 10px; + margin-bottom: 20px; + box-shadow: 0 0 10px 3px #e8e8e8; + padding: 0 40px; +} + +.ys-item dt{ + font-size: 42px; + color: #50972c; + font-family: fantasy; + padding-top: 35px; + height: 50px; +} +.ys-item dd{ + padding-top: 10px; +} +.ys-item dd p:nth-child(1){ + width: 80px; + border: 1px solid #50972c; +} +.ys-item dd p:nth-child(2){ + color: #747272; + letter-spacing: 0.43px; + text-align: justify; + line-height: 25px; + padding-top: 10px; + font-size: 18px; +} + +/*产业*/ +.famous { + position: relative; + border-radius: 5px; + overflow: hidden; +} +.famous .swiper-button-next, +.famous .swiper-button-prev { + top: 360px !important; +} +.famous .swiper-button-prev, +.famous .swiper-container-rtl .swiper-button-next { + left: 74% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + width: 1.97917vw; + height: 1.97917vw; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAITgAACE4AUWWMWAAAAXMSURBVHhe7Z2JmeU0EIQHIoAEYIkAiACIgCUBjgiACIAIIAOWBDgS4EiAIwGOBIAIgP4ZC3rqSX5+tiRbsur76vPM7IwtldvVreN57wYGBgZux1PT8Uh4ZHx1Oj43HV8wAr72+HPir9PxJ+OP0/ccBxyeMb5r/Nz4u/GviX9v5B/GL4xvG/UGnQZB3K+NuYS9xm+Mu4le2zqwhDeNj42Ife363hpgDAjHuV7697tl+Mz4oTF1zmaBwCF6Y9EWSNR9YuRGrIk8xOZvOQfnil3D84mxC1uhE3hvSuDgo28YnzXmfsKIdIT/1Bi7fmDTgr9nJLnFOka08e8lxE0B0d8y/mKMtQliJ82AyEjZBAK/Zty7rJwTnJ8fPrpTUUzjjyCwIiU4lkZfDomPjbEo5nHEIo6MD4za7tD2wwDvwyq0kUTKy8ZWgF3EoptkTR93BQ343qiNI7qPHsUp0Hbtzw/G3XybC/9s1EbhbUfz4lsRsxKivXpkxyKZBEI93Auov+mT7yORXVVsBiG+ATSoJT9eCkaaKjYlahWQif2FexU5ICY2Q/yiwH/9BWFPdpECczXa72J1NslPByNNDVk3QoOMKC9SiWiFQRl0Nmjpl92v1ZcpdVov4daAikMHNdkshMdDk0FYwzsjSI5ei2wWonO5Z/LlFPQJZz57E7hT/oQ8NgNxC6EyWQ2NZhY3B+6hJd/qxDii+ToQ12u0KqpHNF+HRvXNI8YRzcvho5oKJDrp9PR0VLwyHQM+mo4Dl/hqOgJEvunJV+/JUid2CsT144zFSVFtY3ONeAJoPruwj5h1qG18OR0H0lCNFtkHfzR7dwYugEZes0Uu4Ec8q4vwE0KrjwdQ62DCxCc+NnbXABERGlp89aIQvFb0Z7aAeN0Y7gpkgbI0aBSLnv663PDWoNo98GmNaF37K71/OESyFzbsiW4N+vTPRrQmwpKIRTLe1mI0B/h6ejYhekNHhFLoUWSwuJCoUXH0KjLwgfpgfkg9GhECfpuOOZHyZLb09vBxtWRO0wVW7kQAH6jJOTUaExnMfRCoJL4z5l6WYyjuNUsuYIewhznnOGJ2sTcvBhUZoHMe/yE1TZob2MPRrMHbZHHUtA6gj1bAHtZBKfv+/ZfZsNg6fNVRanpUHy/YyxYG37dZa6o1odSr2MnyTrH4FzOgR7F9wp8N1MWhnwm9ie37wYeMkqCT/pdrrBXGxK5aEWQC4wPfhwcBo+WdZv8aw+J3jJp4WxT6+ekYMFvO6sJszUl49h6TF3iPR4tQN7gapHhz+OWSlUdvuLmQUM9s8TGuDTTyml0kwtgQXFcKNm1HPQl0i4bfvZTE1bszcAF1gcXVmvcbPHvYRxoamNG8lpq927Rx72Rg9duDybjFQNxRfSyDnx+CNw/yqKH9CUZSvARvsPEarZrxzPYZjY6xOZoDfFKEI6r/R5ZoDtCo5g6OCuQe2aI5QGvE1ueMc0DnNbKsRnGnfAUCa8zqHRXo4bVAm83RHKCvUDizhahl8P6lrNDE2Oo+5i3QkhfRsyNmIcXewnJAqC9ntQyFljTwDCUfG/K138UXKPQtLNzZnpMjfdMnObsvp6B+3avYMZGrThtTccT2ONf4zEstYIkqMn2uXm1xQS11YA8DGi1nIX0tlvyugQvHtuO2WvoRPFrCwV0iWUED8C1t3K4RsAL4cSxoyEe7i+zRxMuuI0BErZEDD/tuP7xNEwgkuo+4HEbCi+UZ+nD4jTzYRazx8CiCI7CWqIH8vCXLS1oJDILX9D6uRZSmBG4iilMgMmK7RT2Zy6X+LiE65+TctCFmaYEk86aiOIUlgkOijfIKcdaMNLkOf8s5UpHrye9Umaup/SJXhMBSbvFptr+G/5gsBs4Jid4lTwXnYt8KT9K3/KBnIAwzgUuiLhe5Fh5cwqKaQBAdn5zz0VvJuTjnIcStbR1LgDcjPscXjYiUsoZgJxwhn1/niCWkrGZgYGCgDdzd/QN173dVxn6toQAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 0;*/ + /*width: 1.97917vw;*/ + /*height: 1.97917vw;*/ +} +.famous .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.famous .swiper-button-next, +.famous .swiper-container-rtl .swiper-button-prev { + right: 18% !important; + /*color: #000;*/ + /*border-radius: 50%;*/ + /*border: 2px solid #000;*/ + /*width: 30px;*/ + /*height: 30px;*/ + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVISURBVHgB7Z2NldQ2FIUvHArYVJCXCkIqQKmATQXrVLB0sE4FbCqIkwIgaSADDbBLA+xCAexWAPgxNshPki3P2LJk6ztHx+Ndj3/uvLl6ljQykMlkMqN5gPiguqhm+WOzJO1/OvdNuW2Wb+ty3axfI9PhpC7ndXlZl7u6fJ6o3DX7PIP5AW2GVtwdphN2qPCxFhM9tHWouhR1eYq92EPo1nDr2IaafT2GP1Vd/ujZZ7Io+EUvb3NZl1McFnmPm/deeh7vL6zEVgh7n+zzUb5YFscnwsdy0uy7wooFZw92VW675v9ziOuCj1XU5QZuwS+QEAT315b/rrA8BdyC898JkeOKYj55hfgoYBecr+EZIuU57BFSIqxFHEKJBKyERbRZxRXGpVxLQ7BHN1fmiwcKnwALKk/uEvFHsQs+d1vQEBaCYI+AaL1tBCXs9Uzw4LFFMlcgCuuB829ZsfM1BxVb3oTwCaXkx77wNUmxdwjEBbYhcotN7OeYmXOY3nWK9aNgXvcZZoJgfrIltgNX8vKbTJgBmWFcYnvI1G9yv5a+fINtwhmHDLjJ0lmCaRmE7cKV4ywWUmG7vuyihNmefRSEbBk2bBaicAQVAqU0CaIwUcVIyNE8BIt7dFRXyNE8hMKRKS8hR7MvelRzBmJtdHroeLMS6yUyLv7TXrcdwN5I70m1ET8ErI1+n+FdKRImzhE3gGw2NgLTZh1KrP+LzBB/i/UCHgx+OhkD1mi0C+h3PN5+kzGyjw7SOrjBhLT110gT7qDggJm9J0TjrfaaI5z6NubeEv0r8BTpQVimMpfaFfo/bRGt8x7pcS/WC4QR+1qsU9/GsiJMlRJmH18Ise98j6cb+hXSpkR4sb0TibVlHCXCiq0Ham/7kHfoJ0SJcGJXcAj9SGw4980Jp1sxjAMpmuXvmA/SVx4hLDENgCya5Zxif+MhwnKPuOB0NkgTQ+iI/rMuTxAegpnXct77Kxb68PWsYy2VoW2Q4lzDbyv0tHforC29Cyky453eeW+YAKFFBrqD83sDtYJn6EfOEiJDHK/TYSKzjlvt9WBTX6QQ9tGkixqi4pMNcp1Gpj6hmZ+RHicILzJDYv1qaGM9/EcPCImEdhyzjOwQx2zL4M9NDuo6z4xPJCrkztmxyM5ZY+SA7RZc9hQ8QWYIJdZferznsK7zjVOhqxn5vlH3G+fAvcxXCF2RrfWaq/XuqIF7G0OJ9QojOHjg3gbhDOMg22iReaFCRlJggvpMwcN7Ns7R0dyyQ45qFwUmzM6U2Bl/gjkD2TNZNLdUYoclMiVmuNcgmG27gw0mK+YndLWYdJaDZ8gWwvCkudIySkyMrBhDjj2OBTm33zvMAMG0kJgGxMxNie61f8SMPVDSQraS8v0G87pnDzJ5x7j2yat+wYJTHEm/XqvYNpFfICCuCQZPsR7YLqTIb7DQbI43ML3rAmnDKZytLuIMg7AQBPsksKmmfj/APj3zIpEs4ROwzePP0U5IB/Zj2zf0f0R2c1bCPMkUrISjuIR53p8Q8TeTvc019fwZ4oK9mEcw2aKYb0aivxkj9D+oYGnBW4F3sEcxWwUhIUrYxdYFD+V9LC5bBEfpznFOSUSxC4Lfw2Y4/55a9FZczof7HnjGUfwCK3rCUIV+wblwtPEtPgt/yJ0mwf8RTq1NKATgAcJC2FvKGJ/mIWr36H8oGRc5XNfG52ZfPDbun7q8wsoh7Ds3h6JuivIJ36P3HBvu8yTsRZ/qwZGtsFy5sfdGIW5o6/ChnQWHl/yLg/YnHjZruG2WN83rD83yFVb4rMJMJrM5vgAZc0TZpm6wTAAAAABJRU5ErkJggg==) no-repeat center center; + background-size: contain; + /*top: -3.90625vw;*/ + /*left: 3.125vw;*/ + width: 1.97917vw; + height: 1.97917vw; +} + +.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{ + content: '' !important; +} +.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{ + content: '' !important; +} + +.case-intro { + /*height: 440px;*/ + /*background-color: #fff;*/ + display: flex; + justify-content: space-between; + position: relative; +} +.case-intro img { + /*width: 672px;*/ + /*height: 440px;*/ +} +.case-intro ul { + width: 470px; + height: 440px; + display: flex; + flex-direction: column; + justify-content: center; + padding: 0 30px; +} +.case-intro ul li:nth-child(1) { + font-size: 36px; + font-weight: 700; + text-align: center; +} +.case-intro ul li:nth-child(2) { + font-size: 20px; + /*font-weight: 700;*/ + padding-top: 30px; + letter-spacing: 0.43px; + text-align: justify; + line-height: 30px; + padding-bottom: 60px; +} + +/*资源消耗*/ +.intro2{ + /*height: 540px;*/ +} +.intro2 .intro2-item{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding: 0 100px; +} +.intro2-item dl{ + border: 2px solid #50972d; + border-radius: 50%; + height: 250px; + width: 250px; + font-size: 28px; + display: flex; + flex-flow: column; + text-align: center; + justify-content: center; +} +.intro2-item dt{ + color: #50972d; + font-family: fantasy; + font-size: 50px; +} + +.intro2-item dt span{ + font-size: 24px; +} +.intro2-item dd{ + color: #747272; +} +.intro2-bottom{ + font-size: 18px; + color: #747272; + text-align: center; + padding-top: 30px; + letter-spacing: 0.86px; +} + +/*公益*/ +.gy{ + +} +.gy-item-top{ + margin-bottom: 20px; +} +.gy-item-top dl{ + width: 589px; +} +.gy-item-top dl img{ + border-radius: 5px 5px 0 0; +} +.gy-item-top dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; +} +.gy-item-top dd p:nth-child(1){ + font-size: 26px; + padding-bottom: 10px; +} +.gy-item-top dd p:nth-child(2){ + font-size: 18px; + color: #747272; +} + +.gy-item-bottom{ + padding-bottom: 30px; +} +.gy-item-bottom dl{ + width: 293px; +} +.gy-item-bottom dl img{ + border-radius: 5px 5px 0 0; + width: 293px; +} +.gy-item-bottom dd{ + background: #f5f6f6; + border-radius: 0 0 5px 5px; + padding: 15px; + /*letter-spacing: 0.63px;*/ + text-align: justify; + height: 100px; + font-size: 18px; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/help.css b/themes/huishou/static/assets/css/help.css new file mode 100644 index 0000000..ffbcb78 --- /dev/null +++ b/themes/huishou/static/assets/css/help.css @@ -0,0 +1,67 @@ +.help-nav ul{ + display: flex; + padding: 12px 0; +} + +.help-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + margin-bottom: 20px; +} +.help-box .help-box-left{ + width: 280px; + height: max-content; + background-color: #ffffff; + padding-top: 20px; + padding-bottom: 10px; +} +.help-box .help-box-left ul{ + padding: 0 20px; +} +.help-box .help-box-left ul b{ + margin-bottom: 10px; + font-size: 18px; +} +.help-box .help-box-left ul .active{ + color: #50972c; +} +.help-box .help-box-left ul .active em{ + background-color: #50972c; + width: 3px; + height: 15px; + position: absolute; + left: -20px; + top: 4px; +} +.help-box .help-box-left ul li{ + font-size: 16px; + padding-bottom: 20px; + position: relative; +} +.help-box .help-box-left ul li b{ + /*border-bottom: 3px solid #50972c;*/ + padding-bottom: 5px; +} +.help-box .help-box-right{ + width: 960px; + background-color: #ffffff; + padding: 40px 0; +} +.help-box-right .box-right-content p{ + margin-bottom: 15px !important; +} +.help-box-right .box-right-title{ + font-size: 24px; + font-weight: 700; + margin: 0 60px; + border-bottom: 1px solid #bfbfbf; + padding-bottom: 10px; +} +.help-box-right .box-right-content{ + min-height: 500px; + padding: 10px 60px; + font-size: 16px; + line-height: 25px; + letter-spacing: 1px; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/index.css b/themes/huishou/static/assets/css/index.css new file mode 100644 index 0000000..485cc99 --- /dev/null +++ b/themes/huishou/static/assets/css/index.css @@ -0,0 +1,1063 @@ +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +/* part1 */ +.part1 { + padding: 30px 0; + background-color: #f5f6f8; + /*height: 740px;*/ + /*background-image: url(../images/bj1.png);*/ + background-repeat: no-repeat; + background-position: center; +} +.part1_left { + width: 945px; +} +.carousel { + height: 380px; +} +.carousel .swiper-pagination-bullet { + width: 6px; + height: 6px; + background-color: #ffffff; + opacity: 1; + /*border-radius: 2px;*/ +} +.carousel .swiper-pagination-bullet-active { + width: 30px; + height: 6px; + background-color: #469914; + border-radius: 25px; +} +.carousel .swiper-pagination { + /*left: -300px;*/ + bottom: 15px; +} +.swiper-hide{ + display: none; +} +.banner { + position: relative; + width: 1280px; + margin: 0 auto; +} +.banner img{ + width: 945px; + height: 380px; +} +.loaded-img{ + opacity: .3; + transition: opacity .7s ease; +} +.loaded-img-show{ + opacity: 1; +} +.loaded-filter{ + filter: blur(10px); + filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius="50",MakeShadow=false); + transition: filter .7s ease; +} +.loaded{ + filter: none; +} +.carousel .swiper-container .hide { + opacity: 0; +} + +.carousel .swiper-button-next, +.carousel .swiper-button-prev { + transition: opacity 0.5s; +} + +.carousel .swiper-button-next:hover, +.carousel .swiper-button-prev:hover { + background-color: rgba(0, 0, 0, 0.7); +} + +.carousel .swiper-button-prev, +.carousel .swiper-container-rtl .swiper-button-next { + left: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-prev:hover, +.carousel .swiper-container-rtl .swiper-button-next:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next, +.carousel .swiper-container-rtl .swiper-button-prev { + right: 0; + top: 46%; + padding: 5px 0; + background-color: rgba(0, 0, 0, 0.5); +} +.carousel .swiper-button-next:hover, +.carousel .swiper-container-rtl .swiper-button-prev:hover { + background-color: rgba(52, 128, 42, 0.9); +} + +.carousel .swiper-button-next:after, +.carousel .swiper-button-prev:after { + font-size: 20px; +} +.carousel .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{ + pointer-events: auto !important; +} + +.part1_left_bottom{ + height: 110px; + margin-top: 15px; + display: flex; + justify-content: space-between; +} +.part1_left_bottom a:hover{ + color:unset; +} +.part1_left_bottom dl{ + width: 225px; + height: 110px; + display: flex; + justify-content: space-between; + background: #ffffff; + +} +.part1_left_bottom dl:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} +.part1_left_bottom dt{ + width: 120px; + display: flex; + flex-flow: column; + justify-content: center; + padding-left: 15px; +} +.part1_left_bottom dt p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 10px; +} +.part1_left_bottom dt p:nth-child(2){ + font-size: 13px; +} +.part1_left_bottom dd{ + width: 90px; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; +} +.part1_left_bottom dd img{ + width: 60px; + height: 60px; +} + +.part1_right { + width: 320px; + height: 505px; + background-color: #eee; + margin-left: 15px; +} +.part1_right .right-banner{ + /*width: 320px;*/ + height: 145px; + overflow: hidden; + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + border-bottom: 1px solid #d6d1d1; + margin: 0 30px; +} + +.part1_right .right-banner p:nth-child(1) span{ + font-size: 16px; + padding-left: 10px; +} +.part1_right .right-banner p:nth-child(2){ + padding-top: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(1){ + background-color: rgb(52, 128, 42); + color: #ffffff; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; + margin-right: 10px; +} +.part1_right .right-banner p:nth-child(2) span:nth-child(2){ + background-color: rgb(51, 51, 51); + color: #cec184; + font-size: 14px; + padding: 3px 15px; + display: inline-block; + border-radius: 20px; +} +.right-form{ + padding: 0 30px; + margin-top: 25px; +} +.form-title{ + text-align: center; + padding-bottom: 20px; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} +.form-submit{ + +} + +/* part2 */ +/*.part2 {*/ + /*!*height: 720px;*!*/ + /*background-color: #ffffff;*/ + /*padding-bottom: 50px;*/ +/*}*/ +.layout-tilte { + text-align: center; + padding: 50px 0 30px 0; +} +.layout-tilte p:nth-child(1) { + font-size: 32px; + letter-spacing: 3px; + color: #181818; + font-weight: bold; +} +.layout-tilte p:nth-child(2) { + font-size: 16px; + letter-spacing: 2px; + color: #575d6c; + margin-top: 10px; +} +/*.advantage {*/ + /*height: 361px;*/ + /*display: flex;*/ + /*flex-wrap: wrap;*/ + /*justify-content: space-between;*/ + /*align-content: space-between;*/ +/*}*/ +/*.advantage dl {*/ + /*width: 416px;*/ + /*height: 173px;*/ + /*!*padding: 38px 45px;*!*/ + /*background-color: #f5f6f8;*/ + /*display: flex;*/ + /*align-items: center;*/ +/*}*/ +/*.advantage dl:hover {*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ +/*}*/ +/*.advantage dl dd {*/ + /*width: 180px;*/ + /*overflow: hidden;*/ + /*display: flex;*/ + /*align-items: center;*/ + /*justify-content: center;*/ + /**/ +/*}*/ +/*.advantage dl dt {*/ + /*width: 195px;*/ + /*padding: 0px 20px;*/ +/*}*/ +/*.advantage dl dt p:nth-child(1) {*/ + /*font-size: 20px;*/ + /*font-weight: bold;*/ + /*color: #333333;*/ +/*}*/ +/*.advantage dl dt p:nth-child(2) {*/ + /*font-size: 15px;*/ + /*color: #595959;*/ + /*margin-top: 10px;*/ +/*}*/ + +.part2{ + padding-bottom: 50px; + /*background-color: #f5f6f8;*/ +} +.flow-box{ + display: flex; + justify-content: space-between; +} +.flow-box .flow-box-item{ + width: 335px; + height: 350px; + display: flex; + align-items: center; +} +.flow-box .flow-box-item .item-content{ + width: 275px; + height: 350px; + background-image: url(../images/service-bg03.png); + background-repeat: no-repeat; + background-position: center; + position: relative; + overflow: hidden; +} +.flow-box .flow-box-item .item-content dl{ + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; + height: 350px; + padding: 0 35px; + position: absolute; + top: 0; + transition: .5s; +} +.flow-box .flow-box-item .item-content dt{ + padding-bottom: 25px; +} +.flow-box .flow-box-item .item-content dt img{ + width: 73px; + height: 73px; +} +.flow-box .flow-box-item .item-content dd{ + text-align: center; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(1){ + font-size: 24px; + font-weight: 700; + padding-bottom: 20px; +} +.flow-box .flow-box-item .item-content dd p:nth-child(2){ + font-size: 18px; + color: #999; +} +.flow-box .flow-box-item .item-content .item-content-bottom{ + background: linear-gradient(to right, #109a30, #67d682); + height: 40px; + line-height: 40px; + color: #ffffff; + font-size: 17px; + text-align: center; + position: absolute; + width: 275px; + bottom: -40px; + transition: .5s; +} +.flow-box .flow-box-item .item-ico { + width: 60px; + height: 60px; + text-align: center; + display: flex; + align-items: center; + justify-content: center; +} +.flow-box .flow-box-item .item-content:hover dl{ + top: -15px; +} +.flow-box .flow-box-item .item-content:hover .item-content-bottom{ + bottom: 0; +} +.flow-bottom{ + display: flex; + justify-content: center; + padding-top: 35px; +} +.flow-bottom p{ + font-size: 16px; + color: #999999; + font-style: italic; + border-bottom: 1px solid; +} + +/* part3 */ +.part3 { + /*height: 950px;*/ + background-color: #f5f6f8; + padding-bottom: 50px; +} +.faClass { + background-color: #f4f4f4; + border-left: 3px solid #34802a; + font-weight: bold; +} +.scheme_box { + display: flex; + justify-content: space-between; +} +.scheme_left { + width: 213px; + height: 540px; + background-image: url(../images/fa-bg01.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + flex-flow: column; + align-items: center; +} +.scheme_left ul{ + display: flex; + flex-flow: column; + align-items: center; + padding-top: 20px; + padding-bottom: 68px; +} +.scheme_left ul li{ + width: 151px; + height: 44px; + line-height: 44px; + padding-left: 19px; + font-size: 16px; +} +.scheme_left .consult-more{ + font-size: 14px; +} +.scheme_left .consult-more p:nth-child(1){ + padding-bottom: 20px; +} +.scheme_left .consult-more p:nth-child(1) a:hover{ + color: #34802a; +} +.scheme_left .consult-more p:nth-child(2){ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 6px 16px; + text-align: center; +} +.scheme_right { + width: 1067px; +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} + +.scheme_right li { + width: 211px; + /* height: 239px; */ + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right li .scheme_li{ + width: 181px; + height: 253px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + + /*display: inline-block;*/ + /*box-shadow: 0 4px 3px 3px #ececec;*/ + /*-webkit-box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + /*box-shadow: 0 5px 16px 0 rgb(0 0 0 / 10%);*/ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 181px; + height: 134px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} + +/* part4 */ +.part4 { + /*height: 660px;*/ + background-color: #ffffff; + padding-bottom: 50px; +} +.ecology-box { + /*height: 664px;*/ + position: relative; +} +.ecology-box .gallery-solid { + border-bottom: 1px solid #dfe1e6; +} +.ecology-box .gallery-thumbs { + width: 970px; +} +.ecology-box .gallery-thumbs .swiper-wrapper { + align-items: center; + justify-content: center; +} +.ecology-box .gallery-thumbs .swiper-slide { + width: 250px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-button-prev { + top: 40px !important; +} +.ecology-box .swiper-button-prev, +.ecology-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.ecology-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.ecology-box .swiper-button-next, +.ecology-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +:root { + --swiper-navigation-size: 56px !important; +} +.ecology-box .swiper-slide-thumb-active span{ + color: #50972d; + border-bottom:2px solid #50972d; +} + +.gallery-top{ + margin-top: 40px; +} +.ecology-nav .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.ecology-intro { + height: 400px; + background-image: url(../images/tx-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; +} +.ecology-intro .intro-item{ + display: flex; + flex-flow: column; + justify-content: center; + width: 615px; + height: 400px; + padding-left: 60px; + position: relative; +} +.ecology-intro .item-title{ + font-size: 22px; + font-weight: bold; + padding-bottom: 40px; +} +.ecology-intro .item-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 20px; +} +.ecology-intro .item-box dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + width: 300px; + height: 86px; + align-items: center; + margin-bottom: 15px; +} +.ecology-intro .item-box dt{ + width: 80px; + text-align: center; +} +.ecology-intro .item-box dt img{ + width: 39px; + height: 39px; +} +.ecology-intro .item-box dd{ + +} +.ecology-intro .item-box dd p:nth-child(1){ + font-size: 18px; + font-weight: bold; + padding-bottom: 9px; +} +.ecology-intro .item-box dd p:nth-child(2){ + font-size: 14px; + color: #999999; +} +.ecology-intro .item-bottom span{ + background: linear-gradient(to right, #109a30, #5dc376); + color: #ffffff; + padding: 8px 19px; +} +.ecology-intro .intro-logo{ + width: 605px; + height: 400px; + overflow: hidden; + display: flex; + justify-content: center; + align-items: center; +} +.ecology-intro .intro-logo img{ + width: 400px; +} +/* 滑过透明层 */ +.glideover-hover { + overflow: hidden; + position: relative; +} +.glideover-hover:before { + content: ""; + position: absolute; + top: 0; + left: -100%; + display: block; + height: 100%; + width: 50%; + z-index: 999; + background-color: rgba(255,255,255,.3); + -webkit-transition: all 1s ease 0s; + -moz-transition: all 1s ease 0s; + -o-transition: all 1s ease 0s; + transition: all 1s ease 0s; + -ms-transform: skewX(-20deg); + -webkit-transform: skewX(-20deg); + -o-transform: skewX(-20deg); + transform: skewX(-20deg); + background: -webkit-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -moz-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: -o-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=rgba(255, 255, 255, 0.4),GradientType=0.9); +} +.glideover-hover:hover:before { + left: 100%; +} +/* part5 */ +.part5{ + padding-bottom: 50px; +} +.service-box{ + background-color: #ffffff; + height: 380px; + display: flex; + justify-content: space-between; +} +.service-box a{ + position: relative; +} +.service-box dl{ + width: 308px; + height: 380px; + padding: 15px; + display: block; + box-sizing: border-box; + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + white-space: normal; +} +.service-box dl:hover{ + + opacity: 1; + transition: all .3s linear; + background-image: url(../images/service-bg01.png); + background-repeat: no-repeat; + background-position: center; +} + +.service-box dt{ + padding-bottom: 40px; +} +.service-box dt img{ + +} +.service-box dd{ + text-align: center; + padding: 0 20px; +} +.service-box dd p:nth-child(1){ + font-size: 20px; + font-weight: bold; + padding-bottom: 20px; +} +.service-box dd p:nth-child(2){ + font-size: 14px; +} + +/* part6 */ +.part6 { + background-image: url(../images/case-bg.jpg); + background-repeat: no-repeat; + background-position: center; + padding-bottom: 50px; +} +.case-box { + /*height: 664px;*/ + position: relative; +} +.case-box .swiper-button-next, +.case-box .swiper-button-prev { + top: 40px !important; +} +.case-box .swiper-button-prev, +.case-box .swiper-container-rtl .swiper-button-next { + left: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #000; + width: 30px; + height: 30px; +} +.case-box .swiper-button-next:after, .famous .swiper-button-prev:after{ + font-size: 16px !important; +} +.case-box .swiper-button-next, +.case-box .swiper-container-rtl .swiper-button-prev { + right: 10px !important; + color: #000; + border-radius: 50%; + border: 2px solid #504646; + width: 30px; + height: 30px; +} +.case-box .swiper-slide-thumb-active span{ + /*color: #50972d;*/ + border-bottom:2px solid #50972d; +} + +.case-nav { + border-bottom: 1px solid #999999; +} +.case-tab { + /*width: 970px;*/ +} +.case-tab .swiper-wrapper { + align-items: center; + justify-content: center; + color: #ffffff; +} +.case-tab .swiper-slide { + width: 213px !important; + height: 50px; + position: relative; + cursor: pointer; + display: flex; + justify-content: center; + margin-bottom: 2px; +} +.case-tab a{ + color: #ffffff; +} +.case-tab a:hover{ + color: #ffffff; +} +.case-tab .swiper-slide span { + /*width: 100%;*/ + height: 100%; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + width: fit-content; + font-size: 18px; + font-weight: 700; +} + +.case-content{ + margin-top: 40px; +} +.case-content .case-intro { + height: 384px; + display: flex; + justify-content: space-between; +} +.case-intro .intro-logo{ + width: 640px; +} +.case-intro .intro-logo img{ + width: 100%; + height: 100%; +} +.case-intro .intro-item{ + width: 610px; + margin: auto 0; +} +.case-intro .intro-item dl{ + display: flex; + flex-flow: column; + justify-content: center; + color: #ffffff; +} +.case-intro .intro-item dt{ + font-size: 20px; + font-weight: 700; + display: flex; + flex-flow: column; + padding-bottom: 25px; +} +.case-intro .intro-item dt em{ + width: 50px; + height: 3px; + background-color: #50972d; + margin-top: 10px; +} +.case-intro .intro-item dl dd:nth-child(2){ + font-size: 16px; + padding-bottom: 5px; +} +.case-intro .intro-item dd:nth-child(3){ + font-size: 16px; + padding-bottom: 30px; +} +.case-intro .intro-item dd:nth-child(4){ + height: 110px; + line-height: 22px; + border-bottom: 1px solid; + padding-bottom: 30px; + margin-bottom: 20px; + overflow: hidden; +} +.case-intro .intro-item dd:nth-child(5){ + display: flex; + justify-content: flex-end; +} +.case-intro .intro-item dd:nth-child(5) p{ + width: 120px; + height: 36px; + line-height: 36px; + text-align: center; + background-color: #ffffff; + color: #333; + cursor: pointer; +} +.case-intro .intro-item dd:nth-child(5) .active{ + background-color: #34802a; + color: #ffffff; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(1){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(2){ + margin-right: 10px; +} +.case-intro .intro-item dd:nth-child(5) p:nth-child(3){ + +} + + +.part7{ + padding-bottom: 50px; +} +.charity-box{ + background-image: url(../images/charity-bg.png); + background-repeat: no-repeat; + background-position: center; + display: flex; + justify-content: space-between; + height: 424px; +} +.charity-box .charity-left{ + width: 600px; + padding: 0 40px; +} +.charity-box .charity-left dl{ + display: flex; + flex-flow: column; + justify-content: center; + height: 424px; +} +.charity-box .charity-left dd:nth-child(1){ + font-size: 20px; + font-weight: 700; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(2){ + color: #999; + line-height: 22px; + padding-bottom: 30px; +} +.charity-box .charity-left dd:nth-child(3){ + display: flex; + justify-content: space-between; + padding-bottom: 20px; +} +.charity-box .charity-left dd:nth-child(3) .dd-item{ + width: 180px; + height: 110px; + background-color: #fff; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.charity-box .charity-left dd:nth-child(3) .dd-item span{ + font-size: 26px; + color: #34802a; + font-weight: 700; +} +.charity-box .charity-left dd:nth-child(3) .dd-item em{ + font-size: 16px; + color: #34802a; +} +.charity-box .charity-left dd:nth-child(3) .dd-item:hover{ + -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); + box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%); +} + + +.charity-box .charity-left dd:nth-child(4){ + color: #999999; + text-align: center; + padding-bottom: 10px; +} +.charity-box .charity-left dd:nth-child(5){ + text-align: center; +} +.charity-box .charity-left dd:nth-child(5) a{ + color: #34802a; + font-weight: 600; +} +.charity-box .charity-right{ + width: 600px; +} +.charity-box .charity-right dl{ + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + height: 424px; + } +.charity-box .charity-right dt{ + padding-bottom: 35px; + +} +.charity-box .charity-right dd{ + color: #999999; + padding: 0 40px; +} + +.news{ + /* padding-bottom: 50px; */ +} +.news-box{ + display: flex; + justify-content: space-between; +} +.news-box-left{ + width: 416px; +} +.news-box-left a:hover{ + color: #34802a !important; +} +.news-box-left dl{ + +} +.news-box-left dt{ + width: 416px; + height: 274px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} + +.news-box-left dd{ + padding: 20px; + background-color: #f6f6f6; +} +.news-box-left dd p:nth-child(1){ + font-size: 16px; + height: 42px; + margin-bottom: 19px; +} +.news-box-left dd p:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; +} + +.news-box-right{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + width: 850px; +} +.news-box-right a:hover{ + color: #34802a !important; +} +.news-box-right dl{ + background-color: #f6f6f6; + height: 122px; + width: 418px; + margin-bottom: 14px; +} +.news-box-right dt{ + padding: 20px 20px 0 20px; + height: 38px; + margin-bottom: 20px; +} + +.news-box-right dd:nth-child(1){ + font-size: 16px; + padding-bottom: 20px; +} +.news-box-right dd:nth-child(2){ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #999; + padding: 0 20px; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/info.css b/themes/huishou/static/assets/css/info.css new file mode 100644 index 0000000..b75a05f --- /dev/null +++ b/themes/huishou/static/assets/css/info.css @@ -0,0 +1,308 @@ +.part1{ + height: 300px; + background-image: url(../images/banner.png); + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center top; + background-size: 100% 100%; +} +.part2 { + +} +.part2-tab-calss{ + display: flex; + margin-top: 12px; +} +.part2-tab-calss .class-right{ + +} +.part2-tab-calss .class-right ul{ + display: flex; + justify-content: left; + font-size: 14px; +} +.part2-tab-calss .class-right ul li{ + height: 20px; + line-height: 20px; +} +.part2-tab-calss .class-right ul li:hover{ + color: #50972c; + cursor: pointer; +} + +.part3 { + /*height: 1550px;*/ + + margin-top: 12px; + padding-bottom: 30px; +} +.part3-news{ + display: flex; + justify-content: space-between; +} +.part3-news-left{ + width: 960px; + background: #ffffff; + text-align: justify; +} +.part3-news-left .info-title{ + font-size: 24px; + font-weight: 600; + padding: 45px 85px 17px; + text-align: left; +} +.part3-news-left .part3-news-screen{ + padding-bottom: 25px; + font-size: 14px; + border-bottom: 1px solid #999; + margin: 0 85px; +} +.part3-news-screen ul{ + display: flex; + justify-content: left; + color: #777; +} +.part3-news-screen ul li{ + padding-right: 30px; +} + +.part3-news-left .info-remark{ + width: 750px; + /* height: 105px; */ + background-color: #fafafa; + margin: 0 auto; + margin-top: 20px; + padding: 20px; + font-size: 16px; + line-height: 26px; + color: #999; +} + +.part3-news-left .info-content{ + padding: 20px 85px; + font-size: 16px !important; + line-height: 30px !important; + color: #575d6c !important; + letter-spacing: 1px !important; + /*text-indent: 2em !important;*/ +} +.part3-news-left .info-content img{ + /*display: initial !important;*/ + /* height: 100% !important; */ + width: 100% !important; + /* max-width: 790px !important; */ +} +.part3-news-left .info-content p{ + margin-bottom: 15px !important; +} +.part3-news-right{ + width: 480px; + margin-left: 28px; +} +.news-right-banner{ + background-color: #fff; +} +.news-right-item{ + width: 440px; + background-color: #fff; + padding: 10px 20px; +} +.news_right_title{ + display: flex; + align-items: center; + justify-content: space-between; + font-size: 20px; + color: #333333; + font-weight: bold; + margin-bottom: 10px; +} +.news-right-item ul{ + padding-bottom: 30px; + border-bottom: 1px solid #595959; +} +.news-right-item ul li{ + margin-top: 26px; +} +.news-right-item ul li p:nth-child(1) { + width: 50px; + height: 20px; + line-height: 20px; + padding-left: 4px; + background-image: url(../images/i3.png); + background-repeat: no-repeat; + font-size: 14px; + color: #fff; + letter-spacing: 2px; +} +.news-right-item ul li p:nth-child(2) { + width: 375px; + line-height: 20px; + font-size: 15px; + color: #333; + margin-left: 10px; +} +.examine { + font-size: 15px; + color: #575d6c; + text-align: center; + margin-top: 24px; + cursor: pointer; +} + +.info-btn{ + margin: 0 85px; + text-align: center; + padding-bottom: 45px; + padding-top: 30px; +} +.info-btn .btn-dz{ + width: 140px; + border: 1px solid #34802a; + color: #34802a; + display: flex; + justify-content: center; + align-items: center; + border-radius: 25px; + font-size: 25px; + margin: 0 auto; + height: 50px; + cursor: pointer; +} +.info-btn .active{ + color: #ffffff; + background-color: #34802a; +} +.info-btn .btn-dz img{ + width: 35px; +} +.info-btn .btn-dz span{ + line-height: 40px; + height: 35px; + padding-left: 5px; +} + +.info-page ul{ + margin: 0 85px; + font-size: 16px; + background-color: #ffffff; + display: flex; + justify-content: space-between; + border-top: 1px solid #999; +} +.info-page ul li{ + color: #333333; + width: 375px; + padding: 20px 0; +} +.info-page ul li span{ + color: #777; + cursor: pointer; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + /*margin-top: 15px;*/ + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 2px solid #999; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 2px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -2px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 445px; + background-repeat: no-repeat; + background-position: center; + margin-bottom: 15px; + /*background-size: cover;*/ +} +/**********************内容右侧End**********************/ + + diff --git a/themes/huishou/static/assets/css/layui.css b/themes/huishou/static/assets/css/layui.css new file mode 100644 index 0000000..36bf38e --- /dev/null +++ b/themes/huishou/static/assets/css/layui.css @@ -0,0 +1 @@ +blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{display:inline-block;border:none;vertical-align:middle}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h1,h2,h3{font-weight:400}h4,h5,h6{font-size:100%;font-weight:400}button,input,select,textarea{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:1.6;color:#333;color:rgba(0,0,0,.85);font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:0;line-height:0;margin:10px 0;padding:0;border:none!important;border-bottom:1px solid #eee!important;clear:both;overflow:hidden;background:0 0}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.layui-edge{position:relative;display:inline-block;vertical-align:middle;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent;overflow:hidden}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-show-v{visibility:visible!important}.layui-hide-v{visibility:hidden!important}@font-face{font-family:layui-icon;src:url(../fonts/iconfont.eot);src:url(../fonts/iconfont.eot) format('embedded-opentype'),url(../fonts/iconfont.woff2) format('woff2'),url(../fonts/iconfont.woff) format('woff'),url(../fonts/iconfont.ttf) format('truetype'),url(../fonts/iconfont.svg) 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-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{position:relative;width:1160px;margin:0 auto}.layui-header{position:relative;z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:relative;left:200px;right:0;top:0;bottom:0;z-index:900;width:auto;box-sizing:border-box}.layui-layout-body{overflow-x:hidden}.layui-layout-admin .layui-header{position:fixed;top:0;left:0;right:0;background-color:#23262e}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:absolute;top:60px;padding-bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;z-index:990;height:44px;line-height:44px;padding:0 15px;box-shadow:-1px 0 4px rgb(0 0 0 / 12%);background-color:#fafafa}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px;box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%)}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:"";display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:767.98px){.layui-container{padding:0 15px}.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:720px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:960px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1150px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:1.6;border-left:5px solid #5fb878;border-radius:0 2px 2px 0;background-color:#fafafa}.layui-quote-nm{border-style:solid;border-width:1px;border-left-width:5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:0;border-top-width:1px}.layui-field-box{padding:15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#eee}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5fb878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#5f5f5f}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#fafafa;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:1.6;color:#5f5f5f}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel{position:relative;border-width:1px;border-style:solid;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);background-color:#fff;color:#5f5f5f}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #eee;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-bg-red{background-color:#ff5722!important;color:#fff!important}.layui-bg-orange{background-color:#ffb800!important;color:#fff!important}.layui-bg-green{background-color:#009688!important;color:#fff!important}.layui-bg-cyan{background-color:#2f4056!important;color:#fff!important}.layui-bg-blue{background-color:#1e9fff!important;color:#fff!important}.layui-bg-black{background-color:#393d49!important;color:#fff!important}.layui-bg-gray{background-color:#fafafa!important;color:#5f5f5f!important}.layui-badge-rim,.layui-border,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-panel,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#eee}.layui-border{border-width:1px;border-style:solid;color:#5f5f5f!important}.layui-border-red{border-width:1px;border-style:solid;border-color:#ff5722!important;color:#ff5722!important}.layui-border-orange{border-width:1px;border-style:solid;border-color:#ffb800!important;color:#ffb800!important}.layui-border-green{border-width:1px;border-style:solid;border-color:#009688!important;color:#009688!important}.layui-border-cyan{border-width:1px;border-style:solid;border-color:#2f4056!important;color:#2f4056!important}.layui-border-blue{border-width:1px;border-style:solid;border-color:#1e9fff!important;color:#1e9fff!important}.layui-border-black{border-width:1px;border-style:solid;border-color:#393d49!important;color:#393d49!important}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.6;font-size:14px;color:#5f5f5f}.layui-text h1,.layui-text h2,.layui-text h3,.layui-text h4,.layui-text h5,.layui-text h6{font-weight:500;color:#333}.layui-text h1{font-size:32px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text h4{font-size:16px}.layui-text h5{font-size:14px}.layui-text h6{font-size:13px}.layui-text a:not(.layui-btn){color:#01aaed}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ol,.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text ol li{margin-top:5px;list-style-type:decimal}.layui-text em,.layui-word-aux{color:#999!important;padding-left:5px!important;padding-right:5px!important}.layui-text p{margin:15px 0}.layui-text p:first-child{margin-top:0}.layui-text p:last-child{margin-bottom:0}.layui-text blockquote:not(.layui-elem-quote){padding:5px 15px;border-left:5px solid #eee}.layui-text pre:not(.layui-code){padding:15px;font-family:Lucida Console,Consolas,Courier New;background-color:#fafafa}.layui-font-12{font-size:12px!important}.layui-font-14{font-size:14px!important}.layui-font-16{font-size:16px!important}.layui-font-18{font-size:18px!important}.layui-font-20{font-size:20px!important}.layui-font-red{color:#ff5722!important}.layui-font-orange{color:#ffb800!important}.layui-font-green{color:#009688!important}.layui-font-cyan{color:#2f4056!important}.layui-font-blue{color:#01aaed!important}.layui-font-black{color:#000!important}.layui-font-gray{color:#c2c2c2!important}.layui-btn{display:inline-block;vertical-align:middle;height:38px;line-height:38px;border:1px solid transparent;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border-radius:2px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{padding:0 2px;vertical-align:middle\0;vertical-align:bottom}.layui-btn-primary{border-color:#d2d2d2;background:0 0;color:#5f5f5f}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1e9fff}.layui-btn-warm{background-color:#ffb800}.layui-btn-danger{background-color:#ff5722}.layui-btn-checked{background-color:#5fb878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border-color:#eee!important;background-color:#fbfbfb!important;color:#d2d2d2!important;cursor:not-allowed!important;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:12px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#d2d2d2;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #d2d2d2}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;color:rgba(0,0,0,.85);border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#eee!important}.layui-input:focus,.layui-textarea:focus{border-color:#d2d2d2!important}.layui-textarea{position:relative;min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{position:relative;float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block,.layui-input-inline{position:relative}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{position:relative;float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#ff5722!important}.layui-form-select{position:relative}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #eee;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f6f6f6;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5fb878;color:#fff}.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.layui-form-selected .layui-edge{margin-top:-3px\0}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;display:inline-block;vertical-align:middle;height:30px;line-height:30px;margin-right:10px;padding-right:30px;background-color:#fff;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox *{display:inline-block;vertical-align:middle}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5fb878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5fb878}.layui-form-checked i,.layui-form-checked:hover i{color:#5fb878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#5f5f5f}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5fb878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5fb878!important;background-color:#5fb878;color:#fff}.layui-checkbox-disabled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2!important}.layui-form-checked.layui-checkbox-disabled[lay-skin=primary] i{background:#eee!important;border-color:#eee!important}.layui-checkbox-disabled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;display:inline-block;vertical-align:middle;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5fb878;background-color:#5fb878}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disabled{border-color:#eee!important}.layui-checkbox-disabled span{background-color:#eee!important}.layui-checkbox-disabled i{border-color:#eee!important}.layui-checkbox-disabled em{color:#d2d2d2!important}.layui-checkbox-disabled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio{display:inline-block;vertical-align:middle;line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{display:inline-block;vertical-align:middle;font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio:hover *,.layui-form-radioed,.layui-form-radioed>i{color:#5fb878}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled *{color:#c2c2c2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#fafafa;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0;border-right-width:1px}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto!important;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #eee}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;border-radius:2px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393d49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#eee;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #eee}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{display:inline-block;width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{display:inline-block;vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;margin:10px 0;background-color:#fff;color:#5f5f5f}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr{background-color:#fafafa}.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#eee}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0;border-bottom-width:1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0;border-right-width:1px}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:50px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:30px;line-height:20px;padding-top:5px;padding-right:5px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view{margin:10px 0}.layui-table-view .layui-table{position:relative;width:auto;margin:0;border:0;border-collapse:separate}.layui-table-view .layui-table[lay-skin=line]{border-width:0;border-right-width:1px}.layui-table-view .layui-table[lay-skin=row]{border-width:0;border-bottom-width:1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0;border-bottom-width:1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-column{position:relative;width:100%;min-height:41px;padding:8px 16px;border-width:0;border-bottom-width:1px}.layui-table-column .layui-btn-container{margin-bottom:-8px}.layui-table-column .layui-btn-container .layui-btn{margin-right:8px;margin-bottom:8px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-tool-panel li{padding:0 10px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%}.layui-table-tool-panel li:hover{background-color:#f6f6f6}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{padding-left:28px}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0;border-left-width:1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#5f5f5f}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#5f5f5f}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:38px;line-height:28px;padding:6px 15px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01aaed}.layui-table-cell .layui-btn{vertical-align:inherit}.layui-table-cell[align=center]{-webkit-box-pack:center}.layui-table-cell[align=right]{-webkit-box-pack:end}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{text-align:center;-webkit-box-pack:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:30px 15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0;border-left-width:1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0;border-bottom-width:1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-total{margin-bottom:-1px;border-width:0;border-top-width:1px;overflow:hidden}.layui-table-page{z-index:880;border-width:0;border-top-width:1px;margin-bottom:-1px;white-space:nowrap;overflow:hidden}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-11px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-pagebar{float:right;line-height:23px}.layui-table-pagebar .layui-btn-sm{margin-top:-1px}.layui-table-pagebar .layui-btn-xs{margin-top:2px}.layui-table-view select[lay-ignore]{display:inline-block}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;z-index:900;min-width:100%;min-height:100%;padding:5px 14px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15);background-color:#fff}.layui-table-edit:focus{border-color:#5fb878!important}input.layui-input.layui-table-edit{height:100%}select.layui-table-edit{padding:0 0 0 10px;border-color:#d2d2d2}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0;border-left-width:1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-49px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#5f5f5f}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#5f5f5f;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-list{margin:10px 0}.layui-upload-choose{max-width:200px;padding:0 10px;color:#999;font-size:14px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-upload-drag{position:relative;display:inline-block;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-form{display:inline-block}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;display:inline-block;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-btn-container .layui-upload-choose{padding-left:0}.layui-menu{position:relative;margin:5px 0;background-color:#fff;box-sizing:border-box}.layui-menu *{box-sizing:border-box}.layui-menu li,.layui-menu-body-title a{padding:5px 15px}.layui-menu li{position:relative;margin:1px 0;width:calc(100% + 1px);line-height:26px;color:rgba(0,0,0,.8);font-size:14px;white-space:nowrap;cursor:pointer;transition:all .3s}.layui-menu li:hover{background-color:#f6f6f6}.layui-menu-item-parent:hover>.layui-menu-body-panel{display:block;animation-name:layui-fadein;animation-duration:.3s;animation-fill-mode:both;animation-delay:.2s}.layui-menu-item-group .layui-menu-body-title,.layui-menu-item-parent .layui-menu-body-title{padding-right:25px}.layui-menu .layui-menu-item-divider:hover,.layui-menu .layui-menu-item-group:hover,.layui-menu .layui-menu-item-none:hover{background:0 0;cursor:default}.layui-menu .layui-menu-item-group>ul{margin:5px 0 -5px}.layui-menu .layui-menu-item-group>.layui-menu-body-title{color:rgba(0,0,0,.35);user-select:none}.layui-menu .layui-menu-item-none{color:rgba(0,0,0,.35);cursor:default}.layui-menu .layui-menu-item-none{text-align:center}.layui-menu .layui-menu-item-divider{margin:5px 0;padding:0;height:0;line-height:0;border-bottom:1px solid #eee;overflow:hidden}.layui-menu .layui-menu-item-down:hover,.layui-menu .layui-menu-item-up:hover{cursor:pointer}.layui-menu .layui-menu-item-up>.layui-menu-body-title{color:rgba(0,0,0,.8)}.layui-menu .layui-menu-item-up>ul{visibility:hidden;height:0;overflow:hidden}.layui-menu .layui-menu-item-down:hover>.layui-menu-body-title>.layui-icon,.layui-menu .layui-menu-item-up>.layui-menu-body-title:hover>.layui-icon{color:#000}.layui-menu .layui-menu-item-down>ul{visibility:visible;height:auto}.layui-menu .layui-menu-item-checked,.layui-menu .layui-menu-item-checked2{background-color:#f6f6f6!important;color:#5fb878}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#5fb878}.layui-menu .layui-menu-item-checked:after{position:absolute;right:0;top:0;bottom:0;border-right:3px solid #5fb878;content:""}.layui-menu-body-title{position:relative;overflow:hidden;text-overflow:ellipsis}.layui-menu-body-title a{display:block;margin:-5px -15px;color:rgba(0,0,0,.8)}.layui-menu-body-title a:hover{transition:all .3s}.layui-menu-body-title>.layui-icon{position:absolute;right:0;top:0;font-size:14px}.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-menu-body-title>.layui-icon-right{right:-1px}.layui-menu-body-panel{display:none;position:absolute;top:-7px;left:100%;z-index:1000;margin-left:13px;padding:5px 0}.layui-menu-body-panel:before{content:"";position:absolute;width:20px;left:-16px;top:0;bottom:0}.layui-menu-body-panel-left{left:auto;right:100%;margin:0 13px 0}.layui-menu-body-panel-left:before{left:auto;right:-16px}.layui-menu-lg li{line-height:32px}.layui-menu-lg .layui-menu-body-title a:hover,.layui-menu-lg li:hover{background:0 0;color:#5fb878}.layui-menu-lg li .layui-menu-body-panel{margin-left:14px}.layui-menu-lg li .layui-menu-body-panel-left{margin:0 15px 0}.layui-dropdown{position:absolute;left:-999999px;top:-999999px;z-index:77777777;margin:5px 0;min-width:100px}.layui-dropdown:before{content:"";position:absolute;width:100%;height:6px;left:0;top:-6px}.layui-nav{position:relative;padding:0 20px;background-color:#393d49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar{content:"";position:absolute;left:0;top:0;width:0;height:5px;background-color:#5fb878;transition:all .2s;-webkit-transition:all .2s;pointer-events:none}.layui-nav-bar{z-index:1000}.layui-nav[lay-bar=disabled] .layui-nav-bar{display:none}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{position:absolute;top:0;right:3px;left:auto!important;margin-top:0;font-size:12px;cursor:pointer;transition:all .2s;-webkit-transition:all .2s}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{transform:rotate(180deg)}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #eee;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#5f5f5f;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#f6f6f6;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#f6f6f6;color:#000}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-child-r{left:auto;right:0}.layui-nav-child-c{text-align:center}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:40px}.layui-nav-tree .layui-nav-item a{position:relative;height:40px;line-height:40px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item>a{padding-top:5px;padding-bottom:5px}.layui-nav-tree .layui-nav-more{right:15px}.layui-nav-tree .layui-nav-item>a .layui-nav-more{padding:5px 0}.layui-nav-tree .layui-nav-bar{width:5px;height:0}.layui-side .layui-nav-tree .layui-nav-bar{width:2px}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-bar{background-color:#009688}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child dd{margin:0}.layui-nav-tree .layui-nav-child a{color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child{display:block;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5fb878!important}.layui-breadcrumb a cite{color:#5f5f5f;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block;padding:0 15px;margin:0 -15px}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:"";width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#eee;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:15px 0}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#ff5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5fb878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#fafafa}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5fb878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5fb878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#ff5722}.layui-timeline-item:before{content:"";position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:first-child:before{display:block}.layui-timeline-item:last-child:before{display:none}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px;line-height:22px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#ff5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#5f5f5f}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-5px 6px 0}.layui-nav .layui-badge{margin-top:-10px}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\0;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:none 0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\0;opacity:1;left:20px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#eee;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9f9f9f;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#5f5f5f;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #d9d9d9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:12px}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#eee}.layui-transfer-box{position:relative;display:inline-block;vertical-align:middle;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#5f5f5f}.layui-transfer-active{margin:0 15px;display:inline-block;vertical-align:middle}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5fb878;border-color:#5fb878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#fbfbfb;border-color:#eee;color:#d2d2d2}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f6f6f6;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#ffb800}.layui-rate li i.layui-icon{margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#fff;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;left:-999999px;top:-999999px;z-index:77777777;width:280px;margin:5px 0;padding:7px;background:#fff;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #fff;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#ff0,#0f0,#0ff,#00f,#f0f,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#5f5f5f}.layui-slider{height:4px;background:#eee;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#fff;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:77777777;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:"";position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #eee;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-14px}.layui-slider-input-btn{position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #eee}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #eee}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:33px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:"";position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{display:inline-block;vertical-align:middle;cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:"";position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{display:inline-block;vertical-align:middle;position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#5f5f5f}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:"";position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-spread>.layui-tree-entry .layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#5f5f5f}.layui-tree-btnGroup{visibility:hidden;display:inline-block;vertical-align:middle;position:relative}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{position:relative;display:inline-block;vertical-align:middle;height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;animation-duration:.3s;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .2s;-webkit-transition:all .2s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,15px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,15px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@keyframes layui-down{0%{opacity:.3;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-down{animation-name:layui-down}@keyframes layui-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-downbit{animation-name:layui-downbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@keyframes layui-scalesmall{0%{opacity:.3;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall{animation-name:layui-scalesmall}@keyframes layui-scalesmall-spring{0%{opacity:.3;transform:scale(1.5)}80%{opacity:.8;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall-spring{animation-name:layui-scalesmall-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/news.css b/themes/huishou/static/assets/css/news.css new file mode 100644 index 0000000..b4e9352 --- /dev/null +++ b/themes/huishou/static/assets/css/news.css @@ -0,0 +1,298 @@ +/*头部轮播推荐*/ +.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{ + width: 140px; + right: 0; + left: unset; + bottom: 20px; +} +.swiper-news .swiper-pagination-bullet{ + background: #ffffff; + opacity: unset; + width: 12px; + height: 12px; +} +.swiper-news .swiper-pagination-bullet-active { + background-color: #469914; +} +.swiper-news{ + height: 415px; +} +.swiper-news .swiper-slide{ + background-color: rgb(247, 248, 249); + background-repeat: no-repeat; + background-position: center; + background-size: cover; + position: relative; +} +.swiper-news .swiper-slide span{ + position: absolute; + bottom: 20px; + left: 10px; + color: #ffffff; + font-size: 20px; + width: 490px; + z-index: 1; +} +.news-top{ + display: flex; + justify-content: space-between; + margin-top: 20px; +} +.top-swiper{ + width: 640px; + height: 415px; +} +.top-item{ + display: flex; + flex-flow: wrap; + width: 625px; + height: 415px; + justify-content: space-between; +} +.top-item dl{ + width: 305px; + height: 200px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.top-item dl dd{ + font-size: 18px; + color: #ffffff; + position: absolute; + bottom: 10px; + width: 285px; + margin: 0 10px; + z-index: 1; +} + +.mask{ + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient(180deg,rgba(0,0,0,.05) 5%,rgba(0,0,0,.65)); + transition: .5s; +} + +/*内容*/ +.news-box{ + display: flex; + flex-flow: wrap; + justify-content: space-between; + padding-bottom: 50px; +} +.box-left{ + margin-top: 15px; +} +.box-list{ + width: 960px; +} +.box-left .box-tab{ + margin-bottom: 15px; +} +.box-left .box-tab ul{ + background-color: #ffffff; + display: flex; + position: relative; +} +.box-left .box-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; + margin: 0 15px; + +} +.box-left .box-tab .active{ + border-bottom: 3px solid #50972c; +} +.box-left .box-tab .active-1{ + color: #50972c; + font-weight: 700; +} +.box-left .box-tab ul li em{ + position: absolute; + top: 12px; + right: 0; + height: 21px; + width: 2px; + background: #999; +} +.box-content{ + min-height: 500px; +} +.box-content a:hover{ + color: unset; +} +.box-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + margin-bottom: 15px; +} +.box-list dl:hover{ + box-shadow: 0 0 5px 3px #e8e8e8; +} +.box-list dt{ + width: 260px; + height: 180px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; + margin: 15px; +} +.box-list dd{ + width: 630px; + margin: 15px 10px; + display: flex; + flex-flow: column; + justify-content: center; + padding-right: 20px; +} +.box-list dd p:nth-child(1){ + font-size: 20px; + padding-bottom: 10px; +} +.box-list dd p:nth-child(2){ + font-size: 14px; + height: 54px; + line-height: 26px; + margin-bottom: 30px; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + letter-spacing: 1px; + color: #777; +} +.box-list dl .item-bottom{ + font-size: 14px; + display: flex; + justify-content: space-between; + color: #777; +} + +.box-list dl .item-bottom span{ + background-color: #f3f2f2; + /* padding: 7px 12px; */ + margin-right: 10px; + width: 80px; + height: 30px; + line-height: 30px; + display: inline-block; + text-align: center; +} +.box-list dl .item-bottom span:hover{ + color: #50972c; +} + +/**********************内容右侧Start**********************/ +/*头部*/ +.box-right{ + width: 305px; + margin-top: 15px; + margin-bottom: 15px; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + margin-top:unset +} +.layui-form-item .layui-form-checkbox{ + margin-top:unset +} +.layui-layer-btn .layui-layer-btn0{ + background: #34802a !important; + font-size: 18px; + border: unset; +} +.layui-form-item .layui-form-checkbox[lay-skin=primary]{ + padding: unset !important;margin: 0 !important; +} +.layui-form-select .layui-input{ + background-color: #f3f2f2; +} +.right-form{ + padding: 0 20px 20px; + margin-bottom: 15px; + background-color: #ffffff; +} +.form-title{ + text-align: center; + padding: 20px 0; +} +.form-title p:nth-child(1){ + font-size: 19px; + font-weight: bold; + padding-bottom: 5px; +} +.form-title p:nth-child(2){ + font-size: 14px; +} + +/*推荐文章*/ +.right-news-list{ + +} +.right-news-list .right-tab{ + padding-bottom: 15px; + background-color: #ffffff; +} +.right-news-list .right-tab ul{ + margin: 0 20px; + border-bottom: 3px solid #f3f2f2; +} +.right-news-list .right-tab ul li{ + font-size: 18px; + width: 80px; + text-align: center; + padding: 10px 0; + position: relative; +} +.right-news-list .right-tab ul li em{ + height: 3px; + width: 80px; + background-color: #50972c; + display: block; + position: absolute; + bottom: -3px; +} +.right-news-list .right-list{ + margin-bottom: 15px; +} +.right-news-list dl{ + display: flex; + flex-flow: wrap; + background-color: #ffffff; + padding: 0 20px 15px; +} +.right-news-list dt{ + width: 95px; + height: 70px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + position: relative; +} +.right-news-list dd{ + padding-left: 10px; +} +.right-news-list dd p:nth-child(1){ + width: 160px; + height: 40px; + margin-bottom: 12px; +} + +/*banner*/ +.right-banner{ + width: 305px; + height: 461px; + background-repeat: no-repeat; + background-position: center; + background-size: cover; +} +/**********************内容右侧End**********************/ diff --git a/themes/huishou/static/assets/css/product-detail.css b/themes/huishou/static/assets/css/product-detail.css new file mode 100644 index 0000000..d46056c --- /dev/null +++ b/themes/huishou/static/assets/css/product-detail.css @@ -0,0 +1,258 @@ +/*主图主结构*/ +.preview-wrap{width: 450px; } +.preview-wrap #magnifier-wrap{position: relative; width: 450px;} +.preview-wrap #magnifier-wrap > span{cursor: not-allowed;position: absolute; bottom: 0; width: 20px; height: 75px; line-height: 75px; text-align: center;border: 1px solid #e5e5e5;} +.preview-wrap #magnifier-wrap > span.ns-text-color-gray{cursor: pointer;} +.preview-wrap #magnifier-wrap .spec-left-btn{left: 0;} +.preview-wrap #magnifier-wrap .spec-right-btn{right: 0;} + + +/*显示图*/ +.preview-wrap #magnifier-wrap .magnifier-main{position: relative; width: 450px; height: 450px; line-height: 450px; text-align: center;} +.preview-wrap #magnifier-wrap .magnifier-main img{width: 100%;height:100% } +.preview-wrap #magnifier-wrap .magnifier-drag{position: absolute; top: 0; left: 0; background-color: #fede4f; opacity: 0.4; filter: alpha(opacity=40); cursor: move;} +.preview-wrap #magnifier-wrap .magnifier-pop{position: absolute; top: 0; overflow: hidden; background: #fff url(../images/loading.gif) no-repeat center center; z-index: 99;} +/*組合图*/ +.preview-wrap #magnifier-wrap .spec-items{position: relative; width: 550px; height: 90px; overflow: hidden; margin: 0 auto;} +.preview-wrap #magnifier-wrap .spec-items ul{ +position: absolute; +top: 15px; +left: 0; +display: flex; +} +.preview-wrap #magnifier-wrap .spec-items ul *{-webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s;} +.preview-wrap #magnifier-wrap .spec-items li{ +width: 75px; +height: 73px; +overflow: hidden; +margin-right: 5px; +border: 1px solid #999; +cursor: pointer; +opacity: .5; +display: flex; +flex-flow: column; +align-items: center; +text-align: center; +justify-content: center; +} +.preview-wrap #magnifier-wrap .spec-items li.ns-border-color-gray{border: 1px solid #e5e5e5; opacity: 1} +.preview-wrap #magnifier-wrap .spec-items li img{width: 100%;} + +/*隐藏放大*/ +.mag-target-img {position: absolute;top: 0;left: 0;} +.info-left .preview-wrap {width: 600px;} +.info-left .preview-wrap #magnifier-wrap .magnifier-main{width: 600px;height: 450px;line-height: 450px;} +.info-left .preview-wrap #magnifier-wrap{width: 600px;} +.info-left .basic-info-wrap {float:left;width:645px;margin-left: 10px;} + + +/*头部导航标题*/ +.product-nav-txt{ + height: 30px; + line-height: 30px; + padding: 12px 0; + display: flex; +} + +.product-nav-txt .arrow{ + margin: 0 7px; + font-family: sans-serif; + color: #8c8c8c; +} + +.product-nav-txt .finish{ + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/*主体头部*/ +.product-info{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; + margin-bottom: 20px; +} +.product-info .info-left{ + width: 600px; +} +.product-info .info-right{ + width: 570px; + padding: 0 55px; + display: flex; + flex-flow: column; + justify-content: center; +} +.info-right .info-title{ + +} +.info-right .info-title p:nth-child(1){ + font-size: 22px; + font-weight: 700; + padding-bottom: 15px; +} +.info-right .info-title p:nth-child(2){ + font-size: 14px; + color: #999; + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(3) em{ + color: #d90114; +} +.info-right .info-title p:nth-child(3) .price{ + font-size: 36px; + color: #d90114; +} +.info-right .info-title p:nth-child(3) .freight{ + border: 1px solid #999; + padding: 2px; + margin: 0 20px; + font-size: 12px; +} +.info-right .info-title p:nth-child(3) del{ + color: #999; +} +.info-right .info-title p:nth-child(4){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(5){ + padding-bottom: 20px; +} +.info-right .info-title p:nth-child(6){ + padding-bottom: 20px; +} +.info-right .info-button{ + display: flex; + font-size: 20px; + border-bottom: 1px solid #f5f5f5; + padding-bottom: 40px; + margin-bottom: 20px; +} +.info-right .info-button .btn-zx{ + width: 160px; + height: 46px; + background-color: #d90114; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + margin-right: 10px; + cursor: pointer; +} +.info-right .info-button .btn-yy{ + width: 160px; + height: 46px; + background-color: #458122; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; +} +.info-right .info-desc{ + +} +.info-right .info-desc p:nth-child(1){ + padding-bottom: 20px; +} +.info-right .info-desc p:nth-child(1) span{ + color: #458122; +} +.info-right .info-desc p:nth-child(2){ + color: #999; + line-height: 22px; +} + +/*商品详情*/ +.product-detail{ + display: flex; + justify-content: space-between; + background-color: #fff; + padding: 30px; +} +.product-detail .detail-left{ + width: 600px; +} +.product-detail .detail-left-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-detail .detail-left ul{ + height: 177px; + color: #555; + display: flex; + flex-flow: column; + /*justify-content: space-between;*/ +} +.product-detail .detail-left ul li{ + list-style: disc; + list-style-position: inside; + height: 35px; + line-height: 35px; +} +.detail-right{ + width: 600px; +} +.detail-right .detail-right-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.detail-right .detail-right-param{ + display: flex; + flex-flow: wrap; + color: #555; + border-right: 1px solid #999; + border-bottom: 1px solid #999; +} +.detail-right .detail-right-param dl{ + width: 298.5px; + height: 43px; + display: flex; + align-items: center; + border-top: 1px solid #999; + border-left: 1px solid #999; +} +.detail-right .detail-right-param dt{ + width: 70px; + height: 44px; + line-height: 44px; + text-align: center; + border-right: 1px solid #999; +} +.detail-right .detail-right-param dd{ + height: 44px; + width: 199px; + line-height: 44px; + padding-left: 30px; +} + +/*商品图片详情*/ +.product-img{ + background-color: #fff; + padding: 0 30px; +} +.product-img .img-title{ + font-size: 18px; + font-weight: 700; + padding-bottom: 20px; +} +.product-img .img-detail{ + display: flex; + flex-flow: wrap; + justify-content: space-between; +} +.product-img .img-detail .img-detail-li{ + width: 600px; + height: 450px; + padding-bottom: 20px; +} +.product-img .img-detail img{ + width: 100%; +} diff --git a/themes/huishou/static/assets/css/product.css b/themes/huishou/static/assets/css/product.css new file mode 100644 index 0000000..634aaa9 --- /dev/null +++ b/themes/huishou/static/assets/css/product.css @@ -0,0 +1,172 @@ +.crumbs-nav{ height:30px; line-height:30px; padding:12px 0;display: flex;justify-content: space-between;} +.crumbs-nav span{ color:#8c8c8c; float:left;} +.crumbs-nav-item{ float:left; margin-right:7px; position:relative;} +.crumbs-nav-item .arrow{ font-family: simsun;} +.crumbs-nav-item a span{ color:#555;} +.crumbs-nav-item .menu-drop{ float:left; margin-right:7px; background-color:#fff;} +.crumbs-nav-item .icon-right{ font-size:12px;} +.cn-goodsName{ width:300px; display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; float:left; color:#8c8c8c;} + +.crumbs-nav span.arrow{ margin:0 7px; font-family:sans-serif; color:#8c8c8c;} +.crumbs-nav span.finish{ display:inline-block; width:300px; height:25px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;} + +.selector{ background-color:#fff; margin-bottom:15px;} +.selector .s-line{ border:1px dotted #d2d2d2; margin-top:-1px;} +.selector .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.selector .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.selector .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.selector .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.selector .s-l-v-list li{ float:left; width:100px; overflow:hidden; margin-right:10px;} +.selector .s-l-v-list li.curr a,.selector .s-l-v-list li a.shaixuan{ color:#f42424;} + +.selector .s-l-opt{ position:absolute; top:10px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.selector .s-l-opt a{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c;} +.selector .s-l-opt a:hover{ border-color:#f42424; color:#f42424;} +.selector .s-l-opt a .iconfont{ font-size:12px; float:left; margin-top:2px;} +.selector .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.selector .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.selector .s-l-opt .s-l-multiple{ padding:0 5px;} +.selector .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#f42424;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} + + +/*产品内容*/ +.product-tab{ + display: flex; + justify-content: space-between; + border-bottom: 1px solid #f0f0f0; + margin-bottom: 20px; + padding-bottom: 7px; + padding-left: 5px; +} +.tab-left{ + display: flex; + font-size: 22px; + justify-content: center; + align-items: center; + flex-flow: wrap; +} +.tab-left .selected-txt{ + font-weight: 700; +} +.tab-left .selected{ + width: 100%; + height: 2px; + background-color: #50972c; + position: absolute; + bottom: -7px; + left: 0; +} +.tab-left p:nth-child(1){ + position: relative; +} +.tab-left p:nth-child(2){ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 15px; +} +.tab-left p:nth-child(3){ + position: relative; +} +.tab-left img{ + position: absolute; + right: -30px; + top: 0; +} +.tab-right{ + font-size: 14px; +} +.tab-right .selected{ + color: #50972c; +} +.tab-right .tab-line{ + width: 1px; + height: 12px; + background-color: #999; + margin: 0 10px; +} +.tab-right ul{ + display: flex; + flex-flow: wrap; + align-items: center; + height: 100%; +} +.tab-right ul li{ + display: flex; + align-items: center; +} +.scheme_right { + /*width: 1067px;*/ +} +.scheme_right ul { + display: flex; + flex-wrap: wrap; +} +.scheme_right li { + width: 242px; + height: 292px; + background: #fff; + border-radius: 2px; + -webkit-transition: .2s; + transition: .2s; + border: 1px solid hsla(0,0%,90.6%,.5); +} +.scheme_right .margin-rb{ + margin: 0 15px 15px 0; +} +.scheme_right li .scheme_li{ + width: 212px; + height: 277px; + padding: 15px 15px 0 15px; + position: relative; +} +.scheme_right li .scheme_li:hover{ + box-shadow: 1px 1px 25px 2px #e0dddd!important; + transition: all .1s ease-out; +} +.scheme_right li p:nth-child(1) { + width: 212px; + height: 159px; + background-color: #b5b5b5; + margin-bottom: 10px; +} +.scheme_right li p:nth-child(1) img{ + width: 100%; + height: 100%; +} +.scheme_right li p:nth-child(2) { + font-size: 14px; + font-weight: bold; + /*padding-bottom: 5px;*/ +} +.scheme_right li p:nth-child(3) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; + height: 24px; +} +.scheme_right li p:nth-child(4) { + font-size: 14px; + padding-bottom: 5px; + color: red; +} +.scheme_right li p:nth-child(4) em{ + font-size: 20px; + font-weight: bold; +} +.scheme_right li p:nth-child(5) { + font-size: 14px; + padding-bottom: 5px; + color: #999999; +} +#goods-page{ + text-align: center; + padding: 20px 0;; +} + + diff --git a/themes/huishou/static/assets/css/select.css b/themes/huishou/static/assets/css/select.css new file mode 100644 index 0000000..a3654c4 --- /dev/null +++ b/themes/huishou/static/assets/css/select.css @@ -0,0 +1,117 @@ +/*商品筛选功能*/ +.right-extra{ width:100%; position:relative; background-color:#fff; margin-bottom:15px;} +.right-extra .u_cloose{ border:1px dashed #d2d2d2; height:25px; padding:12px 12px 12px 30px;} +.right-extra .u_cloose dl{ color:#8c8c8c;} +.right-extra .u_cloose dt{ float:left; line-height:25px;} +.right-extra .u_cloose dd{ float:left;} +.right-extra .u_cloose dd .get_item{ position:relative; height:23px; line-height:23px; border:1px dotted #d2d2d2; padding:0 0 0 8px; margin-right:10px; float:left;} +.right-extra .u_cloose dd .get_item b{ font-weight:normal;} +.right-extra .u_cloose dd .get_item em{ color:#50972c;} +.right-extra .u_cloose dd .get_item a{ + color: #50972c !important; +} +.right-extra .u_cloose dd .get_item:hover a{ background-color:#50972c; color: #ffffff !important;} +.right-extra .u_cloose dd .get_item:hover{ border-color:#50972c;} + +.right-extra .u_cloose .give_up_all{ float:right; margin-right:0; line-height:25px;} + +.screen-item .s-line{ border:1px dashed #d2d2d2; margin-top:-1px;} +.screen-item .s-line:after{ content: ' '; display: block; clear: both; height: 0; visibility: hidden;} +.s-line .s-l-wrap{ position:relative; line-height:28px; padding:10px 0;} +.s-line .s-l-tit{ float:left; padding-left:30px; width:80px; color:#8c8c8c;} +.s-line .s-l-value{ margin-left:110px; padding-right:130px; padding-left:10px; overflow:hidden; zoom:1;} +.brand_select_more{ max-height:111px; position:relative;} + +.extend .brand_select_more{ min-height:111px; height:auto;} + +.extend .ps-container>.ps-scrollbar-y-rail, +.extend .ps-container>.ps-scrollbar-x-rail, +.extend .ps-container:hover>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-y-rail, +.multiple .ps-container>.ps-scrollbar-x-rail, +.multiple .ps-container:hover>.ps-scrollbar-y-rail{ opacity:1; filter: alpha(opacity=100);} + +/*品牌*/ +.wrap_brand .brand_div{ overflow:hidden; zoom:1;padding-top: 1px;} +.wrap_brand .brand_img_word{ float:left; width:110px; height:40px; border:1px solid #ddd; margin:-1px -1px 0 0; background-color:#fff; position:relative; text-align:center;} +.wrap_brand .brand_img_word a{ display:block; width:110px; height:40px; line-height:40px; zoom:1; overflow:hidden;} +.wrap_brand .brand_img_word span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; width:100%; display:block;} +.wrap_brand .brand_img_word img{ width:118px; height:52px;} +.wrap_brand .brand_img_word:hover{ position:relative; z-index:5; border-color:#50972c;} +.wrap_brand .brand_img_word:hover a{ border-color:#50972c;color:#50972c;} +.wrap_brand .brand_img_word:hover .logo{ display:none;} +.wrap_brand .brand_img_word i{ display:none; width:12px; height:12px; background:url(../images/dsc-icon.png) no-repeat; position:absolute; top:1px; right:1px;} +.brand_img{ + height: 28px; + overflow: hidden; +} + +.brand_auto .brand_range{ float:left; margin-right:30px;} +.brand_auto .brand_range a:hover{color:#50972c;} + +/*类型*/ +.type_auto .type_range{ float:left; margin-right:30px;} +.type_auto .type_range a:hover{color:#50972c;} + +/*地区*/ +.area_auto .area_range{ float:left; margin-right:30px;} +.area_auto .area_range a:hover{color:#50972c;} + +/*成色*/ +.new_auto .new_range{ float:left; margin-right:30px;} +.new_auto .new_range a:hover{color:#50972c;} + +/*颜色*/ +.s-l-value .color_list_color{ margin:4px 0;} +.s-l-value .color_list_color .color_divdd{ width:auto; height:auto; margin-right:20px; display:inline-block; float:left;} +.s-l-value .color_list_color .color_divdd dd{ height:20px; width:20px; text-align:center; line-height:20px; margin-right:0; position:relative;} +.s-l-value .color_list_color .color_divdd dd span{ height:18px; width:18px; display:block; border:1px solid #dcdcdc;} + +.screen-item .selected{ + font-weight: 700; + color: #50972c !important; +} + +/*操作*/ +.s-line .s-l-opt{ position:absolute; top:15px; right:10px; width:75px; height:auto; line-height:22px; overflow:hidden; zoom:1;} +.s-line .s-l-opt div{ display:block; float:left; border:1px solid #d2d2d2; line-height:18px; height:18px; color:#8c8c8c; cursor:pointer;} +.s-line .s-l-opt div:hover{ border-color:#50972c; color:#50972c;} +.s-line .s-l-opt div .iconfont{ font-size:12px; float:left; margin-top:1px;} +.s-line .s-l-opt div .icon-reduce{ margin-top:1px;} + +.s-line .s-l-opt .s-l-more{ width:18px; text-align:center; margin-right:5px;} +.s-line .s-l-opt .s-l-more .iconfont{ margin-left:3px;} +.s-line .s-l-opt .s-l-multiple{ padding:0 5px; float:right;} +.s-line .s-l-opt .s-l-multiple .iconfont{ margin-right:2px;} + +/*属性*/ +.s-l-value .item_list{ overflow:hidden;} +.s-l-value .item_list dd{ float:left; margin-right:40px; width:auto; height:28px; white-space:nowrap;} +.s-l-value .item_list dd strong{ font-weight:normal;} +.s-l-value .item_list .get_me a{ cursor:pointer;} +.s-l-value .item_list .get_me span{ background: url(../images/checkbox_12x12.png) no-repeat; display: block; float: left; height: 12px; margin:9px 5px 0 0; width: 12px;} +.s-l-value .item_list .selected span{ background: url(../images/checked_12x12.png) no-repeat;} + +.tw_buttom{ text-align:center; padding:10px 0 5px; display:none;} +.tw_buttom span{ width:48px; height:23px; line-height:23px; border:1px solid #d2d2d2; background-color:#fff; color:#8c8c8c; display:inline-block; font-size:12px; cursor:pointer;} +.tw_buttom .sure{ background-color:#50972c; border-color:#50972c; color:#fff; margin-right:10px;} +.tw_buttom .disabled{ display:none;} + +/*更多选项*/ +.s-more{ text-align: center;position: relative;top: -1px;border-top: 5px solid #f8f8f8;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span{ position: relative;display: inline-block;margin-top: -1px;height: 28px;line-height: 28px;padding: 0 12px;background: #f8f8f8;cursor: pointer;color: #8c8c8c;-webkit-transition: border-color .15s ease-in-out;-moz-transition: border-color .15s ease-in-out;transition: border-color .15s ease-in-out;} +.s-more span:hover{ color:#50972c;} +.s-more .iconfont{ font-size:12px; margin-left:6px;} +.s-more strong{ font-weight:normal;} + + + +.multiple .all_a_z, +.multiple .zimu_list, +.multiple .enter_yes_no, +.multiple .tw_buttom{ display:block;} +.multiple .wrap_brand{ display:none;} + +.ohide{ height:28px;} +.extend .ohide,.multiple .ohide{ height:auto;} +.same_li .s-l-opt .choose_open{ display:none;} diff --git a/themes/huishou/static/assets/css/style.min.css b/themes/huishou/static/assets/css/style.min.css new file mode 100644 index 0000000..8000876 --- /dev/null +++ b/themes/huishou/static/assets/css/style.min.css @@ -0,0 +1,703 @@ +html { + height: 100%; + width: 100%; + font-size: 16px; +} + +* { -webkit-user-select: none; } + +body, +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +code, +form, +fieldset, +legend, +input, +textarea, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; +} + +body { + width: 100%; + height: 100%; + font-family: "Microsoft Yahei"; + color: #000; + background-color: #fff; +} + +strong { + font-weight: bold; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; + font-weight: bold; + ; +} + +section, +header, +article, +time, +nav, +footer, +figure, +figcaption { + display: block; + margin: 0; + padding: 0; +} + +input:focus, +a:focus { + outline: none; +} + +fieldset, +img { + display: block; + border: 0; +} + +ol, +ul { + list-style: none; +} + +caption, +th { + text-align: left; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; +} + +q:before, +q:after { + content: ''; +} + +em { + font-style: normal +} + +abbr, +acronym { + border: 0; + font-variant: normal; +} + +sup { + vertical-align: text-top; +} + +sub { + vertical-align: text-bottom; +} + +button, +input, +textarea, +select { + font-family: tahoma, arial, simsun, sans-serif; + font-size: inherit; + font-weight: inherit; + line-height: 1.5; + vertical-align: middle; +} + +button, +input, +textarea, +select { + *font-size: 100%; +} + +textarea { + resize: none; +} + +legend { + color: #000; +} + +a { + vertical-align: baseline; + cursor: pointer; + color: #000; +} + +a, +a:visited { + text-decoration: none; +} + +/* 公共css */ +.wrap { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.w1578{ + width: 1578px; + margin: 0 auto; +} +.w1200{ + width: 1200px; + margin: 0 auto; +} +.w1280{ + width: 1280px; + margin: 0 auto; +} + +.shangqiao{ + cursor: pointer; +} + +.flexR{ + display: flex; +} + +.flexRC{ + display: flex; + justify-content: center; + align-items: center; +} + +.flexW{ + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-content: space-between; +} + +.flexC{ + display: flex; + flex-direction: column; +} +.flexCC{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.flexCB{ + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; +} + +[v-cloak] { + display: none !important; +} + +section { + margin-top: 70px; + flex: 1; + letter-spacing: .43px; +} + +#cnzz_stat_icon_1262038122{ + display: none; +} +#cnzz_stat_icon_1262038122 img{ + width: 0; + height: 0; +} + +.color-green{ + color: #50972c; +} + +.color-grey{ + color: #9a9a9a; +} +.over1 { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.over2 { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + + +/*右侧导航*/ +.rightMenu{ + display: block; + width: 66px; + height: auto; + position: fixed; + top: 40%; + right: 30px; + z-index: 90; + box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08); +} +.rightMenu li{ + height: 76px; + background: #fff; + position: relative; + text-align: center; + font-size: 12px; + color: #666666; + line-height: 20px; +} +.rightMenu li>a{ + display: block; + width: 100%; + height: 100%; + position: relative; + color: #666666; + text-align: center; + padding-top: 15px; +} +.rightMenu li::after{ + content: ""; + display: block; + width: 40px; + height: 1px; + background: #ebebeb; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -20px; +} +.rightMenu li:last-child::after{ + display: none; +} +.rightMenu li span{ + display: block; + width: 100%; + height: 26px; + margin: 0 auto 7px; + text-align: center; +} +.rightMenu li span img{ + display: block; + margin: 0 auto; +} +.rightMenu li span .img2{ + display: none; +} +.rightMenu li em{ + display: block; + width: 20px; + height: 20px; + text-align: center; + line-height: 20px; + border-radius: 50%; + overflow: visible; + position: absolute; + top: 5px; + right: 8px; + background: #50982c; + color: #fff; + font-size: 12px; +} +.rightMenu li:hover em{ + background: #b2d600; + color: #50982c; +} +.rightMenu li:hover{ + background: #50982c; +} +.rightMenu li:hover::after{ + display: none; +} +.rightMenu li:hover a{ + color: #fff; +} +.rightMenu li:hover span .img1{ + display: none; +} +.rightMenu li:hover span .img2{ + display: block; +} +.rightMenu li.zhiding a{ + padding-top: 14px; +} +.rightMenu li.zhiding span{ + margin: 0; +} + +.rightMenu li:nth-child(1){ + +} + +.rightMenu .rightMenu-show{ + display: none; + position: absolute; + left: -150px; + top: 0; + background-color: #ffffff; + padding: 10px 0; + width: 150px; + height: 56px; + line-height: 30px; + box-shadow: -5px 0px 10px 0 rgb(0 0 0 / 8%); +} +.rightMenu .rightMenu-show p:nth-child(1){ + font-size: 20px; + font-weight: 700; + color: #50972d; + /*padding-bottom: 10px;*/ +} + +/*底部悬浮表单*/ +.footerForm{ + display: block; + width: 100%; + height: 110px; + position: fixed; + bottom: -80px; + left: 0; + z-index: 90; +} +.footerForm-in{ + position: relative; + text-align: center; + font-size: 0; + height: 80px; + padding: 20px 0; +} +.footerForm-in span{ + font-size: 26px; + color: #fbc35d; + line-height: 40px; + margin-right: 90px; + display: inline-block; +} +.footerForm-in input{ + display: inline-block; + vertical-align: top; + width: 260px; + height: 40px; + border-radius: 4px; + background: #fff; + margin-right: 10px; + padding: 0 16px; + font-size: 14px; + color: #333; +} +.footerForm-in button{ + display: inline-block; + vertical-align: top; + width: 110px; + height: 40px; + border-radius: 4px; + background: #50982c; + text-align: center; + font-size: 14px; + color: #fff; + border: none; +} +.footerForm-kefu{ + display: inline-block; + vertical-align: top; + width: 128px; + position: relative; + margin-left: 54px; + margin-right: 56px; + height: 40px; +} +.footerForm-kefu img{ + position: absolute; + bottom: -20px; + left: 0; + display: block; + width: 128px; +} +.footerForm .colse{ + display: block; + width: 392px; + height: 30px; + background-repeat: no-repeat; + background-position: center; + background-image: url(../images/close-01.png); + cursor: pointer; + z-index: 19; + margin: 0 auto; +} +.footerForm .check-open{ + background-image: url(../images/close-02.png); +}.header { + width: 100%; + height: 70px; + background-color: #FFFFFF; + position: fixed; + top: 0; + z-index: 999; + box-shadow: 0 0 2px 2px #E8E8ED; + font-family: MicrosoftYaHei; +} + +.header header { + width: 100%; + max-width: 1280px; + height: 70px; + margin: 0 auto; + display: flex; + align-items: center; +} + +.header-left { + width: 124px; +} + +.header ul { + margin:0 auto; + /* width: 560px; */ + font-size: 16px; + letter-spacing: 2px; + display: flex; + justify-content: space-between; + margin-left: 20px; + /* margin-right: 582px; */ +} + +.header ul li { + width: 130px; + text-align: center; + display: block; +} + +/* .header ul li a { + width: 150px; + display: block; +} */ + +.header ul li a em{ + color: #f10000; + font-size: 14px; +} + +.header-right{ + float: right; + width: 215px; + font-size: 20px; + color: #333333; + font-weight: bold; +} + +.activity { + color: #50972c !important; +} + +@media (max-width: 1680px){ + .header header { + max-width: 1200px; + } + + .header ul { + margin-right: 204px; + } +} +.footer { + width: 100%; + height: 300px; +} +.footer a { + color: #575d6c; +} +.footer footer { + width: 100%; + /*height: 250px;*/ + color: #575d6c; + background-color: #f0eff0; +} +.footer-mode { + /*height: 200px;*/ + /*background-color: rgb(37, 37, 37);*/ +} +.logo{ + padding: 0 60px; +} +.nav { + width: 225px; + height: 273px; + /* padding: 0 80px; */ + display: flex; + flex-direction: column; +} +.nav li{ + padding-bottom: 20px; +} +.nav li b{ + color: #333; +} +.mode-link{ + width: 1px; + height: 273px; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.mode-link .link-center{ + background-color: #bfbfbf; + height: 150px; + width: 1px; +} +.contact { + padding: 0 85px; + display: flex; + flex-direction: column; + text-align: center; +} +.contact p:nth-child(1) { + padding-bottom: 25px; +} +.contact p:nth-child(2) { + font-size: 18px; +} +.contact p:nth-child(3) { + font-family: Impact; + font-size: 34px; + letter-spacing: 1px; + margin-top: 4px; + color: #34802a; +} +.contact p:nth-child(4) { + font-size: 14px; + padding-bottom: 25px; + margin-top: 4px; +} +.contact p:nth-child(5) { + margin-bottom: 12px; +} +.contact ul{ + display: flex; + justify-content: center; +} +.contact ul li{ + position: relative; +} +.contact ul li:hover .qrcode-no{ + display: none !important; +} +.contact ul li:hover .qrcode-yes{ + display: block !important; +} +.contact ul li .qrcode-img{ + position: absolute; + top: -110px; + left: -38px; + display: none; +} + +.footer-links{ + margin-top: 10px; +} +.footer-links .links-box{ + border-top: 1px solid #bfbfbf; + border-bottom: 1px solid #bfbfbf; + padding-top: 25px; + padding-bottom: 10px; + display: flex; + flex-flow: wrap; +} +.links-box .links-left{ + width: 80px; +} +.links-box .links-right{ + width: 1200px; +} +.links-box .links-right ul{ + display: flex; + flex-flow: wrap; +} +.links-box .links-right ul li{ + padding-right: 15px; + padding-bottom: 15px; +} + +.attention{ + font-size: 14px; + text-align: center; + line-height: 24px; + padding-left: 60px; +} +.copyright { + /*background-color: rgb(51, 51, 51);*/ + font-size: 14px; + text-align: center; + color: #575d6c; + padding: 10px; +} +.copyright .w1200 { + height: 50px; +} +.copyright .w1200 p:nth-child(2) { + margin: 0 30px; +} +.navColor{ + color: #50972c!important; +} + +.footer-guarantee{ + +} +.footer-guarantee dl{ + display: flex; + height: 90px; +} +.footer-guarantee dt{ + width: 60px; + display: flex; + justify-content: center; + align-items: center; +} + +.footer-guarantee dd{ + width: 225px; + display: flex; + flex-flow: column; + justify-content: center; +} +.footer-guarantee dd p:nth-child(1){ + padding-bottom: 2px; + font-size: 18px; + font-weight: 700; +} +.footer-guarantee dd p:nth-child(2){ + font-size: 14px; +} \ No newline at end of file diff --git a/themes/huishou/static/assets/css/swiper.css b/themes/huishou/static/assets/css/swiper.css new file mode 100644 index 0000000..5b83729 --- /dev/null +++ b/themes/huishou/static/assets/css/swiper.css @@ -0,0 +1,13 @@ +/** + * Swiper 6.6.2 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2021 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: May 19, 2021 + */ + +@font-face{font-family:swiper-icons;src:url('../fonts/3d7c5314e98e4535b1cbd2cb23e5d046.woff') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} \ No newline at end of file diff --git a/themes/huishou/static/assets/fonts/iconfont.eot b/themes/huishou/static/assets/fonts/iconfont.eot new file mode 100644 index 0000000..622d7ec Binary files /dev/null and b/themes/huishou/static/assets/fonts/iconfont.eot differ diff --git a/themes/huishou/static/assets/fonts/iconfont.svg b/themes/huishou/static/assets/fonts/iconfont.svg new file mode 100644 index 0000000..999ca1f --- /dev/null +++ b/themes/huishou/static/assets/fonts/iconfont.svg @@ -0,0 +1,554 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/huishou/static/assets/fonts/iconfont.ttf b/themes/huishou/static/assets/fonts/iconfont.ttf new file mode 100644 index 0000000..06e30f9 Binary files /dev/null and b/themes/huishou/static/assets/fonts/iconfont.ttf differ diff --git a/themes/huishou/static/assets/fonts/iconfont.woff b/themes/huishou/static/assets/fonts/iconfont.woff new file mode 100644 index 0000000..66a1783 Binary files /dev/null and b/themes/huishou/static/assets/fonts/iconfont.woff differ diff --git a/themes/huishou/static/assets/fonts/iconfont.woff2 b/themes/huishou/static/assets/fonts/iconfont.woff2 new file mode 100644 index 0000000..47e9980 Binary files /dev/null and b/themes/huishou/static/assets/fonts/iconfont.woff2 differ diff --git a/themes/huishou/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg b/themes/huishou/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg new file mode 100644 index 0000000..3f0fc24 Binary files /dev/null and b/themes/huishou/static/assets/images/015e3551c8085ad13b65230e9d6b8082.jpg differ diff --git a/themes/huishou/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg b/themes/huishou/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg new file mode 100644 index 0000000..6bf5f4e Binary files /dev/null and b/themes/huishou/static/assets/images/01ab4c9956c92def5a3c5ab8143d6675.jpg differ diff --git a/themes/huishou/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg b/themes/huishou/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg new file mode 100644 index 0000000..5f46ab9 Binary files /dev/null and b/themes/huishou/static/assets/images/04b923306d2fd66b6bab543eaa4b83d6.jpg differ diff --git a/themes/huishou/static/assets/images/15fa28620538174287af554a39b17989.jpg b/themes/huishou/static/assets/images/15fa28620538174287af554a39b17989.jpg new file mode 100644 index 0000000..55ac58d Binary files /dev/null and b/themes/huishou/static/assets/images/15fa28620538174287af554a39b17989.jpg differ diff --git a/themes/huishou/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg b/themes/huishou/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg new file mode 100644 index 0000000..9c0b00f Binary files /dev/null and b/themes/huishou/static/assets/images/27da8650bf4c7b4b1c67233f8605b7ec.jpg differ diff --git a/themes/huishou/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg b/themes/huishou/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg new file mode 100644 index 0000000..d9a3ee0 Binary files /dev/null and b/themes/huishou/static/assets/images/27ff002ed7cbb95524f2e09d3ad3ce97.jpg differ diff --git a/themes/huishou/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg b/themes/huishou/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg new file mode 100644 index 0000000..019fe41 Binary files /dev/null and b/themes/huishou/static/assets/images/28092be3987da701a8e1470303ec0dce.jpg differ diff --git a/themes/huishou/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg b/themes/huishou/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg new file mode 100644 index 0000000..dec2b83 Binary files /dev/null and b/themes/huishou/static/assets/images/2ad9d071eb43bad578853a89d0f8a852.jpg differ diff --git a/themes/huishou/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg b/themes/huishou/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg new file mode 100644 index 0000000..9e744c3 Binary files /dev/null and b/themes/huishou/static/assets/images/33bdd00d8ae7eb3ea24df4cc7421744a.jpg differ diff --git a/themes/huishou/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg b/themes/huishou/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg new file mode 100644 index 0000000..c940cbc Binary files /dev/null and b/themes/huishou/static/assets/images/342bea5f65edcbacd41ccc712f57be1b.jpg differ diff --git a/themes/huishou/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg b/themes/huishou/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg new file mode 100644 index 0000000..12b15fc Binary files /dev/null and b/themes/huishou/static/assets/images/39e22e786026807f560ab919493ea8fe.jpg differ diff --git a/themes/huishou/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg b/themes/huishou/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg new file mode 100644 index 0000000..9b4de8d Binary files /dev/null and b/themes/huishou/static/assets/images/3a5dae0c074abce4e5597523a02efa04.jpg differ diff --git a/themes/huishou/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg b/themes/huishou/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg new file mode 100644 index 0000000..a2eb386 Binary files /dev/null and b/themes/huishou/static/assets/images/3eb27a3733cd8592ba871ba29c5ad784.jpg differ diff --git a/themes/huishou/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg b/themes/huishou/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg new file mode 100644 index 0000000..3e33aa7 Binary files /dev/null and b/themes/huishou/static/assets/images/45bcd9ea1940a253cb228ea3e2bd3595.jpg differ diff --git a/themes/huishou/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg b/themes/huishou/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg new file mode 100644 index 0000000..e84ea76 Binary files /dev/null and b/themes/huishou/static/assets/images/50757938be33fe7710cffce3b0a06b51.jpg differ diff --git a/themes/huishou/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg b/themes/huishou/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg new file mode 100644 index 0000000..fb847dd Binary files /dev/null and b/themes/huishou/static/assets/images/550bb2f5e255455020ed5b7494289b3b.jpg differ diff --git a/themes/huishou/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg b/themes/huishou/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg new file mode 100644 index 0000000..d39c3d2 Binary files /dev/null and b/themes/huishou/static/assets/images/5b3641b45811e783a7cd568606aafcc4.jpg differ diff --git a/themes/huishou/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg b/themes/huishou/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg new file mode 100644 index 0000000..d035ee5 Binary files /dev/null and b/themes/huishou/static/assets/images/5ea0165102ae43274d7b23661b39ddc7.jpg differ diff --git a/themes/huishou/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg b/themes/huishou/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg new file mode 100644 index 0000000..c1fcdf8 Binary files /dev/null and b/themes/huishou/static/assets/images/5f725d20d453820540320d5a42c9f674.jpg differ diff --git a/themes/huishou/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg b/themes/huishou/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg new file mode 100644 index 0000000..ebfc8e9 Binary files /dev/null and b/themes/huishou/static/assets/images/613b54c4532689f91b3a56128e4ae79c.jpg differ diff --git a/themes/huishou/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg b/themes/huishou/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg new file mode 100644 index 0000000..4a004ed Binary files /dev/null and b/themes/huishou/static/assets/images/7ad9a34e605ce54a2ab77574d7fd9623.jpg differ diff --git a/themes/huishou/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg b/themes/huishou/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg new file mode 100644 index 0000000..72c95e6 Binary files /dev/null and b/themes/huishou/static/assets/images/862c9140ff30817a10d95c984fcd094d.jpg differ diff --git a/themes/huishou/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg b/themes/huishou/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg new file mode 100644 index 0000000..7e7d5a9 Binary files /dev/null and b/themes/huishou/static/assets/images/8d1e337e8ea1b25f4914b27edecaa19e.jpg differ diff --git a/themes/huishou/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg b/themes/huishou/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg new file mode 100644 index 0000000..8470b0f Binary files /dev/null and b/themes/huishou/static/assets/images/97ad7ead2696fde36d346b4a8cb933a6.jpg differ diff --git a/themes/huishou/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg b/themes/huishou/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg new file mode 100644 index 0000000..7e6e221 Binary files /dev/null and b/themes/huishou/static/assets/images/9ae49be462770a3db466653a2689ecf3.jpg differ diff --git a/themes/huishou/static/assets/images/acbf278b22be871a9897b07667844faa.jpg b/themes/huishou/static/assets/images/acbf278b22be871a9897b07667844faa.jpg new file mode 100644 index 0000000..b53f649 Binary files /dev/null and b/themes/huishou/static/assets/images/acbf278b22be871a9897b07667844faa.jpg differ diff --git a/themes/huishou/static/assets/images/banner-certify.jpg b/themes/huishou/static/assets/images/banner-certify.jpg new file mode 100644 index 0000000..5bfd765 Binary files /dev/null and b/themes/huishou/static/assets/images/banner-certify.jpg differ diff --git a/themes/huishou/static/assets/images/banner-course.jpg b/themes/huishou/static/assets/images/banner-course.jpg new file mode 100644 index 0000000..b070536 Binary files /dev/null and b/themes/huishou/static/assets/images/banner-course.jpg differ diff --git a/themes/huishou/static/assets/images/banner-esg.jpg b/themes/huishou/static/assets/images/banner-esg.jpg new file mode 100644 index 0000000..9d80408 Binary files /dev/null and b/themes/huishou/static/assets/images/banner-esg.jpg differ diff --git a/themes/huishou/static/assets/images/banner-esg1.jpg b/themes/huishou/static/assets/images/banner-esg1.jpg new file mode 100644 index 0000000..1718060 Binary files /dev/null and b/themes/huishou/static/assets/images/banner-esg1.jpg differ diff --git a/themes/huishou/static/assets/images/banner-right.jpg b/themes/huishou/static/assets/images/banner-right.jpg new file mode 100644 index 0000000..933ea6f Binary files /dev/null and b/themes/huishou/static/assets/images/banner-right.jpg differ diff --git a/themes/huishou/static/assets/images/banner.jpg b/themes/huishou/static/assets/images/banner.jpg new file mode 100644 index 0000000..09f7964 Binary files /dev/null and b/themes/huishou/static/assets/images/banner.jpg differ diff --git a/themes/huishou/static/assets/images/banner.png b/themes/huishou/static/assets/images/banner.png new file mode 100644 index 0000000..af05602 Binary files /dev/null and b/themes/huishou/static/assets/images/banner.png differ diff --git a/themes/huishou/static/assets/images/bj1.png b/themes/huishou/static/assets/images/bj1.png new file mode 100644 index 0000000..64e7ced Binary files /dev/null and b/themes/huishou/static/assets/images/bj1.png differ diff --git a/themes/huishou/static/assets/images/brand-intro.jpg b/themes/huishou/static/assets/images/brand-intro.jpg new file mode 100644 index 0000000..885b0ea Binary files /dev/null and b/themes/huishou/static/assets/images/brand-intro.jpg differ diff --git a/themes/huishou/static/assets/images/case-bg.jpg b/themes/huishou/static/assets/images/case-bg.jpg new file mode 100644 index 0000000..8f30a11 Binary files /dev/null and b/themes/huishou/static/assets/images/case-bg.jpg differ diff --git a/themes/huishou/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg b/themes/huishou/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg new file mode 100644 index 0000000..6a5bcef Binary files /dev/null and b/themes/huishou/static/assets/images/cca7eaa487a62172fe97c977fe52a2d4.jpg differ diff --git a/themes/huishou/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg b/themes/huishou/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg new file mode 100644 index 0000000..9bdeb6c Binary files /dev/null and b/themes/huishou/static/assets/images/cecd2ba84ead81a519b877d0e0ce67d3.jpg differ diff --git a/themes/huishou/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg b/themes/huishou/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg new file mode 100644 index 0000000..76e9b01 Binary files /dev/null and b/themes/huishou/static/assets/images/cfbcafbff1c5dca678ef1f2fed3218cb.jpg differ diff --git a/themes/huishou/static/assets/images/charity-bg.png b/themes/huishou/static/assets/images/charity-bg.png new file mode 100644 index 0000000..d67ebd7 Binary files /dev/null and b/themes/huishou/static/assets/images/charity-bg.png differ diff --git a/themes/huishou/static/assets/images/checkbox_12x12.png b/themes/huishou/static/assets/images/checkbox_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/static/assets/images/checkbox_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/static/assets/images/checked_12x12.png b/themes/huishou/static/assets/images/checked_12x12.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/static/assets/images/checked_12x12.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/static/assets/images/close-01.png b/themes/huishou/static/assets/images/close-01.png new file mode 100644 index 0000000..c991022 Binary files /dev/null and b/themes/huishou/static/assets/images/close-01.png differ diff --git a/themes/huishou/static/assets/images/close-02.png b/themes/huishou/static/assets/images/close-02.png new file mode 100644 index 0000000..dab5dee Binary files /dev/null and b/themes/huishou/static/assets/images/close-02.png differ diff --git a/themes/huishou/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg b/themes/huishou/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/themes/huishou/static/assets/images/d4640bc5afe67fca8fabd6a468df8795.jpg differ diff --git a/themes/huishou/static/assets/images/dsc-icon.png b/themes/huishou/static/assets/images/dsc-icon.png new file mode 100644 index 0000000..8800d07 --- /dev/null +++ b/themes/huishou/static/assets/images/dsc-icon.png @@ -0,0 +1,2354 @@ + + + + + + + + 第二树企业采购平台-二手办公家具出售-二手办公桌椅租赁回收 + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
咨询电话:400-178-1088
+
+
+ + + + +
+ +
+
+
+ +
+ +
+
+

ESG碳减排

+

第二树献力循环经济

+
+
优惠大促-桌椅柜低至299元
+
+
+
+
+

品质货源

+

名企回收优质货源

+
+
名企回收优质货源
+
+
+
+

现货供应

+

最快24小时送货

+
+
现货供应
+
+
+
+

售后保障

+

提供1-3年售后质保

+
+
售后保障
+
+
+
+
+
+

Hi~欢迎来到第二树

+

精选好货在线咨询

+
+
+
+

企业采购办公家具就来第二树

+

已有 1351 位客户提交

+
+
+
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + 我已阅读并且同意第二树的 用户协议 +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+

可租-可售-可回购全生态体系

+

销售/租赁/回收/仓储一站式服务,让企业经营更高效

+
+
+ + +
+
+
+ + + +
+
+
+

全场景一体化办公家具解决方案

+

千余款办公家具现货供应,满足不同阶段企业发展需求

+
+ +
+
+
    +
  • 精选推荐
  • +
  • 工位/职员桌
  • +
  • 班台/经理桌
  • +
  • 办公椅/电脑椅
  • +
  • 文件柜/小推柜
  • +
  • 会议桌/洽谈桌
  • +
  • 沙发/茶几
  • +
+
+

查看更多优质好货 >

+

立即咨询客服

+
+
+
+ + + + + + + +
+
+
+
+ +
+
+
+

第二树办公家具“管家”服务

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+
+
全流程专业服务
+
+

全流程专业服务

+

全程一对一服务,根据企业需求量身定制办公家具解决方案

+
+
+
+
全流程家具服务体系
+
+

全流程家具服务体系

+

提供办公家具清洗/维修/改造/拆装/回收/仓储/资产管理等一条龙服务

+
+
+
+
服务覆盖全国范围
+
+

服务覆盖全国范围

+

全国13大展厅+仓储点,为全国企业提供办公家具解决方案

+
+
+
+
绿色低碳供应链
+
+

绿色低碳供应链

+

为客户颁发碳减排证书,帮助企业减少家具采购过程中的碳排放

+
+
+
+
+
+ +
+
+
+

一站式专业服务 省心省时省力

+

自建自营服务体系 专业服务团队 快速响应全国覆盖

+
+
+
+
+
+
+
+

售前咨询接待

+

1对1专人接待,沟通收集企业所需业务需求

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

方案沟通评价

+

根据企业需求,制作定制化办公家具解决方案

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

项目/服务执行

+

专业团队实施推进,协调相关业务执行

+
+
+
立即咨询 >
+
+
+ +
+
+
+
+
+
+
+

售后回访/服务

+

项目/服务双方验收,完结后售后回访追踪

+
+
+
立即咨询 >
+
+
+
+

办公家具购买/租赁、搬迁及仓储等具体业务实施流程,将根据您企业实际需求及合作进行沟通确认

+
+
+ +
+
+
+

150000余家企业的共同选择

+

提供办公家具全生命周期服务,定制企业办公家具解决方案

+
+
+ +
+
+
+
+ +
+
+
某国内知名旅游平台成都安装项目
+
服务城市:成都
+
服务时间:2022年1月
+
+ 某国内知名旅游平台,是国内数一数二的旅游搜索引擎,此次在第二树一共采购了1300件办公家具产品。员工办公桌,来自国内知名的家具品牌欧林,此款办公桌是从某大型企业回收过来,基本未使用,成色非常新。 从选品到清场,再到送货安装,历时45天,安装完成后,整体简约美观,契合整体风格。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
某国内知名电子商务集团公司北京项目
+
服务城市:北京
+
服务时间:2021年11月
+
+ 该电子商务集团与我们第二树一直保持长期的合作关系,此次合作的项目一共几层楼,共计采购办公桌、办公椅、文件柜等办公家具产品1800多套,第二树北京安装师傅历时1个星期,完成了所有家具的运输安装等相关配套服务。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+ +
+
+
北京某知名出行有限公司租赁项目
+
服务城市:北京
+
服务时间:2020年9月
+
+ 该公司一直与我司保持着良好合作关系,从回收到采购和租赁等,都多次选择了我司,此次新增办公地点,需要快速投入使用,我司专业人员经实地测量,结合具体需求,提供了最优办公家具解决方案,一共租赁500余套办公家具,租期1年。 查看详情 +
+
+

去哪儿网

+

知名电子商务

+

知名出行

+
+
+
+
+
+
+
+ +
+
+
北京绿盟科技有限公司南京安装项目
+
服务城市:南京
+
服务时间:2022年7月
+
+ 北京绿盟科技公司是一家上市企业,成立于2000年,总部位于北京,为多个行业的企业提供全线网络安全产品、全方位安全解决方案。作为第二树的长期合作伙伴,从2019年至今,已有过十几次合作,总计采购办公家具的金额已达百万。今年在南京成立分部,依然选择和我们第二树合作,此次采购二手办公家具约1500多件。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
中国电子系统技术公司武汉安装项目
+
服务城市:武汉
+
服务时间:2022年6月
+
+ 中国电子系统技术有限公司是中国电子网信产业核心企业 、现代数字城市业务牵头单位。通过内部渠道推荐,了解到我们第二树,最后一共采购了880余件二手办公家具产品,从国内某在线教育集团回收,产品成色新、质量好,完全符合该公司的需求。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+ +
+
+
北京某全球化智能电动汽车公司项目
+
服务城市:北京
+
服务时间:2021年5月
+
+ 为了尽快投入使用,确保员工办公空间的健康安全,此智能电动汽车公司整套家具都选用国际大牌世楷Steelcase旗下的二手办公家具,共计300余件,送货安装历时1个星期。 查看详情 +
+
+

北京绿盟科技

+

中国电子系统

+

智能电动汽车

+
+
+
+
+
+
+
+ +
+
+
国内某教育培训公司二手办公家具采购案例
+
服务城市:北京/西安
+
服务时间:2024年5-8月
+
+ 北京某知名教育培训公司是是一家以内容能力与科技能力为基础,以科教、科创、科普为战略方向,助力人的终身成长,并持续探索创新的综合性教育品牌。继5月底成功完成北京办公室近万件办公家具的送货与安装,以及6月中旬西安办公室的办公家具送货安装后,北京办公室第二期项目再次采购了近3000套二手办公家具,其中包括员工办公桌椅柜、会议桌椅、洽谈桌椅、文件柜等。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
君润众乐企业管理咨询有限公司
+
服务城市:武汉
+
服务时间:2022年7月
+
+ 该企业管理咨询公司专注于为服务行业提供一站式人力资源服务,成立于2020年,总部位于深圳,最近在武汉成立了分部,需要采购一批办公家具产品。在我们第二树一共采购了近400多件二手办公家具产品,包含了职员桌椅柜,主管桌椅、会议桌椅等,一站式购齐。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+ +
+
+
杭州某数字医疗健康科技安装项目
+
服务城市:杭州
+
服务时间:2022年2月
+
+ 该公司是一家国内领先的医疗数字科技企业,总部在杭州,由于业务的增长,需要更换更符合现代办公需求以及人员需求的办公家具,根据已经规划好的办公室家具布置设计,选择了欧林旗下一款很具有现代化的高屏风工位,自带显示器屏幕支架,2月18日,我们杭州安装师傅将84张员工屏风工位全部送货安装完毕,后续还会补充其他家具。 查看详情 +
+
+

学而思

+

君润众乐

+

丁香园

+
+
+
+
+
+
+
+ +
+
+
中建八局第四建设有限公司成都安装项目
+
服务城市:成都
+
服务时间:2020年6月
+
+ 为了更好的服务西南地区的客户,该公司决定在成都建立分部。购置产品包含员工桌椅、会议桌椅、沙发茶几、老板桌椅等共计100余件,从选购到送货安装历时15天左右。 查看详情 +
+
+

中建八局

+
+
+
+
+
+
+
+ +
+
+
中国建筑集团溧阳市政府办公家具采购案例
+
服务城市:江苏
+
服务时间:2024.03.17
+
+ 中国建筑集团有限公司,其前身为原国家建工总局,是中国专业化经营历史最久的建筑房地产企业集团之一。此项目位于江苏常驻溧阳市,第二树为溧阳市政府提供了经济环保且符合标准的办公家具解决方案,一共提供了800多件二手办公家具,助力政府机构实现成本控制与资源循环利用的目标。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
成都大运会办公家具租赁项目
+
服务城市:成都
+
服务时间:2023年7月
+
+ 7月28日至8月8日,第31届世界大学生夏季运动会在成都举行,作为中国西部第一次举办世界性综合运动会,本届大运会在筹办方面围绕“绿色、智慧、活力、共享”的办赛理念,优先采购使用绿色产品。第二树作为本届大运会组委会指定的办公家具租赁服务商,提供低碳环保、便捷高效的循环家具租赁以及安装服务,便于组委会策划开闭幕式的活动细节,以及大运会期间管理各类事项。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
重庆某电力工程公司办公家具安装项目
+
服务城市:重庆
+
服务时间:2023年9月
+
+ 重庆某电力工程公司是一家央企全资控股的公司,主营业务涉及能源电力、建筑工程、市政道路、新能源电力服务等领域,该公司的负责人通过网络平台了解到我们第二树,秉持着为企业节约成本,为社会节约资源的想法,选择了我们第二树的二手办公家具。此项目一共采购了近700多件二手办公家具,主要是员工区的办公桌椅柜。 查看详情 +
+
+

中国建筑集团

+

成都大运会

+

电力工程公司

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+

深耕办公服务圈 助力企业ESG碳减排

+

为企业提供注重经济与环境双重效应的循环办公家具解决方案

+
+
+
+
+
第二树助力ESG碳减排
+
第二树从2009年创立至今,始终秉持着“为客户降低成本、为社会节约资源、为环境减少排放”的理念。将回收产品的质量成色及安全性分类鉴定,筛选出可循环使用产品,为企业提供注重经济和环境双重效益的循环办公家具解决方案。
+
+
90816
合作客户数
+
1150334
循环家具数
+
27468720kg
合计减碳值
+
+
(数据统计周期:2021年1月1日0时至今)
+
更多ESG信息 查看详情 >
+
+
+
+
+
+ + + +
+
+ 根据中环联合颁布的碳减排证书核算逻辑,符合相关条件可为企业提供碳减 + 排评价证书,帮助企业实现碳中和。 +
+
+
+
+
+
+ + + + +
+ + + + + + + + + +
+
+
+
+ 一站式办公家具服务 省钱买 放心用 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/static/assets/images/e440d56b738e29b417278f88aa534490.jpg b/themes/huishou/static/assets/images/e440d56b738e29b417278f88aa534490.jpg new file mode 100644 index 0000000..ef2c994 Binary files /dev/null and b/themes/huishou/static/assets/images/e440d56b738e29b417278f88aa534490.jpg differ diff --git a/themes/huishou/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg b/themes/huishou/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg new file mode 100644 index 0000000..3c076a6 Binary files /dev/null and b/themes/huishou/static/assets/images/e693309bdcea3ffbb0cfdd03c4376bbc.jpg differ diff --git a/themes/huishou/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg b/themes/huishou/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg new file mode 100644 index 0000000..afa4edf Binary files /dev/null and b/themes/huishou/static/assets/images/e8c2247ebc2c35287d7d693b4e1e2270.jpeg differ diff --git a/themes/huishou/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg b/themes/huishou/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg new file mode 100644 index 0000000..9a28705 Binary files /dev/null and b/themes/huishou/static/assets/images/f6ab4d9b58bb17cdc10fff2d87c515df.jpg differ diff --git a/themes/huishou/static/assets/images/fa-bg01.png b/themes/huishou/static/assets/images/fa-bg01.png new file mode 100644 index 0000000..13f69ae Binary files /dev/null and b/themes/huishou/static/assets/images/fa-bg01.png differ diff --git a/themes/huishou/static/assets/images/i3.png b/themes/huishou/static/assets/images/i3.png new file mode 100644 index 0000000..fe8561e Binary files /dev/null and b/themes/huishou/static/assets/images/i3.png differ diff --git a/themes/huishou/static/assets/images/jn.png b/themes/huishou/static/assets/images/jn.png new file mode 100644 index 0000000..ee7c1ae Binary files /dev/null and b/themes/huishou/static/assets/images/jn.png differ diff --git a/themes/huishou/static/assets/images/loading.gif b/themes/huishou/static/assets/images/loading.gif new file mode 100644 index 0000000..5b33f7e Binary files /dev/null and b/themes/huishou/static/assets/images/loading.gif differ diff --git a/themes/huishou/static/assets/images/logo.png b/themes/huishou/static/assets/images/logo.png new file mode 100644 index 0000000..64c8058 Binary files /dev/null and b/themes/huishou/static/assets/images/logo.png differ diff --git a/themes/huishou/static/assets/images/qywh1-bg.jpg b/themes/huishou/static/assets/images/qywh1-bg.jpg new file mode 100644 index 0000000..b9ad6a2 Binary files /dev/null and b/themes/huishou/static/assets/images/qywh1-bg.jpg differ diff --git a/themes/huishou/static/assets/images/search.png b/themes/huishou/static/assets/images/search.png new file mode 100644 index 0000000..415fa53 Binary files /dev/null and b/themes/huishou/static/assets/images/search.png differ diff --git a/themes/huishou/static/assets/images/service-bg01.png b/themes/huishou/static/assets/images/service-bg01.png new file mode 100644 index 0000000..d9059ab Binary files /dev/null and b/themes/huishou/static/assets/images/service-bg01.png differ diff --git a/themes/huishou/static/assets/images/service-bg03.png b/themes/huishou/static/assets/images/service-bg03.png new file mode 100644 index 0000000..e0275a8 Binary files /dev/null and b/themes/huishou/static/assets/images/service-bg03.png differ diff --git a/themes/huishou/static/assets/images/site-bg.jpg b/themes/huishou/static/assets/images/site-bg.jpg new file mode 100644 index 0000000..817599c Binary files /dev/null and b/themes/huishou/static/assets/images/site-bg.jpg differ diff --git a/themes/huishou/static/assets/images/tx-bg.png b/themes/huishou/static/assets/images/tx-bg.png new file mode 100644 index 0000000..8d25357 Binary files /dev/null and b/themes/huishou/static/assets/images/tx-bg.png differ diff --git a/themes/huishou/static/assets/images/video.jpg b/themes/huishou/static/assets/images/video.jpg new file mode 100644 index 0000000..6543e48 Binary files /dev/null and b/themes/huishou/static/assets/images/video.jpg differ diff --git a/themes/huishou/static/assets/images/wm_button_icon.png b/themes/huishou/static/assets/images/wm_button_icon.png new file mode 100644 index 0000000..cb4f816 Binary files /dev/null and b/themes/huishou/static/assets/images/wm_button_icon.png differ diff --git a/themes/huishou/static/assets/js/about.js b/themes/huishou/static/assets/js/about.js new file mode 100644 index 0000000..56b56d6 --- /dev/null +++ b/themes/huishou/static/assets/js/about.js @@ -0,0 +1,462 @@ +var vm = new Vue({ + el: '#content', + data: { + site_tab_idx:0, + site_content_sel:[], + site_content_list:[ + { + city: "李桥店展厅", + area: "12000", + address: "北京市顺义区Y603(沿沙路)楚天子谋大厦", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj4.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj5.jpg', + ] + }, + { + city: "青浦展厅", + area: "12000", + address: "上海市青浦区嘉松中路3568号", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-qp-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-qp-5.jpg', + ] + }, + { + city: "浦东展厅", + area: "5000", + address: "上海市浦东新区秀沿路128号11号楼3F第二树", + url: "https://pd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/shpd05.jpg', + ] + }, + { + city: "闵行展厅", + area: "5000", + address: "上海市松江区申光路168号6栋115号", + url: "https://mh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-mh-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-mh-5.jpg', + ] + }, + { + city: "广州展厅", + area: "11000", + address: "广州市番禺区丽景路78号", + url: "https://gz.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/gz1.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/gz05.jpg', + ] + }, + { + city: "深圳展厅", + area: "8000", + address: "深圳市南山区麻磡社区奇星路47号", + url: "https://sz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/sz05.jpg', + ] + }, + { + city: "天津展厅", + area: "7500", + address: "天津市北辰区青光镇铁锅店村104国道旁", + url: "https://tj.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/tj05.jpg', + ] + }, + { + city: "武汉展厅", + area: "5000", + address: "武汉市洪山区白沙洲大道2号(华中城物流建材大市场)4栋3楼", + url: "https://wh.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/wh05.jpg', + ] + }, + { + city: "杭州展厅", + area: "6000", + address: "杭州市萧山区义蓬街道南沙路17号", + url: "https://hz.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/hz05.jpg', + ] + }, + { + city: "成都展厅", + area: "8000", + address: "成都市双流区西航港大道中三段2667号第二树", + url: "https://cd.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cd05.jpg', + ] + }, + { + city: "重庆展厅", + area: "6000", + address: "重庆市江北区江北城组团A07地块(江北嘴金融城旁)俊豪ICFC,A座305", + url: "https://cq.jdwy.cn/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/cq05.jpg', + ] + }, + { + city: "香港展厅", + area: "800", + address: "香港特别行政区观塘区九龙湾启祥道9号信和工商中心7F", + url: "https://hk.deartree.com/", + imgs:[ + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg01.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg02.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg03.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg04.jpg', + 'https://jdwy-goods.oss-cn-shanghai.aliyuncs.com/jdwy/web/images/about/site/xg05.jpg', + ] + }, + { + city: "双桥店展厅", + area: "1200", + address: "北京市朝阳区豆各庄乡Find未来园区二楼", + url: "https://bj.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/bj-sq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/bj-sq-4.jpg', + ] + }, + { + city: "金桥店展厅", + area: "750", + address: "上海市浦东新区金苏路200号金桥万创中心F栋", + url: "https://sh.jdwy.cn/", + imgs:[ + 'https://static.deartree.com/jdwy/images/pc/sh-jq-1.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-2.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-3.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-4.jpg', + 'https://static.deartree.com/jdwy/images/pc/sh-jq-5.jpg', + ] + }, + ], + }, + created() { + if (/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i + .test(navigator.userAgent)) { + //window.location.href = "/wap/about"; + } + // this.site_content_sel = this.site_content_list[0]; + }, + methods: { + clickSiteTab: function(idx) { + this.site_tab_idx = idx; + // this.site_content_sel = this.site_content_list[idx]; + showSite(); + }, + + } +}); +showSite(); +//展厅 +function showSite() { + var swiperSite = new Swiper('.swiper-site', { + initialSlide:0, + observer:true,//修改swiper自己或子元素时,自动初始化swiper + autoplay: false, + speed:2000, + loop: true, + // slidesPerView: 1, + navigation: { + nextEl: '.swiper-next-site', + prevEl: '.swiper-prev-site', + }, + }); +} + + + +//展厅 +// var gallerySite = new Swiper('.gallery-site', { +// slidesPerView: 11, +// freeMode: true, +// watchSlidesVisibility: true, +// watchSlidesProgress: true, +// }); +// var galleryTop = new Swiper('.gallery-top', { +// autoplay: false, +// loop: true, +// thumbs: { +// swiper: gallerySite, +// }, +// }); +//企业文化 +var solidQywh = new Swiper('.solid-qywh', { + slidesPerView: 6, + freeMode: true, + watchSlidesVisibility: true, + watchSlidesProgress: true, +}); +var swiperQywh = new Swiper('.swiper-qywh', { + autoplay: false, + speed:2000, + loop: true, + loopedSlides: 6, + thumbs: { + swiper: solidQywh, + }, +}); +//荣誉 +certifySwiper = new Swiper('#certify .swiper-container', { + watchSlidesProgress: true, + slidesPerView: 'auto', + centeredSlides: true, + loop: true, + loopedSlides: 5, + autoplay: false, + navigation: { + nextEl: '.swiper-next-certify', + prevEl: '.swiper-prev-certify', + }, + pagination: { + el: '.swiper-pagination-certify', + clickable :true, + }, + on: { + progress: function(progress) { + for (i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i); + var slideProgress = this.slides[i].progress; + modify = 1; + if (Math.abs(slideProgress) > 1) { + modify = (Math.abs(slideProgress) - 1) * 0.3 + 1; + } + translate = slideProgress * modify * 260 + 'px'; + scale = 1 - Math.abs(slideProgress) / 5; + zIndex = 999 - Math.abs(Math.round(10 * slideProgress)); + slide.transform('translateX(' + translate + ') scale(' + scale + ')'); + slide.css('zIndex', zIndex); + slide.css('opacity', 1); + if (Math.abs(slideProgress) > 3) { + slide.css('opacity', 0); + } + } + }, + setTransition: function(swiper, transition) { + for (var i = 0; i < this.slides.length; i++) { + var slide = this.slides.eq(i) + slide.transition(transition); + } + + } + } +}) +//里程碑 +var proTab = new Swiper('.milestone-tab', { + speed:1000, + // spaceBetween: 6, + slidesPerView: 5, + freeMode: true, + watchSlidesProgress: true, +}); +var swiper = new Swiper(".milestone-content", { + speed:1000, + // spaceBetween: 6, + thumbs: { + swiper: proTab, + }, + navigation: { + nextEl: '.swiper-next-course', + prevEl: '.swiper-prev-course', + }, +}); +//爱心公益 +var swiperWelfare = new Swiper('.swiper-welfare', { + autoplay: false, + // loop: true, + slidesPerView: 4, + spaceBetween: 20, + pagination: { + el: ".swiper-pagination-welfare", + type: "progressbar", + }, + navigation: { + nextEl: '.swiper-next-welfare', + prevEl: '.swiper-prev-welfare', + }, +}); +// swiperWelfare.el.onmouseover = function() { //鼠标放上暂停轮播 +// swiperWelfare.autoplay.stop(); +// } +// swiperWelfare.el.onmouseleave = function() { +// swiperWelfare.autoplay.start(); +// } + +/* *********************************************************************************************/ +var wow = new WOW( + { + boxClass: 'wow', // 需要执行动画的元素的 class(默认是wow) + animateClass: 'animated', // animation.css 动画的 class(默认是animated) + offset: 100, // 距离可视区域多少开始执行动画(默认为0) + mobile: true, // 是否在移动设备上执行动画(默认为true) + live: true, // 异步加载的内容是否有效(默认为true) + callback: function (box) { + // 每次动画启动时都会触发这个回调函数 + //传入的参数是动画DOM节点 + }, + scrollContainer: null // 可选滚动容器选择器,否则使用窗口 + } +); +wow.init(); +function playVideo(opt) { + if (typeof (opt) == "undefined") { + alert("请传入必要参数!"); + return; + } + if (typeof (opt.elemt) == "undefined") { + alert("请指定播放器要插入的对象!"); + return; + } + if (typeof (opt.src) == "undefined") { + alert("请指定要播放视频的路径!"); + return; + } + var _this = this; + _this.elemt = opt.elemt; //播放器要插入的对象 + _this.src = opt.src; //视频的URL(必设) + _this.width = opt.width > 0 ? opt.width + "" : "100%"; //宽度(默认100%) + _this.height = opt.height > 0 ? opt.height + "" : ""; //高度(默认100%) + _this.autoplay = opt.autoplay == "false" ? "autoplay" : ""; //自动播放(true为自动播放) + _this.poster = opt.poster; //视频封面,播放时的封面图片 + _this.preload = opt.preload == "true" ? "preload" : ""; //预加载(true时启动加载) + _this.loop = opt.loop == "false" ? "loop" : ""; //循环播放(true时循环播放) + var str = ""; + _this.elemt.innerHTML = str; //将str放到要插入的对象中 + $('video').bind('contextmenu', function () { return false; }); +} + +$('.videoShow').on('click', function () { + var video = 'https://cdn.jsdelivr.net/gh/lopinv/wooooden.com@main/docs/assets/images/about.mp4'; + var emhtml = '
'; + emhtml = emhtml + ' + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/huishou/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg b/themes/huishou/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg new file mode 100644 index 0000000..bea4075 Binary files /dev/null and b/themes/huishou/static/assets/picture/c1afedb8fe26e52ef3fa5c8dfdaebdd6.jpg differ diff --git a/themes/huishou/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg b/themes/huishou/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg new file mode 100644 index 0000000..c5c8491 Binary files /dev/null and b/themes/huishou/static/assets/picture/c1cdfbdd5e9b14ca23a74228f56386dd.jpg differ diff --git a/themes/huishou/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg b/themes/huishou/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg new file mode 100644 index 0000000..9a9b8dd Binary files /dev/null and b/themes/huishou/static/assets/picture/c2145ada03b4879adbca8acfcf4e8d44.jpg differ diff --git a/themes/huishou/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg b/themes/huishou/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg new file mode 100644 index 0000000..9fc9413 Binary files /dev/null and b/themes/huishou/static/assets/picture/c35ab237287a8074dcfb2e78406b2092.jpg differ diff --git a/themes/huishou/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg b/themes/huishou/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg new file mode 100644 index 0000000..5d12649 Binary files /dev/null and b/themes/huishou/static/assets/picture/c3abd154505bd12d66dc3ed6fa396d85.jpg differ diff --git a/themes/huishou/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg b/themes/huishou/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg new file mode 100644 index 0000000..f181693 Binary files /dev/null and b/themes/huishou/static/assets/picture/c3b6dcdba39502503089539cfd881dfc.jpg differ diff --git a/themes/huishou/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg b/themes/huishou/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg new file mode 100644 index 0000000..df76b4f Binary files /dev/null and b/themes/huishou/static/assets/picture/c3ec73cb142fb9be511f668e1380b371.jpg differ diff --git a/themes/huishou/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg b/themes/huishou/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg new file mode 100644 index 0000000..d4280bf Binary files /dev/null and b/themes/huishou/static/assets/picture/c3ff8998d5d858f772f4f7f57047e935.jpg differ diff --git a/themes/huishou/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg b/themes/huishou/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg new file mode 100644 index 0000000..9ddf3cd Binary files /dev/null and b/themes/huishou/static/assets/picture/c42666694a9007bc994f63b956e36f9c.jpeg differ diff --git a/themes/huishou/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg b/themes/huishou/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg new file mode 100644 index 0000000..4295712 Binary files /dev/null and b/themes/huishou/static/assets/picture/c47f407729afe0a5668e24d809f38439.jpg differ diff --git a/themes/huishou/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg b/themes/huishou/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg new file mode 100644 index 0000000..d1cc8e3 Binary files /dev/null and b/themes/huishou/static/assets/picture/c482d52c416c13e652a35558ad66f719.jpg differ diff --git a/themes/huishou/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg b/themes/huishou/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg new file mode 100644 index 0000000..919ab96 Binary files /dev/null and b/themes/huishou/static/assets/picture/c4cadf24da0bad3795480391a9807388.jpeg differ diff --git a/themes/huishou/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg b/themes/huishou/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg new file mode 100644 index 0000000..9728423 Binary files /dev/null and b/themes/huishou/static/assets/picture/c4e95d604cfc45297943ef7ffd8fe197.jpeg differ diff --git a/themes/huishou/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg b/themes/huishou/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg new file mode 100644 index 0000000..2ac683d Binary files /dev/null and b/themes/huishou/static/assets/picture/c555ee8e20486108a1c9a194fd4de963.jpg differ diff --git a/themes/huishou/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg b/themes/huishou/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg new file mode 100644 index 0000000..4b6b294 Binary files /dev/null and b/themes/huishou/static/assets/picture/c6e5f3c197f8536d2fe00b581886b94b.jpg differ diff --git a/themes/huishou/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg b/themes/huishou/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg new file mode 100644 index 0000000..be85b5a Binary files /dev/null and b/themes/huishou/static/assets/picture/c70d81f656325cd731f8d7a3ebd15583.jpg differ diff --git a/themes/huishou/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg b/themes/huishou/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg new file mode 100644 index 0000000..2c25bdf Binary files /dev/null and b/themes/huishou/static/assets/picture/c7fbb201ed447423b0b745c475c74cd3.jpg differ diff --git a/themes/huishou/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg b/themes/huishou/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg new file mode 100644 index 0000000..7172e65 Binary files /dev/null and b/themes/huishou/static/assets/picture/c9e009e5393be81457f03845b6ca9624.jpg differ diff --git a/themes/huishou/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg b/themes/huishou/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg new file mode 100644 index 0000000..f39e71c Binary files /dev/null and b/themes/huishou/static/assets/picture/ca59f37ff020b784ee848264855c12ad.jpg differ diff --git a/themes/huishou/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg b/themes/huishou/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg new file mode 100644 index 0000000..0e3bf0e Binary files /dev/null and b/themes/huishou/static/assets/picture/cb0bd398d43c8644936c082aff8a6fa6.jpg differ diff --git a/themes/huishou/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg b/themes/huishou/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg new file mode 100644 index 0000000..9d42945 Binary files /dev/null and b/themes/huishou/static/assets/picture/cb144ab4c3e38efaec6e38de802f4d62.jpg differ diff --git a/themes/huishou/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg b/themes/huishou/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg new file mode 100644 index 0000000..499389d Binary files /dev/null and b/themes/huishou/static/assets/picture/cbeff4383bcf0921a3e43e510c61a89d.jpg differ diff --git a/themes/huishou/static/assets/picture/cc01.png b/themes/huishou/static/assets/picture/cc01.png new file mode 100644 index 0000000..c641a79 Binary files /dev/null and b/themes/huishou/static/assets/picture/cc01.png differ diff --git a/themes/huishou/static/assets/picture/cc02.png b/themes/huishou/static/assets/picture/cc02.png new file mode 100644 index 0000000..dabfe19 Binary files /dev/null and b/themes/huishou/static/assets/picture/cc02.png differ diff --git a/themes/huishou/static/assets/picture/cc03.png b/themes/huishou/static/assets/picture/cc03.png new file mode 100644 index 0000000..b684a71 Binary files /dev/null and b/themes/huishou/static/assets/picture/cc03.png differ diff --git a/themes/huishou/static/assets/picture/cc04.png b/themes/huishou/static/assets/picture/cc04.png new file mode 100644 index 0000000..6732603 Binary files /dev/null and b/themes/huishou/static/assets/picture/cc04.png differ diff --git a/themes/huishou/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg b/themes/huishou/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg new file mode 100644 index 0000000..78e5de0 Binary files /dev/null and b/themes/huishou/static/assets/picture/ccdd523cd648f5ae46bb8dadbd79bda3.jpg differ diff --git a/themes/huishou/static/assets/picture/ccjc-bg-3.png b/themes/huishou/static/assets/picture/ccjc-bg-3.png new file mode 100644 index 0000000..b46d10d Binary files /dev/null and b/themes/huishou/static/assets/picture/ccjc-bg-3.png differ diff --git a/themes/huishou/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg b/themes/huishou/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg new file mode 100644 index 0000000..dee3a74 Binary files /dev/null and b/themes/huishou/static/assets/picture/cd0a1336da33521deafd5939cf5d290f.jpg differ diff --git a/themes/huishou/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg b/themes/huishou/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg new file mode 100644 index 0000000..0814450 Binary files /dev/null and b/themes/huishou/static/assets/picture/cd11b1f114946d26b1322f657cd6589c.jpg differ diff --git a/themes/huishou/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg b/themes/huishou/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg new file mode 100644 index 0000000..cda4531 Binary files /dev/null and b/themes/huishou/static/assets/picture/cd74da372bf7bd23f9850aaf4c2a991a.jpg differ diff --git a/themes/huishou/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg b/themes/huishou/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg new file mode 100644 index 0000000..9a5872e Binary files /dev/null and b/themes/huishou/static/assets/picture/ce48e915912e725d9cc0bdb58fb801ed.jpeg differ diff --git a/themes/huishou/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg b/themes/huishou/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg new file mode 100644 index 0000000..edbc208 Binary files /dev/null and b/themes/huishou/static/assets/picture/ce61dd24ef10f5e84ad42e99db37e796.jpeg differ diff --git a/themes/huishou/static/assets/picture/charity01.png b/themes/huishou/static/assets/picture/charity01.png new file mode 100644 index 0000000..8a6c784 Binary files /dev/null and b/themes/huishou/static/assets/picture/charity01.png differ diff --git a/themes/huishou/static/assets/picture/charity02.png b/themes/huishou/static/assets/picture/charity02.png new file mode 100644 index 0000000..09a966b Binary files /dev/null and b/themes/huishou/static/assets/picture/charity02.png differ diff --git a/themes/huishou/static/assets/picture/charity03.png b/themes/huishou/static/assets/picture/charity03.png new file mode 100644 index 0000000..725b287 Binary files /dev/null and b/themes/huishou/static/assets/picture/charity03.png differ diff --git a/themes/huishou/static/assets/picture/cy01.jpg b/themes/huishou/static/assets/picture/cy01.jpg new file mode 100644 index 0000000..f7a4069 Binary files /dev/null and b/themes/huishou/static/assets/picture/cy01.jpg differ diff --git a/themes/huishou/static/assets/picture/cy02.jpg b/themes/huishou/static/assets/picture/cy02.jpg new file mode 100644 index 0000000..a044bd1 Binary files /dev/null and b/themes/huishou/static/assets/picture/cy02.jpg differ diff --git a/themes/huishou/static/assets/picture/cy03.jpg b/themes/huishou/static/assets/picture/cy03.jpg new file mode 100644 index 0000000..6b979c9 Binary files /dev/null and b/themes/huishou/static/assets/picture/cy03.jpg differ diff --git a/themes/huishou/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg b/themes/huishou/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg new file mode 100644 index 0000000..c19de70 Binary files /dev/null and b/themes/huishou/static/assets/picture/d0d3a6d1d588427833dfa4c15f6f16f3.jpg differ diff --git a/themes/huishou/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg b/themes/huishou/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg new file mode 100644 index 0000000..7eeed5e Binary files /dev/null and b/themes/huishou/static/assets/picture/d303c1cf2f8113d0d6b7533eaa6a2605.jpg differ diff --git a/themes/huishou/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg b/themes/huishou/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg new file mode 100644 index 0000000..0782763 Binary files /dev/null and b/themes/huishou/static/assets/picture/d48fbb42471acc81e11a6e75ddb46d2f.jpg differ diff --git a/themes/huishou/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg b/themes/huishou/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg new file mode 100644 index 0000000..8abb499 Binary files /dev/null and b/themes/huishou/static/assets/picture/d56033675b58c1c4442a92031da2c3f7.jpg differ diff --git a/themes/huishou/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg b/themes/huishou/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg new file mode 100644 index 0000000..c0ae003 Binary files /dev/null and b/themes/huishou/static/assets/picture/d7c2f4e3ae0c27719e3148661628dfab.jpg differ diff --git a/themes/huishou/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg b/themes/huishou/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg new file mode 100644 index 0000000..0016572 Binary files /dev/null and b/themes/huishou/static/assets/picture/d8603a5e785b9de87b768598441e9f1f.jpeg differ diff --git a/themes/huishou/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg b/themes/huishou/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg new file mode 100644 index 0000000..ea9f135 Binary files /dev/null and b/themes/huishou/static/assets/picture/d952a5c698e82143459cfa389c282f99.jpeg differ diff --git a/themes/huishou/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg b/themes/huishou/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg new file mode 100644 index 0000000..08fa3e9 Binary files /dev/null and b/themes/huishou/static/assets/picture/dacccde7be8a1098228fc80819c88be7.jpeg differ diff --git a/themes/huishou/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg b/themes/huishou/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg new file mode 100644 index 0000000..c21d248 Binary files /dev/null and b/themes/huishou/static/assets/picture/dc5177ead9d9df3a01cacda9014c80f9.jpg differ diff --git a/themes/huishou/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg b/themes/huishou/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg new file mode 100644 index 0000000..d94f5d4 Binary files /dev/null and b/themes/huishou/static/assets/picture/dda8460fa1f48e06e429787847dccaaa.jpg differ diff --git a/themes/huishou/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg b/themes/huishou/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg new file mode 100644 index 0000000..eafc287 Binary files /dev/null and b/themes/huishou/static/assets/picture/deb391467895dc905be19d1f10a99a9a.jpg differ diff --git a/themes/huishou/static/assets/picture/dz2.png b/themes/huishou/static/assets/picture/dz2.png new file mode 100644 index 0000000..303db09 Binary files /dev/null and b/themes/huishou/static/assets/picture/dz2.png differ diff --git a/themes/huishou/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg b/themes/huishou/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg new file mode 100644 index 0000000..37f31a8 Binary files /dev/null and b/themes/huishou/static/assets/picture/e1210592b0a39a7307b083b98e3d4a0e.jpg differ diff --git a/themes/huishou/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg b/themes/huishou/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg new file mode 100644 index 0000000..263b204 Binary files /dev/null and b/themes/huishou/static/assets/picture/e187c2d944aa6e6911e4e6d9f27bbe98.jpg differ diff --git a/themes/huishou/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg b/themes/huishou/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg new file mode 100644 index 0000000..db1c3f3 Binary files /dev/null and b/themes/huishou/static/assets/picture/e3f6a2b1819b1a340ae530e94bffe5af.jpg differ diff --git a/themes/huishou/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg b/themes/huishou/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg new file mode 100644 index 0000000..c30b446 Binary files /dev/null and b/themes/huishou/static/assets/picture/e49c881db7d2c6324fef9206357d0830.jpg differ diff --git a/themes/huishou/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg b/themes/huishou/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg new file mode 100644 index 0000000..a591ae9 Binary files /dev/null and b/themes/huishou/static/assets/picture/e59884b809244ba1808ed083e21ca403.jpeg differ diff --git a/themes/huishou/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg b/themes/huishou/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg new file mode 100644 index 0000000..54c3709 Binary files /dev/null and b/themes/huishou/static/assets/picture/e6d76800d42071b5c70ec6b80b1ec610.jpg differ diff --git a/themes/huishou/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg b/themes/huishou/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg new file mode 100644 index 0000000..2759d0d Binary files /dev/null and b/themes/huishou/static/assets/picture/e70fda44d2031cf58830ac8036d14cc8.jpg differ diff --git a/themes/huishou/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg b/themes/huishou/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg new file mode 100644 index 0000000..8abfdb6 Binary files /dev/null and b/themes/huishou/static/assets/picture/e745275cb3f2405f5c6e460211128c3a.jpg differ diff --git a/themes/huishou/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg b/themes/huishou/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg new file mode 100644 index 0000000..043da66 Binary files /dev/null and b/themes/huishou/static/assets/picture/e944bf41201046e9c4496eaca0e9a3e6.jpg differ diff --git a/themes/huishou/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg b/themes/huishou/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg new file mode 100644 index 0000000..891879d Binary files /dev/null and b/themes/huishou/static/assets/picture/ea4eb98f346e4bef5935a2a81dfdbbd1.jpg differ diff --git a/themes/huishou/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg b/themes/huishou/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg new file mode 100644 index 0000000..6348c01 Binary files /dev/null and b/themes/huishou/static/assets/picture/ea9bc461f4cb46a1e16dc89017acd86d.jpeg differ diff --git a/themes/huishou/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg b/themes/huishou/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg new file mode 100644 index 0000000..7868437 Binary files /dev/null and b/themes/huishou/static/assets/picture/eb2d14ac33fb4a0e64786eb13966d431.jpg differ diff --git a/themes/huishou/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg b/themes/huishou/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg new file mode 100644 index 0000000..5afe0e5 Binary files /dev/null and b/themes/huishou/static/assets/picture/ecb70f917f27d1636a0054aa2fae1d57.jpg differ diff --git a/themes/huishou/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg b/themes/huishou/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg new file mode 100644 index 0000000..a60e6fe Binary files /dev/null and b/themes/huishou/static/assets/picture/ed4b8bccfd6ce2b03818643dfab1a476.jpeg differ diff --git a/themes/huishou/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg b/themes/huishou/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg new file mode 100644 index 0000000..ba2a073 Binary files /dev/null and b/themes/huishou/static/assets/picture/ed89651de47da1cc02511ab5883c9251.jpg differ diff --git a/themes/huishou/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg b/themes/huishou/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg new file mode 100644 index 0000000..bdc4192 Binary files /dev/null and b/themes/huishou/static/assets/picture/efa4a365a3bb4dbbf8fc8757db6978e2.jpg differ diff --git a/themes/huishou/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg b/themes/huishou/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg new file mode 100644 index 0000000..fa4e90d Binary files /dev/null and b/themes/huishou/static/assets/picture/f146111d9ba7aaf0bb7486bceda061ea.jpg differ diff --git a/themes/huishou/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg b/themes/huishou/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg new file mode 100644 index 0000000..e004d27 Binary files /dev/null and b/themes/huishou/static/assets/picture/f1e9016794170892cf38b0bdaba25f9a.jpg differ diff --git a/themes/huishou/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg b/themes/huishou/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg new file mode 100644 index 0000000..e18ed71 Binary files /dev/null and b/themes/huishou/static/assets/picture/f412fb3618c20ec22bcb3454cac10fab.jpg differ diff --git a/themes/huishou/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg b/themes/huishou/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg new file mode 100644 index 0000000..72c1410 Binary files /dev/null and b/themes/huishou/static/assets/picture/f4a824ebe6be570c85eb00ce2f901942.jpeg differ diff --git a/themes/huishou/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg b/themes/huishou/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg new file mode 100644 index 0000000..9daeae6 Binary files /dev/null and b/themes/huishou/static/assets/picture/f560ae623de1a913acad7cb2ae2cf733.jpg differ diff --git a/themes/huishou/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg b/themes/huishou/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg new file mode 100644 index 0000000..2779494 Binary files /dev/null and b/themes/huishou/static/assets/picture/f5e6f6eb5fe391bfca603aa27a96984c.jpg differ diff --git a/themes/huishou/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg b/themes/huishou/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg new file mode 100644 index 0000000..7dd96fb Binary files /dev/null and b/themes/huishou/static/assets/picture/f66609b7f831197c36eb478c7c38d8bc.jpeg differ diff --git a/themes/huishou/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg b/themes/huishou/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg new file mode 100644 index 0000000..f1a1985 Binary files /dev/null and b/themes/huishou/static/assets/picture/f67afb3884534bcd3f5ba99682e52f56.jpeg differ diff --git a/themes/huishou/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg b/themes/huishou/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg new file mode 100644 index 0000000..2877be8 Binary files /dev/null and b/themes/huishou/static/assets/picture/f6a447c32cc9efe16529ce4d0dfc86c0.jpg differ diff --git a/themes/huishou/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg b/themes/huishou/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg new file mode 100644 index 0000000..b47943d Binary files /dev/null and b/themes/huishou/static/assets/picture/f7ad4e5f07838a70f31af158d2bf03a8.jpeg differ diff --git a/themes/huishou/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg b/themes/huishou/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg new file mode 100644 index 0000000..fe491c5 Binary files /dev/null and b/themes/huishou/static/assets/picture/f828e7e10d2605eb8ebb8de609fb3f31.jpg differ diff --git a/themes/huishou/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg b/themes/huishou/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg new file mode 100644 index 0000000..1f3de60 Binary files /dev/null and b/themes/huishou/static/assets/picture/fa05d0f7e1211e0011f077aa07b7d720.jpg differ diff --git a/themes/huishou/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg b/themes/huishou/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg new file mode 100644 index 0000000..dfc6d58 Binary files /dev/null and b/themes/huishou/static/assets/picture/fb8decde74b2e6c54744fff4d9d23bdc.jpg differ diff --git a/themes/huishou/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg b/themes/huishou/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg new file mode 100644 index 0000000..5374346 Binary files /dev/null and b/themes/huishou/static/assets/picture/fc669d3ef467cc20ba8760b9ae183d13.jpg differ diff --git a/themes/huishou/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg b/themes/huishou/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg new file mode 100644 index 0000000..7e14139 Binary files /dev/null and b/themes/huishou/static/assets/picture/fca115c27f721ac5be6e4faba1ff35e1.jpeg differ diff --git a/themes/huishou/static/assets/picture/flow01.png b/themes/huishou/static/assets/picture/flow01.png new file mode 100644 index 0000000..c4113f0 Binary files /dev/null and b/themes/huishou/static/assets/picture/flow01.png differ diff --git a/themes/huishou/static/assets/picture/flow02.png b/themes/huishou/static/assets/picture/flow02.png new file mode 100644 index 0000000..3ea8481 Binary files /dev/null and b/themes/huishou/static/assets/picture/flow02.png differ diff --git a/themes/huishou/static/assets/picture/flow03.png b/themes/huishou/static/assets/picture/flow03.png new file mode 100644 index 0000000..70aeb43 Binary files /dev/null and b/themes/huishou/static/assets/picture/flow03.png differ diff --git a/themes/huishou/static/assets/picture/flow04.png b/themes/huishou/static/assets/picture/flow04.png new file mode 100644 index 0000000..9f2a503 Binary files /dev/null and b/themes/huishou/static/assets/picture/flow04.png differ diff --git a/themes/huishou/static/assets/picture/footer-bz1.png b/themes/huishou/static/assets/picture/footer-bz1.png new file mode 100644 index 0000000..06b0b0a Binary files /dev/null and b/themes/huishou/static/assets/picture/footer-bz1.png differ diff --git a/themes/huishou/static/assets/picture/footer-bz2.png b/themes/huishou/static/assets/picture/footer-bz2.png new file mode 100644 index 0000000..7610893 Binary files /dev/null and b/themes/huishou/static/assets/picture/footer-bz2.png differ diff --git a/themes/huishou/static/assets/picture/footer-bz3.png b/themes/huishou/static/assets/picture/footer-bz3.png new file mode 100644 index 0000000..10a3cc1 Binary files /dev/null and b/themes/huishou/static/assets/picture/footer-bz3.png differ diff --git a/themes/huishou/static/assets/picture/footer-bz4.png b/themes/huishou/static/assets/picture/footer-bz4.png new file mode 100644 index 0000000..e8b6916 Binary files /dev/null and b/themes/huishou/static/assets/picture/footer-bz4.png differ diff --git a/themes/huishou/static/assets/picture/gy01.jpg b/themes/huishou/static/assets/picture/gy01.jpg new file mode 100644 index 0000000..8de0b1f Binary files /dev/null and b/themes/huishou/static/assets/picture/gy01.jpg differ diff --git a/themes/huishou/static/assets/picture/gy01.png b/themes/huishou/static/assets/picture/gy01.png new file mode 100644 index 0000000..764629e Binary files /dev/null and b/themes/huishou/static/assets/picture/gy01.png differ diff --git a/themes/huishou/static/assets/picture/gy02.jpg b/themes/huishou/static/assets/picture/gy02.jpg new file mode 100644 index 0000000..8146a3f Binary files /dev/null and b/themes/huishou/static/assets/picture/gy02.jpg differ diff --git a/themes/huishou/static/assets/picture/gy02.png b/themes/huishou/static/assets/picture/gy02.png new file mode 100644 index 0000000..aa32cb7 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy02.png differ diff --git a/themes/huishou/static/assets/picture/gy03.jpg b/themes/huishou/static/assets/picture/gy03.jpg new file mode 100644 index 0000000..dbcf656 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy03.jpg differ diff --git a/themes/huishou/static/assets/picture/gy04.jpg b/themes/huishou/static/assets/picture/gy04.jpg new file mode 100644 index 0000000..f4aba71 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy04.jpg differ diff --git a/themes/huishou/static/assets/picture/gy05.jpg b/themes/huishou/static/assets/picture/gy05.jpg new file mode 100644 index 0000000..5510c30 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy05.jpg differ diff --git a/themes/huishou/static/assets/picture/gy06.jpg b/themes/huishou/static/assets/picture/gy06.jpg new file mode 100644 index 0000000..169e5ac Binary files /dev/null and b/themes/huishou/static/assets/picture/gy06.jpg differ diff --git a/themes/huishou/static/assets/picture/gy07.jpg b/themes/huishou/static/assets/picture/gy07.jpg new file mode 100644 index 0000000..8551f2e Binary files /dev/null and b/themes/huishou/static/assets/picture/gy07.jpg differ diff --git a/themes/huishou/static/assets/picture/gy08.jpg b/themes/huishou/static/assets/picture/gy08.jpg new file mode 100644 index 0000000..1577e74 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy08.jpg differ diff --git a/themes/huishou/static/assets/picture/gy09.jpg b/themes/huishou/static/assets/picture/gy09.jpg new file mode 100644 index 0000000..57883fe Binary files /dev/null and b/themes/huishou/static/assets/picture/gy09.jpg differ diff --git a/themes/huishou/static/assets/picture/gy10.jpg b/themes/huishou/static/assets/picture/gy10.jpg new file mode 100644 index 0000000..d5705bb Binary files /dev/null and b/themes/huishou/static/assets/picture/gy10.jpg differ diff --git a/themes/huishou/static/assets/picture/gy11.jpg b/themes/huishou/static/assets/picture/gy11.jpg new file mode 100644 index 0000000..9d17617 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy11.jpg differ diff --git a/themes/huishou/static/assets/picture/gy12.jpg b/themes/huishou/static/assets/picture/gy12.jpg new file mode 100644 index 0000000..898913a Binary files /dev/null and b/themes/huishou/static/assets/picture/gy12.jpg differ diff --git a/themes/huishou/static/assets/picture/gy13.jpg b/themes/huishou/static/assets/picture/gy13.jpg new file mode 100644 index 0000000..ce2b657 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy13.jpg differ diff --git a/themes/huishou/static/assets/picture/gy14.jpg b/themes/huishou/static/assets/picture/gy14.jpg new file mode 100644 index 0000000..696c798 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy14.jpg differ diff --git a/themes/huishou/static/assets/picture/gy15.jpg b/themes/huishou/static/assets/picture/gy15.jpg new file mode 100644 index 0000000..9478d86 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy15.jpg differ diff --git a/themes/huishou/static/assets/picture/gy16.jpg b/themes/huishou/static/assets/picture/gy16.jpg new file mode 100644 index 0000000..696ccb7 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy16.jpg differ diff --git a/themes/huishou/static/assets/picture/gy17.jpg b/themes/huishou/static/assets/picture/gy17.jpg new file mode 100644 index 0000000..bba2869 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy17.jpg differ diff --git a/themes/huishou/static/assets/picture/gy18.jpg b/themes/huishou/static/assets/picture/gy18.jpg new file mode 100644 index 0000000..f143d60 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy18.jpg differ diff --git a/themes/huishou/static/assets/picture/gy19.jpg b/themes/huishou/static/assets/picture/gy19.jpg new file mode 100644 index 0000000..e6ffafc Binary files /dev/null and b/themes/huishou/static/assets/picture/gy19.jpg differ diff --git a/themes/huishou/static/assets/picture/gy20.jpg b/themes/huishou/static/assets/picture/gy20.jpg new file mode 100644 index 0000000..808a230 Binary files /dev/null and b/themes/huishou/static/assets/picture/gy20.jpg differ diff --git a/themes/huishou/static/assets/picture/gy21.jpg b/themes/huishou/static/assets/picture/gy21.jpg new file mode 100644 index 0000000..759966a Binary files /dev/null and b/themes/huishou/static/assets/picture/gy21.jpg differ diff --git a/themes/huishou/static/assets/picture/gy22.jpg b/themes/huishou/static/assets/picture/gy22.jpg new file mode 100644 index 0000000..13142cf Binary files /dev/null and b/themes/huishou/static/assets/picture/gy22.jpg differ diff --git a/themes/huishou/static/assets/picture/gy23.jpg b/themes/huishou/static/assets/picture/gy23.jpg new file mode 100644 index 0000000..a9d84ed Binary files /dev/null and b/themes/huishou/static/assets/picture/gy23.jpg differ diff --git a/themes/huishou/static/assets/picture/gy24.jpg b/themes/huishou/static/assets/picture/gy24.jpg new file mode 100644 index 0000000..1a94bdc Binary files /dev/null and b/themes/huishou/static/assets/picture/gy24.jpg differ diff --git a/themes/huishou/static/assets/picture/hot.png b/themes/huishou/static/assets/picture/hot.png new file mode 100644 index 0000000..8a2a1ce Binary files /dev/null and b/themes/huishou/static/assets/picture/hot.png differ diff --git a/themes/huishou/static/assets/picture/hs01.png b/themes/huishou/static/assets/picture/hs01.png new file mode 100644 index 0000000..7a3b1c1 Binary files /dev/null and b/themes/huishou/static/assets/picture/hs01.png differ diff --git a/themes/huishou/static/assets/picture/hs02.png b/themes/huishou/static/assets/picture/hs02.png new file mode 100644 index 0000000..bbdfaa0 Binary files /dev/null and b/themes/huishou/static/assets/picture/hs02.png differ diff --git a/themes/huishou/static/assets/picture/hs03.png b/themes/huishou/static/assets/picture/hs03.png new file mode 100644 index 0000000..b07e0ce Binary files /dev/null and b/themes/huishou/static/assets/picture/hs03.png differ diff --git a/themes/huishou/static/assets/picture/hs04.png b/themes/huishou/static/assets/picture/hs04.png new file mode 100644 index 0000000..0059fcf Binary files /dev/null and b/themes/huishou/static/assets/picture/hs04.png differ diff --git a/themes/huishou/static/assets/picture/ico-dy-no.png b/themes/huishou/static/assets/picture/ico-dy-no.png new file mode 100644 index 0000000..fb3030d Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-dy-no.png differ diff --git a/themes/huishou/static/assets/picture/ico-dy-yes.png b/themes/huishou/static/assets/picture/ico-dy-yes.png new file mode 100644 index 0000000..0bb8c76 Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-dy-yes.png differ diff --git a/themes/huishou/static/assets/picture/ico-wb-no.png b/themes/huishou/static/assets/picture/ico-wb-no.png new file mode 100644 index 0000000..961ac6b Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-wb-no.png differ diff --git a/themes/huishou/static/assets/picture/ico-wb-yes.png b/themes/huishou/static/assets/picture/ico-wb-yes.png new file mode 100644 index 0000000..29ac21e Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-wb-yes.png differ diff --git a/themes/huishou/static/assets/picture/ico-wx-no.png b/themes/huishou/static/assets/picture/ico-wx-no.png new file mode 100644 index 0000000..1a5aeb1 Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-wx-no.png differ diff --git a/themes/huishou/static/assets/picture/ico-wx-yes.png b/themes/huishou/static/assets/picture/ico-wx-yes.png new file mode 100644 index 0000000..d77daf9 Binary files /dev/null and b/themes/huishou/static/assets/picture/ico-wx-yes.png differ diff --git a/themes/huishou/static/assets/picture/index-jjxs.png b/themes/huishou/static/assets/picture/index-jjxs.png new file mode 100644 index 0000000..8d4fb00 Binary files /dev/null and b/themes/huishou/static/assets/picture/index-jjxs.png differ diff --git a/themes/huishou/static/assets/picture/kzks-hs.png b/themes/huishou/static/assets/picture/kzks-hs.png new file mode 100644 index 0000000..599154c Binary files /dev/null and b/themes/huishou/static/assets/picture/kzks-hs.png differ diff --git a/themes/huishou/static/assets/picture/lc-23.jpg b/themes/huishou/static/assets/picture/lc-23.jpg new file mode 100644 index 0000000..e25e39c Binary files /dev/null and b/themes/huishou/static/assets/picture/lc-23.jpg differ diff --git a/themes/huishou/static/assets/picture/lc-24-495.jpg b/themes/huishou/static/assets/picture/lc-24-495.jpg new file mode 100644 index 0000000..a921a30 Binary files /dev/null and b/themes/huishou/static/assets/picture/lc-24-495.jpg differ diff --git a/themes/huishou/static/assets/picture/logo.png b/themes/huishou/static/assets/picture/logo.png new file mode 100644 index 0000000..e7dd0b5 Binary files /dev/null and b/themes/huishou/static/assets/picture/logo.png differ diff --git a/themes/huishou/static/assets/picture/logo3.png b/themes/huishou/static/assets/picture/logo3.png new file mode 100644 index 0000000..628346c Binary files /dev/null and b/themes/huishou/static/assets/picture/logo3.png differ diff --git a/themes/huishou/static/assets/picture/qrcode-dy.png b/themes/huishou/static/assets/picture/qrcode-dy.png new file mode 100644 index 0000000..4c5e9eb Binary files /dev/null and b/themes/huishou/static/assets/picture/qrcode-dy.png differ diff --git a/themes/huishou/static/assets/picture/qrcode-wb.png b/themes/huishou/static/assets/picture/qrcode-wb.png new file mode 100644 index 0000000..3184b0e Binary files /dev/null and b/themes/huishou/static/assets/picture/qrcode-wb.png differ diff --git a/themes/huishou/static/assets/picture/qrcode-wx.png b/themes/huishou/static/assets/picture/qrcode-wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/themes/huishou/static/assets/picture/qrcode-wx.png differ diff --git a/themes/huishou/static/assets/picture/qywh1.png b/themes/huishou/static/assets/picture/qywh1.png new file mode 100644 index 0000000..5c915b7 Binary files /dev/null and b/themes/huishou/static/assets/picture/qywh1.png differ diff --git a/themes/huishou/static/assets/picture/qywh2.png b/themes/huishou/static/assets/picture/qywh2.png new file mode 100644 index 0000000..012ed1a Binary files /dev/null and b/themes/huishou/static/assets/picture/qywh2.png differ diff --git a/themes/huishou/static/assets/picture/qywh3.png b/themes/huishou/static/assets/picture/qywh3.png new file mode 100644 index 0000000..bdda47d Binary files /dev/null and b/themes/huishou/static/assets/picture/qywh3.png differ diff --git a/themes/huishou/static/assets/picture/qywh4.png b/themes/huishou/static/assets/picture/qywh4.png new file mode 100644 index 0000000..b76fe42 Binary files /dev/null and b/themes/huishou/static/assets/picture/qywh4.png differ diff --git a/themes/huishou/static/assets/picture/qywh5.png b/themes/huishou/static/assets/picture/qywh5.png new file mode 100644 index 0000000..ade0433 Binary files /dev/null and b/themes/huishou/static/assets/picture/qywh5.png differ diff --git a/themes/huishou/static/assets/picture/right-next.png b/themes/huishou/static/assets/picture/right-next.png new file mode 100644 index 0000000..046e135 Binary files /dev/null and b/themes/huishou/static/assets/picture/right-next.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-01.png b/themes/huishou/static/assets/picture/rightnav-01.png new file mode 100644 index 0000000..f50fe4e Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-01.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-03.png b/themes/huishou/static/assets/picture/rightnav-03.png new file mode 100644 index 0000000..507dd72 Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-03.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-04.png b/themes/huishou/static/assets/picture/rightnav-04.png new file mode 100644 index 0000000..1f583ac Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-04.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-05.png b/themes/huishou/static/assets/picture/rightnav-05.png new file mode 100644 index 0000000..12d427d Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-05.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-on-01.png b/themes/huishou/static/assets/picture/rightnav-on-01.png new file mode 100644 index 0000000..b228ac1 Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-on-01.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-on-03.png b/themes/huishou/static/assets/picture/rightnav-on-03.png new file mode 100644 index 0000000..e71592f Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-on-03.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-on-04.png b/themes/huishou/static/assets/picture/rightnav-on-04.png new file mode 100644 index 0000000..fcadf35 Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-on-04.png differ diff --git a/themes/huishou/static/assets/picture/rightnav-on-05.png b/themes/huishou/static/assets/picture/rightnav-on-05.png new file mode 100644 index 0000000..3e290cc Binary files /dev/null and b/themes/huishou/static/assets/picture/rightnav-on-05.png differ diff --git a/themes/huishou/static/assets/picture/service-1.jpg b/themes/huishou/static/assets/picture/service-1.jpg new file mode 100644 index 0000000..5ace678 Binary files /dev/null and b/themes/huishou/static/assets/picture/service-1.jpg differ diff --git a/themes/huishou/static/assets/picture/service02.png b/themes/huishou/static/assets/picture/service02.png new file mode 100644 index 0000000..13fb833 Binary files /dev/null and b/themes/huishou/static/assets/picture/service02.png differ diff --git a/themes/huishou/static/assets/picture/service03.png b/themes/huishou/static/assets/picture/service03.png new file mode 100644 index 0000000..914059d Binary files /dev/null and b/themes/huishou/static/assets/picture/service03.png differ diff --git a/themes/huishou/static/assets/picture/service04.png b/themes/huishou/static/assets/picture/service04.png new file mode 100644 index 0000000..a3035a1 Binary files /dev/null and b/themes/huishou/static/assets/picture/service04.png differ diff --git a/themes/huishou/static/assets/picture/top-ico1.png b/themes/huishou/static/assets/picture/top-ico1.png new file mode 100644 index 0000000..4a89927 Binary files /dev/null and b/themes/huishou/static/assets/picture/top-ico1.png differ diff --git a/themes/huishou/static/assets/picture/top-ico2.png b/themes/huishou/static/assets/picture/top-ico2.png new file mode 100644 index 0000000..d993a54 Binary files /dev/null and b/themes/huishou/static/assets/picture/top-ico2.png differ diff --git a/themes/huishou/static/assets/picture/top-ico3.png b/themes/huishou/static/assets/picture/top-ico3.png new file mode 100644 index 0000000..8e5eec8 Binary files /dev/null and b/themes/huishou/static/assets/picture/top-ico3.png differ diff --git a/themes/huishou/static/assets/picture/top-ico4.png b/themes/huishou/static/assets/picture/top-ico4.png new file mode 100644 index 0000000..448d23e Binary files /dev/null and b/themes/huishou/static/assets/picture/top-ico4.png differ diff --git a/themes/huishou/static/assets/picture/wx.png b/themes/huishou/static/assets/picture/wx.png new file mode 100644 index 0000000..a0c81ba Binary files /dev/null and b/themes/huishou/static/assets/picture/wx.png differ diff --git a/themes/huishou/static/assets/picture/xs01.png b/themes/huishou/static/assets/picture/xs01.png new file mode 100644 index 0000000..623bbd2 Binary files /dev/null and b/themes/huishou/static/assets/picture/xs01.png differ diff --git a/themes/huishou/static/assets/picture/xs02.png b/themes/huishou/static/assets/picture/xs02.png new file mode 100644 index 0000000..429f14e Binary files /dev/null and b/themes/huishou/static/assets/picture/xs02.png differ diff --git a/themes/huishou/static/assets/picture/xs03.png b/themes/huishou/static/assets/picture/xs03.png new file mode 100644 index 0000000..98436e0 Binary files /dev/null and b/themes/huishou/static/assets/picture/xs03.png differ diff --git a/themes/huishou/static/assets/picture/xs04.png b/themes/huishou/static/assets/picture/xs04.png new file mode 100644 index 0000000..0673eaf Binary files /dev/null and b/themes/huishou/static/assets/picture/xs04.png differ diff --git a/themes/huishou/static/assets/picture/ys01.png b/themes/huishou/static/assets/picture/ys01.png new file mode 100644 index 0000000..2face8e Binary files /dev/null and b/themes/huishou/static/assets/picture/ys01.png differ diff --git a/themes/huishou/static/assets/picture/ys02.png b/themes/huishou/static/assets/picture/ys02.png new file mode 100644 index 0000000..89994ed Binary files /dev/null and b/themes/huishou/static/assets/picture/ys02.png differ diff --git a/themes/huishou/static/assets/picture/ys03.png b/themes/huishou/static/assets/picture/ys03.png new file mode 100644 index 0000000..6291fbf Binary files /dev/null and b/themes/huishou/static/assets/picture/ys03.png differ diff --git a/themes/huishou/static/assets/picture/ys04.png b/themes/huishou/static/assets/picture/ys04.png new file mode 100644 index 0000000..d6c90f9 Binary files /dev/null and b/themes/huishou/static/assets/picture/ys04.png differ diff --git a/themes/huishou/static/assets/picture/ys05.png b/themes/huishou/static/assets/picture/ys05.png new file mode 100644 index 0000000..919d9e1 Binary files /dev/null and b/themes/huishou/static/assets/picture/ys05.png differ diff --git a/themes/huishou/static/assets/picture/ys06.png b/themes/huishou/static/assets/picture/ys06.png new file mode 100644 index 0000000..7c2df59 Binary files /dev/null and b/themes/huishou/static/assets/picture/ys06.png differ diff --git a/themes/huishou/static/assets/picture/zl.png b/themes/huishou/static/assets/picture/zl.png new file mode 100644 index 0000000..328ccf2 Binary files /dev/null and b/themes/huishou/static/assets/picture/zl.png differ diff --git a/themes/huishou/static/assets/picture/zl01.png b/themes/huishou/static/assets/picture/zl01.png new file mode 100644 index 0000000..047f228 Binary files /dev/null and b/themes/huishou/static/assets/picture/zl01.png differ diff --git a/themes/huishou/static/assets/picture/zl02.png b/themes/huishou/static/assets/picture/zl02.png new file mode 100644 index 0000000..8b48f96 Binary files /dev/null and b/themes/huishou/static/assets/picture/zl02.png differ diff --git a/themes/huishou/static/assets/picture/zl03.png b/themes/huishou/static/assets/picture/zl03.png new file mode 100644 index 0000000..93b364b Binary files /dev/null and b/themes/huishou/static/assets/picture/zl03.png differ diff --git a/themes/huishou/static/assets/picture/zl04.png b/themes/huishou/static/assets/picture/zl04.png new file mode 100644 index 0000000..ecf7727 Binary files /dev/null and b/themes/huishou/static/assets/picture/zl04.png differ diff --git a/themes/huishou/static/assets/picture/zs01.png b/themes/huishou/static/assets/picture/zs01.png new file mode 100644 index 0000000..c2487b4 Binary files /dev/null and b/themes/huishou/static/assets/picture/zs01.png differ diff --git a/themes/huishou/static/assets/picture/zs02.png b/themes/huishou/static/assets/picture/zs02.png new file mode 100644 index 0000000..0b1e362 Binary files /dev/null and b/themes/huishou/static/assets/picture/zs02.png differ diff --git a/themes/huishou/static/assets/picture/zs03.png b/themes/huishou/static/assets/picture/zs03.png new file mode 100644 index 0000000..4b6d8ca Binary files /dev/null and b/themes/huishou/static/assets/picture/zs03.png differ diff --git a/themes/huishou/static/favicon.ico b/themes/huishou/static/favicon.ico new file mode 100644 index 0000000..67f8b77 Binary files /dev/null and b/themes/huishou/static/favicon.ico differ diff --git a/themes/huishou/theme.toml b/themes/huishou/theme.toml new file mode 100644 index 0000000..a79b5a6 --- /dev/null +++ b/themes/huishou/theme.toml @@ -0,0 +1,25 @@ +name = 'huishou' +license = 'MIT' +licenselink = 'https://github.com/lopins/hugo-template/LICENSE' +description = 'A fast and flexible static site generator built with love by bep, spf13, and friends in Go.' + +# The home page of the theme, where the source can be found +homepage = 'https://github.com/lopins/hugo-template' + +# If you have a running demo of the theme +demosite = 'https://lopins.github.io/hugo-template' + +# Taxonomy terms +tags = ['blog', 'company'] +features = ['some', 'awesome', 'features'] + +# If the theme has a single author +[author] + name = 'lopins' + homepage = 'https://lopins.github.io' + +# If porting an existing theme +[original] + author = 'lopins' + homepage = 'https://lopins.github.io' + repo = 'https://github.com/lopins/hugo-template'