From 9d69104327dcd60800bc91c0f63544ea2ddc0421 Mon Sep 17 00:00:00 2001 From: GuanM <30427262+sxhoio@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:39:21 +0800 Subject: [PATCH] =?UTF-8?q?2024-10-29=20=E4=BB=A3=E7=A0=81=E4=BF=9D?= =?UTF-8?q?=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/css/index.css | 289 +++++++++++++++++++++++++++++++++++++++++++++- Web/index.html | 112 +++++++++++++++--- 2 files changed, 387 insertions(+), 14 deletions(-) diff --git a/Web/css/index.css b/Web/css/index.css index 6868148..b2e2435 100644 --- a/Web/css/index.css +++ b/Web/css/index.css @@ -50,7 +50,8 @@ body { #header .nav ul li:hover, #header .language ul li:hover { - background-color: #ffffff; + background-color: #f0f0f0; + cursor: pointer; } /* 如果想显示进度条 删除此css样式 */ #swipper { @@ -132,3 +133,289 @@ body { margin-left: -400%; } } + +#newsman { + padding: 60px 20px; + text-align: center; + background-color: #f8f8f8; +} + +#newsman h1 { + font-size: 36px; + margin-bottom: 40px; + position: relative; + color: #333; +} + +#newsman p { + font-size: 16px; + color: #666; + max-width: 1000px; + margin: 0 auto 40px; + line-height: 1.6; +} + +#newsman h1::after { + content: ''; + position: absolute; + bottom: -10px; + left: 50%; + transform: translateX(-50%); + width: 60px; + height: 3px; + background-color: #00a0e9; +} + +.info-section { + display: flex; + justify-content: space-around; + max-width: 1200px; + margin: 40px auto 0; + padding: 20px 0; +} + + +.info-item { + flex: 1; + margin: 0 20px; + text-align: center; + padding: 20px; + transition: transform 0.3s ease; +} + +.info-item::before { + content: ''; + display: block; + width: 60px; + height: 60px; + margin: 0 auto 20px; + background-size: contain; + background-repeat: no-repeat; + background-position: center; +} + +.info-item:nth-child(1)::before { + background-image: url('../images/index-cultural01.png'); +} + +.info-item:nth-child(2)::before { + background-image: url('../images/index-cultural02.png'); +} + +.info-item:nth-child(3)::before { + background-image: url('../images/index-cultural03.png'); +} + +.info-item:nth-child(4)::before { + background-image: url('../images/index-cultural04.png'); +} + +.info-item h2 { + font-size: 24px; + margin-bottom: 15px; + color: #333; +} + +.info-item p { + font-size: 14px; + color: #666; + line-height: 1.6; +} + +.info-item:hover { + transform: translateY(-5px); +} + +#product { + padding: 60px 20px; + text-align: center; + background-color: #f5f5f5; +} + +#product h1 { + font-size: 28px; + margin-bottom: 15px; + color: #333; +} + +#product h1::after { + content: ''; + position: absolute; + bottom: -10px; + left: 50%; + transform: translateX(-50%); + width: 60px; + height: 3px; + background-color: #00a0e9; +} + +#product p { + font-size: 14px; + color: #666; + max-width: 800px; + margin: 0 auto 30px; + line-height: 1.6; +} + +.product-grid { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 20px; + max-width: 1200px; + margin: 0 auto; + padding: 0 20px; +} + +.product-item { + background: #fff; + padding: 15px; + border-radius: 5px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease; + text-align: center; +} + +.product-item img { + width: 100%; + height: auto; + margin-bottom: 10px; + transition: transform 0.3s ease; +} + +.product-item h3 { + font-size: 14px; + color: #333; + margin: 0; + padding: 5px 0; +} + +.product-item:hover { + transform: translateY(-5px); +} + +#news { + padding: 60px 20px; + text-align: center; + background-color: #fff; +} + +#news h1 { + font-size: 28px; + margin-bottom: 15px; + color: #333; + position: relative; +} + +#news h1::after { + content: ''; + position: absolute; + bottom: -10px; + left: 50%; + transform: translateX(-50%); + width: 60px; + height: 3px; + background-color: #00a0e9; +} + +#news p { + font-size: 14px; + color: #666; + max-width: 800px; + margin: 0 auto 30px; + line-height: 1.6; +} + +.news-container { + display: flex; + max-width: 1200px; + margin: 0 auto; + padding: 0 20px; + gap: 30px; +} + +.news-left { + flex: 1; + background: #fff; + border: 1px solid #e4e4e4; + position: relative; +} + +.news-left img { + width: 100%; + height: 300px; + object-fit: cover; +} + +.news-text { + padding: 20px; + text-align: left; +} + +.news-date { + position: absolute; + top: 20px; + left: 20px; + background: #00a0e9; + color: #fff; + padding: 10px; + text-align: center; +} + +.news-date .day { + display: block; + font-size: 24px; + font-weight: bold; +} + +.news-date .month { + display: block; + font-size: 14px; +} + +.news-text h3 { + font-size: 18px; + color: #333; + margin: 0 0 15px; +} + +.news-right { + flex: 1; + background: #fff; + border: 1px solid #e4e4e4; + padding: 20px; +} + +.news-right ul { + list-style: none; + padding: 0; + margin: 0; + text-align: left; +} + +.news-right li { + padding: 15px 0; + border-bottom: 1px dashed #e4e4e4; + display: flex; + justify-content: space-between; + align-items: center; +} + +.news-right li:last-child { + border-bottom: none; +} + +.news-time { + color: #999; + font-size: 14px; +} + +.news-right a { + color: #333; + text-decoration: none; + font-size: 14px; + transition: color 0.3s ease; +} + +.news-right a:hover { + color: #00a0e9; +} diff --git a/Web/index.html b/Web/index.html index 62092f3..eeb08d1 100644 --- a/Web/index.html +++ b/Web/index.html @@ -62,19 +62,105 @@
-
- main - -
welcome
- -
- -
- -
+
+

WELCOME TO NEWMAN

+

纽曼公司创立于1996年,现有员工200余人,是一家集研发、制造、销售、服务为一体的中国高新技术企业。公司研发及生产体系健全,拥有湖南、北京和深圳三大中心。经过17年的发展,凭借强大的研发力量及资源整合能力,纽曼已拥有目前中国数码行业较为完整产品体系。产品跨越专业及消费数码产品领域。

+
+
+

CULTURAL

+

企业文化是企业发展的核心,是企业生存和发展的基础。

+
+
+

HONOUR

+

企业荣誉是企业发展的动力,体现了企业的实力和信誉。

+
+
+

QUALIFICATION

+

企业资质是企业参与市场竞争的基础,确保产品质量和服务水平。

+
+
+

RESEARCH

+

研究与开发是企业创新的源泉,推动产品和技术的进步。

+
+
- footer - - +
+

PRODUCTION CENTER

+

纽曼设计开发的产品,已制成6大类型300多个规格型号的产品——包括录音笔、智能手写板系列、语音宝系列、会议宝系列、电子词典、汽车用品等各种消费电子产品。

+
+
+ Product 1 +

微波炉 MA128PS

+
+
+ Product 2 +

饮水机 JK-KA1

+
+
+ Product 3 +

电饼铛 SC-KN201H

+
+
+ Product 4 +

蓝牙音箱 S-1

+
+
+ Product 5 +

加湿器 JT-547

+
+
+ Product 6 +

电熨斗 HG-1

+
+
+
+
+

NEWS CENTER

+

纽曼时刻关注当今世界科技发展动态,持续推进在产品研发和市场营销等方面,在整个市场中一直保持较为突出的市场地位和影响力,始终保持着较好的市场增长力度。

+ +
+
+ News +
+
+ 15 + MARCH +
+

AWE2016开展,企业巨头竞相参展,大咖云集

+

2016年3月9日至12日,第五届中国家电及消费电子博览会(AWE)在上海新国际博览中心隆重举行。本次展会上,LG展台面积达到了"千平"级别。

+
+
+ + +
+
+