
.dl-btn {
    width: 200px;
    height: 50px;
    font-size: 20px;
    color: white;
    background-color: #006DCC;
    border: 0px;
    border-radius: 10px
}

.dl-btn:hover {
    box-shadow: 0 0 5px 5px darkgray;
}

.dl-dialog {
    

    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* opacity: 0.89; */
   
    background-color: #eaedf1 !important
}

.dl-content {

    width: 500px;
    height: 300px;
    margin: 100px auto;
    background-color: #fefefe;
    border-radius: 3px;
    box-shadow: 0 0 3px 1px #1f7ee5;
    /* border: 1px solid #457af5; */
    border-color: #457af5;
    padding: 20px;
    font-size: 16px;
}

.dl-aclose {
    margin-top: -49px;
    margin-right: -8px;
    color: #aaa;
    float: right;
    /* margin-right: 15px; */
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.dl-aclose span {
    line-height: 70px;
    font-size: 26px;
    font-weight: 700;
}

.dl-contain {
    width: 500px;
    height: 200px;
    overflow: auto;

    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    color: red;
    background: white;
}

.dl-close {
    margin-top: -50px;
    margin-right: -10px;
    color: #aaa;
    float: right;
    /* margin-right: 15px; */
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}


.dl-logistics-trace {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.dl-logistics-trace li {
    width: 180px;
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.dl-logistics-trace li:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: calc(50% - 10px);
    z-index: 1;
}

.dl-logistics-trace li:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    border-left: 1px solid #ddd;
    position: absolute;
    top: 10px;
    left: calc(50% - 1px);
    z-index: 1;
}

.dl-logistics-trace li:first-child:before {
    display: none;
}

.dl-logistics-trace li:last-child:after {
    display: none;
}

.dl-logistics-time {
    font-size: 12px;
    /* font-weight: bold; */
    margin-bottom: 5px;
    text-align: left;
    color: #d3d3d3;
}

.dl-logistics-status {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #7d7d7d;
}

.dl-logistics-desc {
    text-align: left;
    margin-bottom: 5px;
    font-size: 12px;
    margin-top: 10px;
    padding-right: 40px;
}

.dl-logistics-status.accept {
    color: green;
}

.dl-logistics-status.transport {
    color: blue;
}

.dl-logistics-status.delivering {
    color: red;
}



.dl-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.dl-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow-y: auto;
    /* 添加滚动条 */
    max-height: 200px;
    /* 设置最大高度 */
}

.dl-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dl-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dl-input-com {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 8px;
}
