@charset "UTF-8";
/**
* 地市直通车
* date:2025-10-15
* author: qyt;
 */
.view {
  margin-bottom: 32px;
}

.info-item {
  margin-bottom: 24px;
}
.info-item-title {
  color: #091221;
  font-size: 20px;
  padding-left: 12px;
  position: relative;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 16px;
}
.info-item-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 18px;
  background-color: #2556D8;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-item:last-child {
  margin-bottom: 0;
}

.platform-list {
  margin: -16px 0 0 -16px;
}
.platform-item {
  height: 80px;
  width: calc(33.33% - 16px);
  margin: 16px 0 0 16px;
  color: #333;
  background: #F4F7FA;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 20px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.platform-item:hover {
  border-color: #2556D8;
  background: #FFFFFF;
}
.platform-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  background: url("../images/platform_icon.png") center center no-repeat;
}
.platform-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-height: 48px;
  line-height: 24px;
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}