diff --git a/app/index/view/index/index.html b/app/index/view/index/index.html index 5e276dbd..9b56b029 100644 --- a/app/index/view/index/index.html +++ b/app/index/view/index/index.html @@ -255,7 +255,7 @@ {block name="script"} \ No newline at end of file diff --git a/public/static/index/css/category.css b/public/static/index/css/category.css new file mode 100644 index 00000000..b4fc50a7 --- /dev/null +++ b/public/static/index/css/category.css @@ -0,0 +1,100 @@ +@charset "UTF-8"; +.orico_Page_products { + width: 100%; + position: relative; + min-height: 100vh; + overflow-y: auto; + overflow-x: hidden; + background: #f9f9f9; +} +.orico_Page_products .focus_image { + padding-top: 3.75rem; +} +.orico_Page_products .focus_image img { + width: 100%; + height: 100%; + object-fit: cover; +} +.orico_Page_products p, .orico_Page_products a, .orico_Page_products div, .orico_Page_products span { + font-family: "Microsoft YaHei", "Arial", sans-serif; +} +.orico_Page_products .pageMain { + width: 85%; + padding: 50px 0 2.5rem; + margin: 0 auto; + display: flex; + flex-direction: column; +} +.orico_Page_products .pageMain .ori-pd-title { + font-size: 1.5em; + color: #101010; + margin-bottom: 1.25rem; +} +.orico_Page_products .pageMain .ori-pd-list { + display: flex; + flex-wrap: wrap; /* 自动换行 */ + justify-content: flex-start; /* 水平方向均匀分布 */ +} +.orico_Page_products .pageMain .ori-pd-list .oripditem { + width: 24%; + float: left; + background: #fff; + padding-bottom: 1em; + margin-top: 15px; + position: relative; + margin-right: 1%; + padding-top: 30px; + padding-bottom: 70px; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prdimg { + display: inline-block; + width: 100%; + max-width: 220px; + margin: 25px auto; + display: none; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prdimg-show { + display: block; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prdName { + color: #101010; + font-size: 1.125rem; + padding-bottom: 0.625rem; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prddec { + font-size: 1.125rem; + color: #737373; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors { + width: 92%; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + margin-top: 0.3125rem; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit { + width: 1.3rem; + height: 1.3rem; + border-radius: 0.65rem; + cursor: pointer; + margin: 0 0.3125rem; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit img { + width: 100%; + height: 100%; + border-radius: 0.65rem; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit .rgb_hex { + display: block; + height: 100%; + border-radius: 100%; +} +.orico_Page_products .pageMain .ori-pd-list .oripditem:hover { + box-shadow: 0px 5px 35px rgba(227, 227, 227, 0.75); + transform: translate3d(0, -2px, 0); +} diff --git a/public/static/index/css/orico_footer.css b/public/static/index/css/orico_footer.css index 9a2e3a12..eefacfc7 100755 --- a/public/static/index/css/orico_footer.css +++ b/public/static/index/css/orico_footer.css @@ -88,7 +88,9 @@ flex-direction: row; justify-content: center; align-items: center; - margin: 3.5rem auto; + padding: 3.5rem 0; + background: transparent; + background: #f2f2f2; } .oricoCont .ctitem { width: 45%; diff --git a/public/static/index/css/orico_header.css b/public/static/index/css/orico_header.css index 3b8c82f0..ef786445 100755 --- a/public/static/index/css/orico_header.css +++ b/public/static/index/css/orico_header.css @@ -160,6 +160,7 @@ align-items: center; justify-content: center; padding: 0.5rem 0; + z-index:9999; } .header-PC #header .nav2 .navItem .navItemConten1 li { color: #fff; diff --git a/public/static/index/css/product_category.css b/public/static/index/css/product_category.css index b4fc50a7..0403c537 100755 --- a/public/static/index/css/product_category.css +++ b/public/static/index/css/product_category.css @@ -1,75 +1,106 @@ @charset "UTF-8"; -.orico_Page_products { +.orico_Page_category { width: 100%; position: relative; - min-height: 100vh; + height: 100vh; overflow-y: auto; overflow-x: hidden; background: #f9f9f9; } -.orico_Page_products .focus_image { - padding-top: 3.75rem; -} -.orico_Page_products .focus_image img { - width: 100%; - height: 100%; - object-fit: cover; -} -.orico_Page_products p, .orico_Page_products a, .orico_Page_products div, .orico_Page_products span { +.orico_Page_category p, +.orico_Page_category a, +.orico_Page_category div, +.orico_Page_category span { font-family: "Microsoft YaHei", "Arial", sans-serif; } -.orico_Page_products .pageMain { +.orico_Page_category .pageMain { width: 85%; - padding: 50px 0 2.5rem; + padding: 50px 0 10px; margin: 0 auto; display: flex; flex-direction: column; } -.orico_Page_products .pageMain .ori-pd-title { - font-size: 1.5em; +.orico_Page_category .pageMain .cat { + margin-bottom: 3.75rem; +} +.orico_Page_category .pageMain .ori-pd-title { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; +} +.orico_Page_category .pageMain .ori-pd-title .catname { + font-size: 1.5rem; color: #101010; margin-bottom: 1.25rem; + font-weight: 300; } -.orico_Page_products .pageMain .ori-pd-list { +.orico_Page_category .pageMain .ori-pd-title .catmore { + display: flex; + flex-direction: row; + align-items: center; + margin-right: 1%; +} +.orico_Page_category .pageMain .ori-pd-title .catmore .tmore { + font-size: 1rem; + color: #444; +} +.orico_Page_category .pageMain .ori-pd-title .catmore .catmoreImg { + width: 1.75rem; + height: 1.75rem; + margin-left: 0.5rem; +} +.orico_Page_category .pageMain .ori-pd-list { display: flex; flex-wrap: wrap; /* 自动换行 */ justify-content: flex-start; /* 水平方向均匀分布 */ } -.orico_Page_products .pageMain .ori-pd-list .oripditem { - width: 24%; +.orico_Page_category .pageMain .ori-pd-list .oripditem { + width: 18.2%; float: left; background: #fff; - padding-bottom: 1em; margin-top: 15px; position: relative; - margin-right: 1%; - padding-top: 30px; - padding-bottom: 70px; + margin-right: 1.8125rem; display: flex; flex-direction: column; align-items: center; justify-content: center; + min-height: 25rem; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prdimg { +.orico_Page_category .pageMain .ori-pd-list .oripditem .prdimg { display: inline-block; width: 100%; max-width: 220px; margin: 25px auto; display: none; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prdimg-show { +.orico_Page_category .pageMain .ori-pd-list .oripditem .prdimg-show { display: block; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prdName { - color: #101010; - font-size: 1.125rem; - padding-bottom: 0.625rem; +.orico_Page_category .pageMain .ori-pd-list .oripditem .prdName { + font-size: 0.875rem; + color: #444; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prddec { - font-size: 1.125rem; - color: #737373; +.orico_Page_category .pageMain .ori-pd-list .oripditem .prddec { + margin-top: 3%; + font-size: 0.875rem; + color: #666; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors { +.orico_Page_category .pageMain .ori-pd-list .oripditem .newcp { + width: 72px; + height: 30px; + background: #df2c39; + font-size: 12px; + color: #fff; + text-align: center; + line-height: 30px; + position: absolute; + top: 0px; + left: 50%; + transform: translate(-50%, 0%); +} +.orico_Page_category .pageMain .ori-pd-list .oripditem .prd-colors { width: 92%; display: flex; flex-direction: row; @@ -77,24 +108,15 @@ justify-content: center; margin-top: 0.3125rem; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit { +.orico_Page_category .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit { width: 1.3rem; height: 1.3rem; border-radius: 0.65rem; cursor: pointer; margin: 0 0.3125rem; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit img { +.orico_Page_category .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit img { width: 100%; height: 100%; border-radius: 0.65rem; } -.orico_Page_products .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit .rgb_hex { - display: block; - height: 100%; - border-radius: 100%; -} -.orico_Page_products .pageMain .ori-pd-list .oripditem:hover { - box-shadow: 0px 5px 35px rgba(227, 227, 227, 0.75); - transform: translate3d(0, -2px, 0); -} diff --git a/public/static/index/css/product_subcategory.css b/public/static/index/css/product_subcategory.css new file mode 100644 index 00000000..f4de3b1f --- /dev/null +++ b/public/static/index/css/product_subcategory.css @@ -0,0 +1,90 @@ +@charset "UTF-8"; +.orico_Page_subcategory { + width: 100%; + position: relative; + height: 100vh; + overflow-y: auto; + overflow-x: hidden; + background: #f9f9f9; +} +.orico_Page_subcategory p, .orico_Page_subcategory a, .orico_Page_subcategory div, .orico_Page_subcategory span { + font-family: "Microsoft YaHei", "Arial", sans-serif; +} +.orico_Page_subcategory .pageMain { + width: 85%; + padding: 50px 0 10px; + margin: 0 auto; + display: flex; + flex-direction: column; +} +.orico_Page_subcategory .pageMain .sbbanner { + width: 100%; +} +.orico_Page_subcategory .pageMain .ori-pd-title { + font-size: 1.5em; + color: #101010; + margin-bottom: 1.25rem; +} +.orico_Page_subcategory .pageMain .ori-pd-list { + display: flex; + flex-wrap: wrap; /* 自动换行 */ + justify-content: flex-start; /* 水平方向均匀分布 */ +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem { + width: 24%; + float: left; + background: #fff; + padding-bottom: 1em; + margin-top: 15px; + position: relative; + margin-right: 1%; + padding-top: 30px; + padding-bottom: 70px; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prdimg { + display: inline-block; + width: 100%; + max-width: 220px; + margin: 25px auto; + display: none; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prdimg-show { + display: block; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prdName { + color: #101010; + font-size: 1.125rem; + padding-bottom: 0.625rem; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prddec { + font-size: 1.125rem; + color: #737373; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prd-colors { + width: 92%; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + margin-top: 0.3125rem; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit { + width: 1.3rem; + height: 1.3rem; + border-radius: 0.65rem; + cursor: pointer; + margin: 0 0.3125rem; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem .prd-colors .prdolorit img { + width: 100%; + height: 100%; + border-radius: 0.65rem; +} +.orico_Page_subcategory .pageMain .ori-pd-list .oripditem:hover { + box-shadow: 0px 5px 35px rgba(227, 227, 227, 0.75); + transform: translate3d(0, -2px, 0); +} diff --git a/public/static/index/images/SSD-1920x900-CN.jpg b/public/static/index/images/SSD-1920x900-CN.jpg new file mode 100644 index 00000000..4a6566a5 Binary files /dev/null and b/public/static/index/images/SSD-1920x900-CN.jpg differ diff --git a/public/static/index/images/contact-Us.png b/public/static/index/images/contact-Us.png new file mode 100644 index 00000000..d572106f Binary files /dev/null and b/public/static/index/images/contact-Us.png differ diff --git a/public/static/index/images/customer-service.png b/public/static/index/images/customer-service.png new file mode 100644 index 00000000..275c0334 Binary files /dev/null and b/public/static/index/images/customer-service.png differ