/* 万达物流 Logo 样式 */
.head .logo {
    width: 290px;
    height: 115px;
    float: left;
    position: relative;
    background: transparent !important;
    display: flex;
    align-items: center;
}

.head .logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: 0 !important;
    position: relative;
}

.head .logo a h1 {
    text-indent: 0 !important;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo 图标容器 */
.logo-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* width: 60px; */
    flex-shrink: 0;
    margin-top: 26px;
}

/* 卡车图标 */
.logo-truck {
    position: relative;
    width: 55px;
    height: 35px;
}

.truck-body {
    position: absolute;
    left: 0;
    top: 10px;
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    border-radius: 3px;
}

.truck-cabin {
    position: absolute;
    left: 35px;
    top: 15px;
    width: 15px;
    height: 20px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    border-radius: 0 3px 3px 0;
}

.truck-cabin::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 8px solid #A78BFA;
    border-bottom: 5px solid #A78BFA;
}

.truck-window {
    position: absolute;
    left: 37px;
    top: 17px;
    width: 10px;
    height: 8px;
    background: #EDE9FE;
    border-radius: 1px;
}

.truck-wheel {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: #4C1D95;
    border: 2px solid #8B5CF6;
    border-radius: 50%;
}

.truck-wheel:first-of-type {
    left: 7px;
}

.truck-wheel:last-of-type {
    left: 37px;
}

.truck-speed {
    position: absolute;
    left: -8px;
    top: 18px;
    width: 8px;
    height: 2px;
    background: #A78BFA;
    border-radius: 1px;
}

.truck-speed::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 7px;
    width: 8px;
    height: 2px;
    background: #A78BFA;
    border-radius: 1px;
}

/* 快递盒子图标 */
.logo-packages {
    display: flex;
    gap: 5px;
    margin-left: 5px;
}

.package-box {
    position: relative;
    width: 20px;
    height: 20px;
    background: #DDD6FE;
    border: 1.5px solid #8B5CF6;
    border-radius: 2px;
}

.package-box::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1.5px;
    height: 100%;
    background: #8B5CF6;
    transform: translateX(-50%);
}

.package-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background: #8B5CF6;
    transform: translateY(-50%);
}

.package-box.small {
    width: 15px;
    height: 15px;
    background: #EDE9FE;
    border-color: #A78BFA;
}

.package-box.small::before,
.package-box.small::after {
    background: #A78BFA;
    width: 1.2px;
    height: 1.2px;
}

.package-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #8B5CF6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Logo 文字 */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-chinese {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Heiti SC', sans-serif;
}

.logo-english {
    font-size: 12px;
    font-weight: 500;
    color: #8B5CF6;
    letter-spacing: 2px;
    font-family: Arial, sans-serif;
    border-bottom: 2px solid #A78BFA;
    padding-bottom: 3px;
    position: relative;
}

.logo-english::after {
    content: '';
    position: absolute;
    right: -15px;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background: #8B5CF6;
    border-radius: 50%;
}

.logo-english::before {
    content: '';
    position: absolute;
    right: -23px;
    bottom: -3px;
    width: 5px;
    height: 5px;
    background: #A78BFA;
    border-radius: 50%;
}
