body {
    background: none;
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}



.haader {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner img {
    margin-top: 0;
    width: 100%;
    height: 100vh;
}

.an {
    position: absolute;
    top: 67%;
    left: 41%;
    /* width: 30%; */
    height: 6%;
    animation-name: an;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.lg {

    position: absolute;
    top: 3%;
    left: 3%;
    width: 22%;
    height: 7%;

}

.lg img {
    height: 100%;
}

.slogan {
    position: absolute;
    top: 24%;
    left: 5%;
    width: 33%;
    height: 33%;
}

.slogan img {
    height: 100%;
}

.an img {
    height: 100%;
    height: 128%;
}

.copyright1 {
    /* position: absolute;
    bottom: 2%;
    width: 100%; */
    margin-top: 158px;
    text-align: center;
    color: #000;
}

@keyframes an {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

.sonepar-nav-wrap {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dfe3ea;
}

.sonepar-nav-top {
    max-width: 1048px;
    margin: 0 auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.sonepar-nav-top a {
    color: #666;
    text-decoration: none;
    margin-right: 18px;
    transition: color .2s ease;
}

.sonepar-nav-top a:hover {
    color: #ed1c24;
}

.sonepar-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sonepar-top-search {
    width: 180px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0 14px;
    font-size: 12px;
    outline: none;
}

.sonepar-nav-main {
    max-width: 1048px;
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: stretch;
}

.sonepar-brand {
    width: 300px;
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sonepar-logo-placeholder {
    width: 220px;
    height: 50px;
    background: #2fa6df;
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

.sonepar-logo-placeholder img {
    width: 100%;
    display: block;
}

.sonepar-menu-wrap {
    flex: 1;
    background: #293792;
    display: flex;
    align-items: center;
}

.sonepar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 76px;
    margin-left: 14px;
}

.sonepar-menu-item {
    position: relative;
    height: 76px;
    display: flex;
    align-items: center;
}

.sonepar-menu-item>a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 22px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: opacity .2s ease;
}

.sonepar-menu-item>a:hover {
    opacity: .85;
}

.sonepar-menu-item.is-active::before,
.sonepar-menu-item:hover::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 15px;
    height: 2px;
    background: #fff;
    z-index: 1;
}

.sonepar-menu-item.has-arrow>a {
    padding-right: 34px;
}

.sonepar-menu-item.has-arrow>a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -4px;
    width: 9px;
    height: 9px;
    background: url("../images/icon.svg") center center / contain no-repeat;
    filter: brightness(0) invert(1);
    transform: rotate(0deg);
    transform-origin: center center;
    transition: transform .2s ease;
}

.sonepar-submenu {
    position: absolute;
    top: 76px;
    left: 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    background: #ececec;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .2s ease;
    z-index: 10;
}

.sonepar-submenu li a {
    display: block;
    padding: 12px 18px;
    color: #232323;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
}

.sonepar-submenu li a:hover {
    background: #293792;
    color: #fff;
}

.sonepar-submenu li a[aria-current="page"] {
    background: #293792;
    color: #fff;
}

.sonepar-menu-item:hover .sonepar-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sonepar-menu-item.has-arrow:hover>a::after {
    transform: rotate(180deg);
}

.sonepar-breadcrumb {
    text-align: left;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #3d4a5c;
}

.sonepar-breadcrumb a {
    color: #3d4a5c;
    text-decoration: none;
}

.sonepar-breadcrumb a:hover {
    color: #293792;
    text-decoration: underline;
}

.sonepar-breadcrumb-sep {
    margin: 0 10px;
    color: #3d4a5c;
    user-select: none;
}

.sonepar-breadcrumb-current {
    color: #3d4a5c;
    font-weight: 500;
}

.placeholder {
    box-sizing: border-box;
    width: 1048px;
    margin: 108px auto 20px;
    /* padding: 28px;
    border: 1px dashed #d8d8d8; */
    color: #777;
    text-align: center;
    font-size: 14px;
}

.placeholder img {

    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 48px;
}

.contact-page-body{
    margin-top: 48px;
}

.contact-info{
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.contact-label{
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

.contact-label img{
    margin-right: 5px;
    width: 20px;
    height: 20px;
}


.contact-banner {
    width: 100%;
    line-height: 0;
}

.contact-banner img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.contact-content {
    background-size: cover;
    padding: 72px 24px 20px;
    text-align: center;
}

.contact-content-inner {
    max-width: 960px;
    margin: 0 auto;
}

.contact-title {
    margin: 0 0 14px;
    color: #0073b1;
    font-weight: bold;
    font-size: 28px;
    /* font-family: "Microsoft YaHei", Arial, sans-serif; */
}

.contact-divider {
    width: 56px;
    height: 2px;
    margin: 0 auto 32px;
    background: #b3b3b3;
    border: 0;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0 12px;
    text-align: left;
}

.contact-label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0073b1;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.85;
    flex-shrink: 0;
    /* font-family: "Microsoft YaHei", Arial, sans-serif; */
}

.contact-label img {
    display: block;
    flex-shrink: 0;
}

.contact-details {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.85;
    /* font-family: "Times New Roman", Times, serif; */
}

.contact-details p {
    margin: 0;
}
.contact-content{
    background: url("../images/background.png") center center no-repeat;
    background-size: cover;
}


.sonepar-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.contact-page-body {
    margin-top: 0;
    padding-top: 108px;
}