.container {
  padding: 16rpx;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100rpx 0;
}

.empty-text {
  font-size: 32rpx;
  color: #999;
  margin-bottom: 32rpx;
}

.add-btn {
  background-color: #1890ff;
  color: white;
  font-size: 28rpx;
  padding: 16rpx 64rpx;
  border-radius: 8rpx;
}

.address-list {
  margin-bottom: 24rpx;
}

.address-item {
  background-color: white;
  border-radius: 12rpx;
  padding: 24rpx;
  margin-bottom: 16rpx;
  box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12rpx;
}

.name-phone {
  display: flex;
  align-items: center;
}

.name {
  font-size: 28rpx;
  font-weight: bold;
  margin-right: 24rpx;
  color: #333;
}

.phone {
  font-size: 24rpx;
  color: #666;
}

.default-tag {
  background-color: #1890ff;
  color: white;
  font-size: 20rpx;
  padding: 4rpx 12rpx;
  border-radius: 12rpx;
}

.address-detail {
  font-size: 24rpx;
  color: #666;
  line-height: 36rpx;
  margin-bottom: 16rpx;
  text-align: justify;
}

.address-actions {
  display: flex;
  justify-content: flex-end;
  border-top: 1rpx solid #f0f0f0;
  padding-top: 16rpx;
}

.action-btn {
  font-size: 24rpx;
  padding: 8rpx 24rpx;
  margin-left: 16rpx;
  border-radius: 4rpx;
}

.edit-btn {
  color: #1890ff;
  border: 1rpx solid #1890ff;
  background-color: white;
}

.delete-btn {
  color: #ff4d4f;
  border: 1rpx solid #ff4d4f;
  background-color: white;
}

.default-btn {
  color: #52c41a;
  border: 1rpx solid #52c41a;
  background-color: white;
}

.add-address-btn {
  position: fixed;
  bottom: 32rpx;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1890ff;
  color: white;
  font-size: 28rpx;
  padding: 20rpx 80rpx;
  border-radius: 40rpx;
  box-shadow: 0 4rpx 12rpx rgba(24, 144, 255, 0.3);
}