.road {
  text-align: left;
  .backButton {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    cursor: pointer;

    &:hover {
      opacity: 0.8;
    }

    img {
      height: 18px;
      margin-right: 10px;
    }
    span {
      font-size: 16px;
      font-weight: 400;
      line-height: 16px;
      color: #6e7389;
    }
  }

  .title {
    font-size: 18px;
    font-weight: 400;
    color: #7b8197;
    text-align: left;
  }
  .count {
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
  }
  .unit {
    font-size: 18px;
    font-weight: 400;
    margin-left: 5px;
  }

  .roadSelect {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    :global {
      .ant-select {
        width: 180px;
        height: 40px;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
  
        .ant-select-selector {
          height: 100%;
          padding: 0 20px;
          background: #4d5166;
          z-index: 0;
  
          .ant-select-selection-search {
            left: 0;
            width: 100%;
          }
  
          .ant-select-selection-item {
            width: 100%;
            line-height: 40px;
            text-align: left;
          }
        }
  
        .ant-select-arrow {
          font-size: 18px;
          color: #6e7389;
          right: 13px;
          & > span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
          }
        }
      }
    }
    

    .roadConfig {
      color: #44a1f8;
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
      &:hover {
        opacity: 0.8;
      }
    }
  }

  .statistics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;

    & > div {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      .title {
        margin-bottom: 6px;
      }
      .count {
        font-size: 44px;
        font-weight: 700;
        line-height: 44px;
      }
      .unit {
        font-size: 18px;
        font-weight: 400;
      }
    }
  }

  .speed {
    text-align: left;
  }

  .chart {
    margin: 16px 0;
    height: 165px;
    width: 100%;
  }
}