/* 路线规划页面样式 */
.page-header {
  background-color: #1CBBB4;
  color: white;
  padding: 10px 15px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 15px 10px;
}

/* 地图区域样式 */
.map-container {
  position: relative;
  height: 200px;
  margin-bottom: 15px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-controls {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
}

.control-btn {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: none;
}

.control-btn:last-child {
  margin-bottom: 0;
}

.control-icon {
  font-size: 18px;
  color: #333;
}

/* 搜索区域样式 */
.search-section {
  display: flex;
  padding: 0 15px;
  margin-bottom: 15px;
}

.search-bar {
  flex: 1;
  background-color: white;
  border-radius: 20px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}

.search-icon {
  margin-right: 10px;
  font-size: 16px;
  color: #999;
}

.search-input {
  flex: 1;
  border: none;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
}

.location-btn {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-icon {
  font-size: 18px;
  color: #1CBBB4;
}

/* 路线规划样式 */
.route-planning {
  background-color: white;
  margin: 0 15px 15px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.route-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.route-inputs {
  margin-bottom: 15px;
}

.route-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.route-input:last-child {
  border-bottom: none;
}

.input-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
}

.start-icon {
  background-color: #1CBBB4;
  color: white;
}

.end-icon {
  background-color: #FF5722;
  color: white;
}

.route-input input {
  flex: 1;
  border: none;
  font-size: 14px;
}

.route-input input:focus {
  outline: none;
}

.transport-options {
  display: flex;
  justify-content: space-between;
}

.transport-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding: 10px 0;
  border-radius: 5px;
}

.transport-option.active {
  background-color: rgba(28, 187, 180, 0.1);
}

.transport-icon {
  font-size: 20px;
  margin-bottom: 5px;
}

.transport-name {
  font-size: 12px;
  color: #666;
}

/* 路线详情样式 */
.route-details {
  background-color: white;
  margin: 0 15px 15px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.route-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
}

.summary-value {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.summary-label {
  font-size: 12px;
  color: #999;
}

.route-divider {
  width: 1px;
  height: 30px;
  background-color: #eee;
}

.route-steps {
  position: relative;
}

.step-item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-time {
  width: 40px;
  font-size: 12px;
  color: #999;
  margin-right: 10px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin-right: 10px;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.step-dot.start {
  background-color: #1CBBB4;
}

.step-dot.end {
  background-color: #FF5722;
}

.step-line {
  position: absolute;
  left: 45px;
  top: 18px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: #ddd;
}

.step-info {
  flex: 1;
}

.step-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}

.step-desc {
  font-size: 12px;
  color: #999;
}

/* 附近门店样式 */
.nearby-stores {
  margin: 0 15px 15px;
}

.store-list {
  margin-bottom: 15px;
}

.store-item {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-item:last-child {
  margin-bottom: 0;
}

.store-image {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-info {
  flex: 1;
}

.store-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.store-address {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.store-distance {
  font-size: 12px;
  color: #999;
}

.navigate-btn {
  width: 60px;
  height: 30px;
  background-color: #1CBBB4;
  color: white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  align-self: center;
}

/* 提交按钮样式 */
.submit-section {
  margin: 20px 15px 30px;
}

.submit-btn {
  width: 100%;
  height: 45px;
  background-color: #1CBBB4;
  color: white;
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 500;
} 