/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif; /* 更具现代感的字体 */
}

body {
  background-color: #f4f4f4;
  overflow-x: hidden;
}

/* 顶部状态栏样式 */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 添加阴影增强立体感 */
}

#time {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.network-info {
  display: flex;
  align-items: center;
}

.network-info img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

.signal-strength {
  font-size: 14px;
}

/* 问候和搜索、通知区域样式 */
.greeting-area {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.greeting-area h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.greeting-area p {
  font-size: 18px;
  color: #666;
}

.search-notification {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.search-notification img {
  width: 28px;
  height: 28px;
  margin-left: 10px;
}

/* 公司介绍区域样式 */
.company-intro {
  padding: 0px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.company-banner img {
  width:390px;
  height: auto;
}

.company-logo {
  width: 140px;
  height: 140px;
}

/* 功能按钮区域样式 */
.function-buttons {
  display: flex;
  justify-content: space-around;
  padding: 6px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.function-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease; /* 添加过渡效果 */
}

.function-button img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.function-button:hover {
  transform: translateY(-5px); /* 鼠标悬停时上移 */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* 鼠标悬停时添加阴影 */
}

/* 推荐服务区域样式 */
.recommended-services {
  padding: 20px;
}

.recommended-services h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.service-items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-item {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 48%;
  transition: all 0.3s ease; /* 添加过渡效果 */
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 120px;
  height: 120px;
}

.service-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-details p {
  font-size: 16px;
  color: #666;
}

/* 底部导航栏样式 */
.bottom-navigation {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  backdrop-filter: blur(10px); /* 玻璃磨砂效果 */
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7); /* 半透明背景 */
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.nav-item img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
}

.nav-item:hover {
  transform: translateY(-3px);
  color: #007bff;
}