/* 文本相关 */
.text-wrap {
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
}
.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
/* flex布局 */
.flexBox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexCenterX {
    display: flex;
    justify-content: center;
}
.flexCenterY {
    display: flex;
    align-items: center;
}
/* 文字布局 */
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.bold {
    font-weight: bold;
}
.cursor {
    cursor: pointer;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.containerMinHeight {
    min-height: calc(-198vh);
}
.track-order-input-box {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.track-order-input-box input {
    width: 100%;
    height: 56px;
    font-size: 16px;
    color: #4A545D;
    padding-left: 20px;
    border: 1px solid transparent;
    outline: 0;
    background: #ffffff;
    border: 1px solid #90E3E5;
}
.track-order-input-box input:focus {
    border-color: #f56c6c;
}
.track-order-input-box input::placeholder {
    font-size: 16px;
    color: #CED0DB;
}
.track-order-input-box .btn {
    width: 182px;
    height: 56px;
    background-color: #89E1E3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.track-order-input-box .btn img {
    width: 28px;
    height: 28px;
}
