/* 门店页面样式 */
.store-header {
  background-color: #ffffff;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.back-icon {
  font-size: 20px;
  color: #333;
}

.location-bar {
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.location-address {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.arrow-down {
  margin-left: 5px;
  font-size: 12px;
}

/* 门店列表样式 */
.store-list {
  padding: 10px 15px;
}

.store-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.store-address, .store-hours, .store-distance {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.store-actions {
  display: flex;
  margin-top: 10px;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1CBBB4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.action-icon {
  font-size: 20px;
  color: white;
}

.store-status {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #FF6B22;
  color: white;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
} 