[v-cloak] {
    display: none
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: .333rem;
}

body {
    height: 100vh;
    width: 100%;
    /*background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);*/
    background: white;
    padding: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: white;
}

.container {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: .25rem .25rem .25rem .25rem !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 0.625rem .42rem;
    text-align: center;
}

h1 {
    font-size: .8rem;
    margin-bottom: .2rem;
    font-weight: 600;
}

.logo {
    position: fixed;
    left: .2rem;
    top: .2rem;
    width: 1rem;
    height: 1rem;
}

.logo img {
    display: block;
    width: 1rem;
    height: auto;
    vertical-align: middle;
}

.subtitle {
    font-size: .5rem;
    opacity: 0.9;
}

.search-section {
    padding: 0.5rem .333rem;
    border-bottom: 1px solid #eee;
    background: white;
}
.container-Id{
    margin: 0.1rem -0.333rem;
}
.search-box {
    display: flex;
    margin: 0 auto;
}

.tracking-input {
    flex: 1;
    padding: 0.3125rem 0.416rem;
    border: 0.0416rem solid #1a73e8;
    border-radius: 0.1666rem 0 0 0.1666rem;
    font-size: .5rem;
    outline: none;
    transition: all 0.3s;
}

.tracking-input:focus {
    box-shadow: 0 0 0 0.0625rem rgba(26, 115, 232, 0.2);
}

.search-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 0 0.625rem;
    border-radius: 0 0.1666rem 0.1666rem 0;
    font-size: .5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #0d47a1;
}

.search-btn:active {
    transform: scale(0.98);
}

.result-section {
    padding: 0.417rem;
    flex: 1;
    box-sizing: border-box;
    overflow: auto;
    background: white;
}

.loading {
    text-align: center;
    padding: 1.0417rem 0.417rem;
    font-size: .333rem;
}

.spinner {
    width: 1.0417rem;
    height: 1.0417rem;
    border: 0.10417rem solid rgba(26, 115, 232, 0.2);
    border-radius: 50%;
    border-top-color: #1a73e8;
    margin: 0 auto 0.417rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 0.3125rem;
    border-radius: 0.1666rem;
    text-align: center;
    margin: 0.417rem 0;
}

.tracking-info {
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.417rem;
    padding-bottom: 0.3125rem;
    border-bottom: 1px solid #eee;
}

.tracking-number {
    font-size: .5rem;
    font-weight: 600;
    color: #1a73e8;
}

.status {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 0.10417rem 0.3125rem;
    border-radius: 0.417rem;
    font-size: 0.5rem;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding-left: 0.625rem;
    margin: 0.625rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1a73e8;
}

.timeline-item {
    position: relative;
    margin-bottom: 0.52rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 0.10417rem;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: #1a73e8;
}

.timeline-item.active::before {
    background: #34a853;
    box-shadow: 0 0 0 0.0625rem rgba(52, 168, 83, 0.3);
}

.timeline-time {
    font-size: 0.444rem;
    color: #666;
    margin-bottom: 5px;
}

.timeline-content {
    font-weight: 500;
    font-size: 0.333rem;
}

.package-info {
    background: #f8f9fa;
    padding: 0.3125rem;
    border-radius: 0.1666rem;
    margin-top: 0.417rem;
}

.info-row {
    display: flex;
    margin-bottom: 0.208rem;
}

.info-label {
    width: 2.5rem;
    font-weight: 600;
    color: #666;
}

.info-value {
    flex: 1;
}

footer {
    text-align: center;
    padding: .5rem;
    color: white;
    font-size: 0.3rem;
    border-top: 1px solid #eee;

}

@media (max-width: 600px) {

    .search-box {
        flex-direction: column;
    }

    .tracking-input {
        border-radius: 0.1666rem;
        margin-bottom: 0.208rem;
    }

    .search-btn {
        border-radius: 0.1666rem;
        padding: 0.3125rem;
    }

    .tracking-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .status {
        margin-top: 0.208rem;
    }
}