-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
303 lines (278 loc) · 19.4 KB
/
index.html
File metadata and controls
303 lines (278 loc) · 19.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SE SURVEY & CONSULTANT</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600&display=swap" rel="stylesheet">
<style>
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Prompt', sans-serif; }
body { background-color: #0a1c4c; color: #000; overflow-x: hidden; }
/* Top Bar Responsive */
.top-bar {
position: absolute; top: 20px; right: 40px; z-index: 1000;
display: flex; gap: 15px; align-items: center;
}
/* Lang Switch Style */
.lang-switch {
display: flex; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px);
border-radius: 30px; padding: 4px; border: 1px solid rgba(255, 255, 255, 0.3);
}
.lang-btn {
cursor: pointer; color: white; padding: 6px 12px; font-size: 0.85rem;
font-weight: bold; border-radius: 20px; transition: 0.3s;
}
.lang-btn.active { background-color: #ffffff; color: #0a1c4c; }
.btn-login {
background-color: #1d83e5; color: white; padding: 8px 20px;
text-decoration: none; font-weight: bold; border-radius: 30px;
font-size: 0.9rem; transition: 0.3s; white-space: nowrap;
}
/* Header */
header {
position: relative; text-align: center; padding: 180px 20px 100px;
color: white; overflow: hidden;
}
header::before {
content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background-image: url('https://media-public.canva.com/k3Tfs/MAGKKbk3Tfs/1/s2.png');
background-size: cover; background-position: center; filter: blur(4px) brightness(0.6); z-index: -1;
}
header h1 { font-size: 3.5em; line-height: 1.2; margin-bottom: 20px; }
header p { font-size: 1.2em; font-weight: 300; }
section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
/* Intro */
.intro {
background-color: #0a1c4c; color: white;
display: flex; align-items: center; justify-content: center; gap: 50px;
}
.intro img {
width: 350px; height: 350px; border-radius: 50%; object-fit: cover;
border: 5px solid rgba(255,255,255,0.1);
}
.intro-text { flex: 1; font-size: 1.1rem; line-height: 1.8; text-align: justify; }
.intro-text h2 { font-size: 2rem; margin-bottom: 20px; color: #4facfe; }
/* Services */
.services-section { background-color: #081230; color: white; }
.services-container { display: flex; max-width: 1200px; margin: 0 auto; gap: 40px; }
.services-title { flex: 1; display: flex; align-items: center; justify-content: center; }
.services-title h2 { font-size: 2.5rem; text-align: center; }
.services-content-box {
flex: 2; background-color: #00529b; padding: 40px; border-radius: 16px;
}
.service { display: flex; margin-bottom: 30px; gap: 20px; }
.service:last-child { margin-bottom: 0; }
.service-number { font-size: 3rem; font-weight: bold; color: #4facfe; line-height: 1; }
.service-content h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-content p { font-size: 1rem; line-height: 1.6; opacity: 0.9; }
/* Join Us */
.join-us { background-color: #0a66b3; text-align: center; color: white; }
.join-us-container { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.image-group { display: flex; gap: 20px; justify-content: center; }
.image-group img {
width: 180px; height: 180px; object-fit: cover; border-radius: 50%;
border: 4px solid white; transition: 0.3s;
}
.image-group img:hover { transform: scale(1.05); }
.text-group h2 { font-size: 2.5rem; margin-bottom: 20px; }
.btn {
background-color: #0a1440; color: white; padding: 12px 40px; text-decoration: none;
font-weight: bold; border-radius: 8px; display: inline-block; transition: 0.3s;
}
.btn:hover { background-color: #04122f; transform: translateY(-2px); }
/* Contact */
.contact { background-color: #fff; color: #333; }
.contact-container { display: flex; gap: 40px; align-items: flex-start; }
.contact-logo { flex: 1; display: flex; justify-content: center; }
.contact-logo img { width: 100%; max-width: 300px; }
.contact-info { flex: 2; }
.contact-details {
background: #f0f7ff; border: 1px solid #cce3ff; padding: 25px;
border-radius: 12px; margin-bottom: 20px;
}
.contact-map iframe { width: 100%; height: 300px; border-radius: 12px; }
/* =========================================
MOBILE RESPONSIVE (หัวใจสำคัญ)
========================================= */
@media screen and (max-width: 900px) {
/* Top Bar */
.top-bar {
position: relative; top: 0; right: 0; width: 100%;
justify-content: center; padding: 15px; background: #081230;
flex-direction: row; /* เรียงแนวนอนเหมือนเดิมแต่วางกลาง */
}
/* Header */
header { padding: 60px 20px; }
header h1 { font-size: 2.2em; }
header p { font-size: 1em; }
/* Intro */
.intro { flex-direction: column; text-align: center; }
.intro img { width: 250px; height: 250px; }
.intro-text { text-align: center; }
/* Services */
.services-container { flex-direction: column; }
.service { flex-direction: column; text-align: center; }
.services-content-box { padding: 25px; }
/* Join Us */
.join-us-container { flex-direction: column; gap: 30px; }
.image-group img { width: 120px; height: 120px; }
/* Contact */
.contact-container { flex-direction: column; }
.contact-logo img { width: 200px; }
}
</style>
</head>
<body>
<div class="top-bar">
<div class="lang-switch">
<div onclick="setLanguage('th')" id="btn-th" class="lang-btn active">TH</div>
<div onclick="setLanguage('en')" id="btn-en" class="lang-btn">EN</div>
<div onclick="setLanguage('jp')" id="btn-jp" class="lang-btn">JP</div>
</div>
<a href="login.html" class="btn-login" data-i18n="loginBtn">เข้าสู่ระบบ</a>
</div>
<header>
<h1>SE SURVEY & CONSULTANT</h1>
<p data-i18n="headerSub">ประกอบธุรกิจให้บริการงานสำรวจอุบัติเหตุ และรับแจ้งอุบัติเหตุ</p>
</header>
<section class="intro container">
<img src="1.webp" alt="Survey Team" onerror="this.src='https://via.placeholder.com/350'">
<div class="intro-text">
<h2 data-i18n="companyName">บริษัท เอสอี เซอร์เวย์ แอนด์ คอนซัลแตนท์ จำกัด</h2>
<p data-i18n="companyDesc">
ก่อตั้งเมื่อวันที่ 20 กันยายน 2560 ประกอบธุรกิจให้บริการงานสำรวจอุบัติเหตุและรับแจ้งอุบัติเหตุ
ด้วยการกำหนดมาตรฐานเพื่อพัฒนาคุณภาพรวม ทั้งการนำอุปกรณ์และระบบเทคโนโลยีที่ทันสมัยมาใช้งาน
เพื่อให้เกิดประสิทธิภาพสูงสุด มีพื้นที่ให้บริการครอบคลุม ทั้งกรุงเทพฯ และต่างจังหวัด
</p>
</div>
</section>
<section class="services-section">
<div class="services-container">
<div class="services-title">
<h2 data-i18n="whatWeDo">เราทำอะไรบ้าง</h2>
</div>
<div class="services-content-box">
<div class="service">
<div class="service-number">01</div>
<div class="service-content">
<h3 data-i18n="service1Title">สำรวจอุบัติเหตุ</h3>
<p data-i18n="service1Desc">
ให้บริการสำรวจอุบัติเหตุกรณีรถยนต์ที่ทำประกันเกิดอุบัติเหตุภายใต้
เงื่อนไขกรมธรรม์พนักงานสำรวจเดินทางถึงที่เกิดอุบัติเหตุภายใน 30 นาที
พร้อมแนะนำการจัดซ่อมโดยมีพนักงานสำรวจอุบัติเหตุครอบคลุมทั่วประเทศไทย
</p>
</div>
</div>
<div class="service">
<div class="service-number">02</div>
<div class="service-content">
<h3 data-i18n="service2Title">รับแจ้งอุบัติเหตุ</h3>
<p data-i18n="service2Desc">
ใช้ระบบที่ทันสมัยในการให้บริการรับแจ้งอุบัติเหตุ ตลอด 24 ชั่วโมง
ให้บริการ CRM เพื่อสอบถามความพึงพอใจและช่วยสร้างสัมพันธภาพที่ดีกับลูกค้า
</p>
</div>
</div>
</div>
</div>
</section>
<section class="join-us">
<div class="join-us-container">
<div class="image-group">
<img src="2.webp" alt="Team 1" onerror="this.src='https://via.placeholder.com/150'">
<img src="3.webp" alt="Team 2" onerror="this.src='https://via.placeholder.com/150'">
</div>
<div class="text-group">
<h2 data-i18n="joinUsTitle">สนใจร่วมงานกับเรา</h2>
<a href="form.html" class="btn" data-i18n="clickBtn">สมัครเลย</a>
</div>
</div>
</section>
<section class="contact">
<div class="contact-container container">
<div class="contact-logo">
<img src="Logose.png" alt="SE Logo" onerror="this.style.display='none'">
</div>
<div class="contact-info">
<div class="contact-details">
<p>
<strong data-i18n="addressTitle">ที่อยู่</strong><br>
<span data-i18n="addressDetail">
อาคาร เอสอี เซอร์เวย์ แอนด์ คอนซัลแตนท์<br>
41 ซอย ลาดพร้าว 138 แขวงคลองจั่น เขตบางกะปิ กรุงเทพฯ 10240
</span><br><br>
<strong data-i18n="phoneTitle">หมายเลขโทรศัพท์</strong><br>
02-766-8889
</p>
</div>
<div class="contact-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3875.0!2d100.5!3d13.75!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMTPCsDQ1JzAwLjAiTiAxMDDCsDMwJzAwLjAiRQ!5e0!3m2!1sen!2sth!4v1600000000000!5m2!1sen!2sth" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</div>
</section>
<script>
const translations = {
th: {
loginBtn: "เข้าสู่ระบบ",
headerSub: "ประกอบธุรกิจให้บริการงานสำรวจอุบัติเหตุ และรับแจ้งอุบัติเหตุ",
companyName: "บริษัท เอสอี เซอร์เวย์ แอนด์ คอนซัลแตนท์ จำกัด",
companyDesc: "ก่อตั้งเมื่อวันที่ 20 กันยายน 2560 ประกอบธุรกิจให้บริการงานสำรวจอุบัติเหตุและรับแจ้งอุบัติเหตุ ด้วยการกำหนดมาตรฐานเพื่อพัฒนาคุณภาพรวม ทั้งการนำอุปกรณ์และระบบเทคโนโลยีที่ทันสมัยมาใช้งาน เพื่อให้เกิดประสิทธิภาพสูงสุด มีพื้นที่ให้บริการครอบคลุม ทั้งกรุงเทพฯ และต่างจังหวัด",
whatWeDo: "เราทำอะไรบ้าง",
service1Title: "สำรวจอุบัติเหตุ",
service1Desc: "ให้บริการสำรวจอุบัติเหตุกรณีรถยนต์ที่ทำประกันเกิดอุบัติเหตุภายใต้เงื่อนไขกรมธรรม์ พนักงานสำรวจเดินทางถึงที่เกิดอุบัติเหตุภายใน 30 นาที พร้อมแนะนำการจัดซ่อมโดยมีพนักงานสำรวจอุบัติเหตุครอบคลุมทั่วประเทศไทย",
service2Title: "รับแจ้งอุบัติเหตุ",
service2Desc: "ใช้ระบบที่ทันสมัยในการให้บริการรับแจ้งอุบัติเหตุ ตลอด 24 ชั่วโมง ให้บริการ CRM เพื่อสอบถามความพึงพอใจและช่วยสร้างสัมพันธภาพที่ดีกับลูกค้า เพื่อนำมาพัฒนาและปรับปรุงการบริการ",
joinUsTitle: "สนใจร่วมงานกับเรา",
clickBtn: "คลิก",
addressTitle: "ที่อยู่",
addressDetail: "อาคาร เอสอี เซอร์เวย์ แอนด์ คอนซัลแตนท์<br>41 ซอย ลาดพร้าว 138 แขวงคลองจั่น<br>เขตบางกะปิ กรุงเทพฯ 10240",
phoneTitle: "หมายเลขโทรศัพท์"
},
en: {
loginBtn: "Login",
headerSub: "Providing Accident Survey and Accident Notification Services",
companyName: "SE SURVEY & CONSULTANT CO., LTD.",
companyDesc: "Established on September 20, 2017, we operate in the accident survey and accident notification business. We set standards to improve overall quality and utilize modern equipment and technology to achieve maximum efficiency. Our service areas cover both Bangkok and upcountry provinces.",
whatWeDo: "What We Do",
service1Title: "Accident Survey",
service1Desc: "We provide survey services for insured vehicles involved in accidents under policy conditions. Our surveyors arrive at the accident scene within 30 minutes and provide repair recommendations. Our surveyors cover all of Thailand, utilizing modern technology to locate the nearest surveyor for rapid response.",
service2Title: "Call Center",
service2Desc: "We use modern systems to provide 24-hour accident notification services. We also offer CRM services to inquire about satisfaction and build good relationships with customers to develop and improve our services.",
joinUsTitle: "Join Our Team",
clickBtn: "Apply Now",
addressTitle: "Address",
addressDetail: "SE Survey & Consultant Building<br>41 Soi Lat Phrao 138, Khlong Chan,<br>Bang Kapi, Bangkok 10240",
phoneTitle: "Phone Number"
},
jp: {
loginBtn: "ログイン",
headerSub: "事故調査および事故受付サービスの提供",
companyName: "株式会社 SEサーベイ&コンサルタント",
companyDesc: "2017年9月20日に設立。事故調査および事故通知サービスを展開しています。品質向上のための基準策定や最新技術の導入により、最大限の効率化を図っています。バンコクおよび地方を含むタイ全土でサービスを提供しています。",
whatWeDo: "事業内容",
service1Title: "事故調査",
service1Desc: "保険契約に基づき、事故車両の調査を行います。調査員は30分以内に現場に到着し、修理のアドバイスを行います。最新技術を活用し、最も近い調査員を迅速に派遣するシステムにより、タイ全土をカバーしています。",
service2Title: "事故受付",
service2Desc: "最新システムを使用し、24時間体制で事故受付を行っています。CRMを活用して顧客満足度を確認し、顧客との良好な関係を構築することで、サービスの向上に努めています。",
joinUsTitle: "採用情報",
clickBtn: "詳細はこちら",
addressTitle: "住所",
addressDetail: "SEサーベイ&コンサルタント ビル<br>41 ソイ ラップラオ 138、クローンチャン<br>バンカピ区、バンコク 10240",
phoneTitle: "電話番号"
}
};
function setLanguage(lang) {
const elements = document.querySelectorAll('[data-i18n]');
elements.forEach(el => {
const key = el.getAttribute('data-i18n');
if (translations[lang][key]) el.innerHTML = translations[lang][key];
});
document.querySelectorAll('.lang-btn').forEach(btn => btn.classList.remove('active'));
document.getElementById('btn-' + lang).classList.add('active');
}
</script>
</body>
</html>