:root {
    --primary-color: #ff6b00;
    --primary-light: #ff8c3f;
    --primary-dark: #e05a00;
    --secondary-color: #1e3a8a;
    --secondary-light: #2d4ba0;
    --secondary-dark: #152a66;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-sm: 4px;
    --container-width: 1200px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue',Arial,sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition)
}

a:hover {
    color: var(--primary-dark)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 80px 0
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff!important
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color)
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.justify-between {
    justify-content: space-between
}

.justify-center {
    justify-content: center
}

.items-center {
    align-items: center
}

.gap-20 {
    gap: 20px
}

.gap-30 {
    gap: 30px
}

.grid {
    display: grid
}

.grid-cols-2 {
    grid-template-columns: repeat(2,1fr)
}

.grid-cols-3 {
    grid-template-columns: repeat(3,1fr)
}

.grid-cols-4 {
    grid-template-columns: repeat(4,1fr)
}

.mb-10 {
    margin-bottom: 10px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-50 {
    margin-bottom: 50px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-50 {
    margin-top: 50px
}

.p-20 {
    padding: 20px
}

.p-30 {
    padding: 30px
}

.card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color)
}

.card-text {
    color: var(--text-light)
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px
}

.badge-primary {
    background-color: var(--primary-color);
    color: #fff
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: #fff
}

.badge-success {
    background-color: var(--success-color);
    color: #fff
}

.badge-light {
    background-color: var(--bg-light);
    color: var(--text-color)
}

.icon-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px
}

.icon-box-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color)
}

.icon-box-content p {
    color: var(--text-light)
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px
}

.check-list {
    list-style: none;
    margin-bottom: 20px
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px
}

.check-list li:before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition)
}

.header.scrolled {
    padding: 10px 0
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center
}

.logo img {
    height: 40px;
    margin-right: 10px
}

.nav-menu {
    display: flex;
    align-items: center
}

.nav-menu ul {
    display: flex;
    margin-right: 20px
}

.nav-menu li {
    margin-left: 30px
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative
}

.nav-menu a:hover {
    color: var(--primary-color)
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.nav-menu a:hover:after {
    width: 100%
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color)
}

.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg,#f5f7fa,#e4eff9);
    position: relative;
    overflow: hidden
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 2
}

.hero h1 span {
    color: var(--primary-color)
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px
}

.hero-features {
    margin-bottom: 30px
}

.hero-features li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-weight: 500
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px
}

.hero-image {
    position: relative;
    z-index: 1
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg)
}

.features {
    background-color: var(--bg-light)
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color)
}

.tab-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    background: 0 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition)
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.tab-btn.active {
    color: var(--primary-color)
}

.tab-btn.active:after {
    width: 100%
}

.tab-content {
    display: none
}

.tab-content.active {
    display: block;
    animation: fadeIn .5s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.feature-card {
    height: 100%
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255,107,0,.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-left: calc(50% - 30PX);
}

.tech-highlights {
    background: linear-gradient(135deg,var(--secondary-color),var(--secondary-dark));
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 50px
}

.tech-highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center
}

.tech-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.tech-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color)
}

.cases {
    background-color: var(--bg-color)
}

.case-study {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.case-header {
    background: linear-gradient(135deg,var(--primary-color),var(--primary-dark));
    color: #fff;
    padding: 30px
}

.case-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.case-body {
    padding: 30px
}

.case-point {
    margin-bottom: 20px
}

.case-point h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color)
}

.case-results {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center
}

.result-item {
    padding: 15px
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px
}

.result-label {
    color: var(--text-light);
    font-size: .9rem
}

.brands {
    margin-top: 50px
}

.brands h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light)
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.brand-logo {
    height: 60px;
    opacity: .7;
    transition: var(--transition)
}

.brand-logo:hover {
    opacity: 1
}

.pricing {
    background-color: var(--bg-light)
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden
}

.pricing-table td,.pricing-table th {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color)
}

.pricing-table th {
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 1.1rem
}

.pricing-table tr:last-child td {
    border-bottom: none
}

.pricing-table tr:nth-child(even) {
    background-color: rgba(0,0,0,.02)
}

.pricing-table td:first-child {
    font-weight: 500
}

.pricing-table .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color)
}

.pricing-table .highlight {
    background-color: rgba(255,107,0,.1)
}

.pricing-table .check {
    color: var(--success-color);
    font-size: 1.2rem
}

.pricing-table .plus {
    color: var(--info-color)
}

.value-added {
    margin-top: 40px
}

.value-added h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color)
}

.value-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px
}

.value-service {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: var(--transition)
}

.value-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.value-service i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px
}

.value-service h4 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 20px;
}

.comparison {
    background-color: var(--bg-color)
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden
}

.comparison-table td,.comparison-table th {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color)
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: #fff
}

.comparison-table tr:last-child td {
    border-bottom: none
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0,0,0,.02)
}

.comparison-table td:first-child {
    font-weight: 500
}

.comparison-table .highlight {
    background-color: rgba(255,107,0,.1)
}

.trust {
    background-color: var(--bg-light);
    text-align: center
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px
}

.trust-badge {
    text-align: center
}

.trust-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px
}

.trust-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color)
}

.trust-badge p {
    color: var(--text-light)
}

.contact-cta {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color)
}

.contact-cta p {
    margin-bottom: 30px;
    color: var(--text-light)
}

.footer {
    background-color: var(--secondary-dark);
    color: #fff;
    padding: 60px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
    margin-bottom: 40px
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block
}

.footer-about p {
    color: rgba(255,255,255,.7);
    margin-bottom: 20px
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color)
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: rgba(255,255,255,.7);
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--primary-color)
}

.footer-links i {
    margin-right: 10px;
    color: var(--primary-color)
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5)
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.1);
    color: #fff;
    transition: var(--transition)
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px)
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition)
}

.floating-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

@media (max-width:1024px) {
    .hero h1 {
        font-size: 2.5rem
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2,1fr)
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:768px) {
    .section {
        padding: 60px 0
    }

    .hero {
        padding-top: 100px;
        text-align: center
    }

    .hero-content {
        margin-bottom: 40px
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .hero-cta {
        justify-content: center
    }

    .grid-cols-2 {
        grid-template-columns: 1fr
    }

    .grid-cols-3 {
        grid-template-columns: 1fr
    }

    .grid-cols-4 {
        grid-template-columns: 1fr
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        margin-right: 0
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%
    }

    .mobile-toggle {
        display: block
    }

    .tabs {
        flex-direction: column;
        align-items: center
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 10px
    }

    .comparison-table,.pricing-table {
        display: block;
        overflow-x: auto
    }
}

@media (max-width:576px) {
    .section-title h2 {
        font-size: 2rem
    }

    .btn {
        padding: 10px 20px;
        font-size: .9rem
    }

    .hero-cta {
        flex-direction: column
    }

    .trust-badges {
        gap: 20px
    }
}

 
/*[同城外卖] Usage in HTML: <span class="mxui_tongchengwaimai_507957"></span>*/
.mxui_tongchengwaimai_507957 {
   display: inline-block;
   width: 40px;
   height: 40px;
   margin-right: 10px;
   background-repeat: no-repeat;
   background-size: 100% 100%;
   background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgc3R5bGU9IndpZHRoOiAyNTZweDsgaGVpZ2h0OiAyNTZweDsiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAxLjg4OCAxMzguNTk4NGg0MTIuNzc0NHYyNTQuOTc2SDEwMS44ODh6IiBmaWxsPSIjRkVDQzg3IiBzb3VyY2U9Imh0dHBzOi8vcGljLjUxbWl0dS5jb20vaWNvbi81MDc5NTcuaHRtbCI+PC9wYXRoPjxwYXRoIGQ9Ik05NzIuNTk1MiA2MzAuNDc2OGExODcuMTk3NDQgMTg3LjE5NzQ0IDAgMCAwLTE1MC42MzA0LTk0Ljc3MTJWNDUxLjE3NDRsNTIuNjg0OC0zOS44MzM2VjI1Ni45MjE2SDc5Ni42NzJ2LTYzLjQ4OGwtNy45ODcyLTguODA2NHMtNDguMjgxNi01My4xNDU2LTYwLjIxMTItNjYuNDA2NGwtMTUuNzY5Ni0xNy41NjE2LTIxLjA0MzIgMTAuNzUyYy0xMS4wNTkyIDUuNjMyLTUxLjg2NTYgMjYuNjI0LTUxLjg2NTYgMjYuNjI0bDI4LjEwODggNTQuNjMwNCAzMC43NzEyLTE1Ljc2OTZjMTIuMTM0NCAxMy40MTQ0IDI3LjQ0MzIgMzAuMjU5MiAzNi42MDggNDAuMzQ1NnYzOS43MzEyaC0xNjYuODYwOHYxMzUuNDc1Mmg1Mi4xMjE2djUyLjk0MDhsLTc3LjEwNzIgMTQzLjY2NzJINDc5LjIzMmwzOS40NzUyLTY1LjYzODR2LTkyLjY3MmwtNDMwLjMzNiAwLjM1ODR2MTI0Ljk3OTJoMzkuNzgyNGMtNzEuODg0OCAzNS43Mzc2LTk0LjkyNDggMTE1LjUwNzItOTYuNjY1NiAxNTcuMzM3NmwtMS4zMzEyIDMyaDM3LjI3MzZjMTEuNTIgOTEuOTA0IDkwLjIxNDQgMTYzLjI3NjggMTg1LjE5MDQgMTYzLjI3NjggNzUuOTgwOCAwIDE0My43Njk2LTQ2LjIzMzYgMTcyLjMzOTItMTE0Ljk5NTJoMjEyLjYzMzZjMTkuMTQ4OCA0NS44NzUyIDU2LjMyIDgyLjk5NTIgMTAyLjk2MzIgMTAxLjY4MzIgMjIuNDI1NiA5LjAxMTIgNDUuODI0IDEzLjQ2NTYgNjkuNDI3MiAxMy40NjU2IDM2LjcxMDQgMCA3NC4wMzUyLTEwLjgwMzIgMTA5LjI2MDgtMzIuMDUxMiAxOC40MzItMTEuMTEwNCAzNC4wOTkyLTI2LjcyNjQgNDUuMjA5Ni00NS4wNTYgMzkuOTg3Mi02Ni4yMDE2IDQyLjk1NjgtMTM5LjUyIDguMTQwOC0yMDEuMjY3MnoiIGZpbGw9IiNGRjk0MzIiIHNvdXJjZT0iaHR0cHM6Ly9waWMuNTFtaXR1LmNvbS9pY29uLzUwNzk1Ny5odG1sIj48L3BhdGg+PHBhdGggZD0iTTIxNi41NzYgMjMwLjI0NjRoMTgyLjQyNTZ2NzEuNjhIMjE2LjU3NnpNODA5Ljg4MTYgODEzLjc3MjhjLTUwLjYzNjggMC05MS44NTI4LTQxLjIxNi05MS44NTI4LTkxLjg1MjhzNDEuMjE2LTkxLjg1MjggOTEuODUyOC05MS44NTI4IDkxLjg1MjggNDEuMjE2IDkxLjg1MjggOTEuODUyOC00MS4yMTYgOTEuODUyOC05MS44NTI4IDkxLjg1Mjh6IG0wLTExMS45NzQ0Yy0xMS4xMTA0IDAtMjAuMTcyOCA5LjA2MjQtMjAuMTcyOCAyMC4xNzI4czkuMDYyNCAyMC4xNzI4IDIwLjE3MjggMjAuMTcyOCAyMC4xNzI4LTkuMDYyNCAyMC4xNzI4LTIwLjE3MjhjMC0xMS4xNjE2LTkuMDYyNC0yMC4xNzI4LTIwLjE3MjgtMjAuMTcyOHoiIGZpbGw9IiNGRkZGRkYiIHNvdXJjZT0iaHR0cHM6Ly9waWMuNTFtaXR1LmNvbS9pY29uLzUwNzk1Ny5odG1sIj48L3BhdGg+PHBhdGggZD0iTTI1Mi41Njk2IDgxMy43NzI4Yy01MC42MzY4IDAtOTEuODUyOC00MS4yMTYtOTEuODUyOC05MS44NTI4czQxLjIxNi05MS44NTI4IDkxLjg1MjgtOTEuODUyOCA5MS44NTI4IDQxLjIxNiA5MS44NTI4IDkxLjg1MjgtNDEuMjE2IDkxLjg1MjgtOTEuODUyOCA5MS44NTI4eiBtMC0xMTEuOTc0NGMtMTEuMTEwNCAwLTIwLjE3MjggOS4wNjI0LTIwLjE3MjggMjAuMTcyOHM5LjA2MjQgMjAuMTcyOCAyMC4xNzI4IDIwLjE3MjggMjAuMTcyOC05LjA2MjQgMjAuMTcyOC0yMC4xNzI4YzAtMTEuMTYxNi05LjA2MjQtMjAuMTcyOC0yMC4xNzI4LTIwLjE3Mjh6IiBmaWxsPSIjRkZGRkZGIiBzb3VyY2U9Imh0dHBzOi8vcGljLjUxbWl0dS5jb20vaWNvbi81MDc5NTcuaHRtbCI+PC9wYXRoPjwvc3ZnPiA=");
}