body,
p,
span {
    margin: 0;
}
#app {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.query-top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imgs/top_bg.png');
    background-size: cover;
    height: 180px;
}
.query-top-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
}
.logo-box {
    display: flex;
    align-items: center;
    margin-right: 40px;
}
.logo-box-img {
    width: 77px;
    height: 77px;
    margin-right: 10px;
}
.logo-box-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.search-input {
    height: 40px;
}

.search-input .el-input__inner {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}

.search-input .el-input-group__append {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    box-sizing: border-box !important;
    padding: 0 30px !important;
    background-color: rgba(255, 255, 255, 1);
}

.el-input-group__append .el-button span {
    color: rgba(0, 142, 23, 1);
}

.result-list {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 40px;
}

.result-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.result-item .result-item-top {
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(222, 224, 223, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}

.result-item-top .item-top-left {
    position: relative;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 40px;
}

.item-top-left::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 99%;
    width: 0;
    height: 0;
    border-top: 70px solid transparent; /* 上边框透明，高度为三角形高度的一半 */
    border-bottom: 70px solid transparent; /* 下边框透明，高度为三角形高度的一半 */
    border-left: 70px solid #fff; /* 左边框设置三角形宽度和颜色 */
    transform: translateY(-50%) scaleX(0.8); /* 垂直居中 */
}

.result-item-top .item-top-right {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background: linear-gradient(90deg, rgba(244, 245, 244, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.item-top-left .biz-sn,
.item-top-left .customer-no {
    display: flex;
    flex-direction: column;
}
.item-top-left .biz-sn {
    border-right: 1px solid rgba(221, 221, 221, 1);
    box-sizing: border-box;
    padding-right: 35px;
}
.item-top-left .customer-no {
    box-sizing: border-box;
    padding-left: 35px;
}
.item-top-left .biz-sn span:nth-child(1) {
    color: rgba(119, 119, 119, 1);
}
.item-top-left .biz-sn span:nth-child(2) {
    color: rgba(8, 140, 28, 1);
    font-size: 26px;
}
.item-top-left .customer-no span:nth-child(1) {
    color: rgba(119, 119, 119, 1);
}
.item-top-left .customer-no span:nth-child(2) {
    color: rgba(34, 34, 34, 1);
    font-size: 26px;
}

.item-top-right .from-to-top {
    display: flex;
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    margin-bottom: 5px;
    margin-left: 120px;
}
.item-top-right .from-to-top p:nth-child(2) {
    margin-left: 60px;
}

.item-top-right .from-to-bottom {
    display: flex;
    margin-left: 120px;
}

.item-top-right .from-to-bottom .city {
    font-size: 24px;
    font-weight: 700;
}

.item-top-right .from-to-bottom .truck {
    display: flex;
    align-items: center;
}

.item-top-right .from-to-bottom .truck img:nth-child(2) {
    width: 29px;
    height: 29px;
    margin: 0 10px;
}
.item-top-right .from-to-bottom .truck img:nth-child(3) {
    transform: scaleX(-1);
}
.item-top-right .from-to-bottom .truck img:nth-child(1),
.item-top-right .from-to-bottom .truck img:nth-child(3) {
    width: 50px;
}

.item-top-right .from-to p:nth-child(1) {
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 5px;
}
.item-top-right .from-to p:nth-child(2) {
    font-size: 24px;
    color: #000;
    font-weight: 700;
}

.result-item .result-item-content {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 20px;
    margin-top: 22px;
}

.result-item-content-title {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 0;
}

.result-item-content-title img {
    width: 26px;
    height: 26px;
    margin-right: 8px;
}
.result-item-content-title span {
    color: rgba(105, 140, 110, 1);
    font-size: 24px;
    font-weight: 700;
}

.result-item-content-wrapper {
    display: flex;
    border-top: 1px solid rgba(229, 229, 229, 1);
    box-sizing: border-box;
    padding: 40px 0;
}

.result-item-content-wrapper .consigner-receiver {
    width: 33.33%;
    display: flex;
    justify-content: center;
}
.result-item-content-wrapper .consigner-receiver:nth-child(1) .consigner-receiver-sign {
    background-color: rgba(0, 144, 23, 1);
    color: #fff;
    height: fit-content;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 3px 5px;
    margin-right: 8px;
}
.result-item-content-wrapper .consigner-receiver:nth-child(2) .consigner-receiver-sign {
    background-color: rgba(212, 176, 90, 1);
    color: #fff;
    height: fit-content;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 3px 5px;
    margin-right: 8px;
}
.result-item-content-wrapper .consigner-receiver .consigner-receiver-content p {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.result-item-content-wrapper .consigner-receiver .consigner-receiver-content p:last-child {
    margin-bottom: 0;
}

.result-item-content-wrapper .consigner-receiver p span:nth-child(1) {
    color: rgba(119, 119, 119, 1);
    margin-bottom: 6px;
}
.result-item-content-wrapper .consigner-receiver p span:nth-child(2) {
    color: rgba(34, 34, 34, 1);
}

.result-item-content-wrapper .trace {
    width: 33.33%;
    display: flex;
    justify-content: center;
}
.result-item-content-wrapper .trace .trace-sign {
    background-color: rgba(27, 125, 221, 1);
    color: #fff;
    height: fit-content;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 3px 5px;
    margin-right: 8px;
}

.result-item-content-wrapper .trace .el-timeline {
    padding-left: 10px !important;
}

#app .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(2, 132, 23, 1);
}
#app .footer span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 30px;
}
#app .footer span:nth-child(1) {
    margin-right: 20px;
}
