 html {
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;
    outline: 0;
    vertical-align: baseline
}

* {
    box-sizing: border-box;
}
.embed-icon {
    display: none;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
    display: -webkit-flex;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
img {
    max-width: 100%;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

button,
.btn,
select {
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
.form-control:focus {
    box-shadow: 0px 0px 18px 0px rgba(255, 124, 37, 0.14);
    border-color: #FF6601;
}
/* 隐藏垂直滚动条 */
.scroll-container {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Webkit浏览器 */
}

/* 隐藏水平滚动条 */
.scroll-container {
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Webkit浏览器 */
}
.qr-code:hover {
    transform: translateY(-10px) scale(1.2);
}
.user-qr-code:hover {
    transform: translateY(-10px) scale(1.2);
}

.hide-img {
    display: none;
}
/* 动画 */
@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.75,1);
        transform: scale3d(1.15,.75,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.al-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.primary-text-color {
    color: #FF6600 !important;
}

.primary-bg-color {
    background-color: #FF6600 !important;
}

.color-3 {
    color: #333333;
}
.color-2 {
    color: #222222;
}

a.primary-btn {
    display: inline-block;
    width: max-content;
    padding: 13px;
    background: #333;
    border-radius: 45px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    border: 1px solid transparent;
}

a.primary-btn:hover{
   border-color: #333;
   background-color: #fff;
   color: #333;
}

.wrapper{
    overflow: hidden;
}
/* slideindown animation */
@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

.sticky {
    position: fixed !important;
    left: 0;
    top: 0;
    /* right: 0; */
    width: 100%;
    height: auto;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    z-index: 9999;
    background: #fff;
}
/* search bar css */
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
         -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
            transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
}

.search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    left: auto;
    width: auto;
    height: auto;
    margin: 0px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
    outline: none;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search:hover {
    color:#FF2D64;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    height: 70px;
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 25px;
    padding-right: 65px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-transform: capitalize;
}

.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0;
    height: 70px;
    background-color: transparent;
    border: none;
    text-align: center;
    font-size: 26px;
    padding: 0;
    color:#FF2D64;
}

.search-popup .form-group button:hover {
    color: #000;
}

.search-active .search-popup form {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
         -o-transition-delay: 1200ms;
            transition-delay: 1200ms;
}

.search-active .search-popup {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

/* black overlay */
/* window loader */
.nexigen-loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color:#fff;
    z-index: 999;
}

.nexigen-loading .lds-ripple {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #333;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
            animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
  }
  @-webkit-keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }


.bg-shadow {
    border-radius: 20px;
    background: #FFFFFF !important;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.14) !important;
}
/* header area */

.logo {
    height: 28px;
    width: 104px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 28px;
    width: 104px;
}
.model-classify .fs-7{
    font-size: 16px !important;
}
.classify {
    background-color:#FFF4ED !important;
    color: #FF7C25 !important;
}

.classify-item {
    margin: 0 5px;
    cursor: pointer;
}
.classify-item-no-hover {
    margin: 0 5px;
    cursor: pointer;
}

.classify-item:hover {
    background-color:#FFF4ED !important;
    color: #FF7C25!important;
}

.business {
    height: 75px;
}

.transition-dom {
	transition: all .2s linear 0s;
}

.model-applets {
    --n: 5;
    --gap: calc((100% - 16.666666% * var(--n)) / var(--n) / 2);
    margin: 0 var(--gap) 50px;
}

#sticky-header {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
}

.manu-part li {
    display: inline-block;
    padding: 0 16px;
}

.right-manu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            gap: 20px;
}

.manu-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
}

.main-manu ul {
    width: max-content;
}

.main-manu li a {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #333;
    position: relative;
    z-index: 1;
    height: 100%;
    display: inline-block;
}
.main-manu li a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width:0;
    content: "";
    background:#FF6600;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.main-manu .active a {
    color: #FF6600 !important;
    font-weight: 600 !important;
}

.main-manu a:hover::after{
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.main-manu  .active a::after{
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
}
ul.submanu-user {
    position: absolute;
    text-align: left;
    top:60px;
    right: 0px;
    transform: translateX(0);
    min-width: 150px;
    background-color:#fff;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
   display: none;
   border-radius: 6px;
   -webkit-box-shadow: 0 0 10px #f1f1f1;
           box-shadow: 0 0 10px #f1f1f1;
   z-index: 99;
}

ul.submanu {
    position: absolute;
    text-align: left;
    top:43px;
    left: -30%;
    min-width: 200px;
    height: max-content;
    background-color:#fff;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
   visibility: hidden;
   border-radius: 6px;
   -webkit-box-shadow: 0 0 10px #f1f1f1;
           box-shadow: 0 0 10px #f1f1f1;
   z-index: 99;
}

ul.submanu li {
    display: block;
    margin: 0;
    padding-right: 0;
    text-align: center;
    padding: 10px;
}

ul.submanu li:last-child{
    border-bottom: 0;
}

ul.submanu li a {
    display: inline-block;
    color:#333;
}

ul.submanu li a::after {
    display: none;
}

.main-manu ul li:hover ul.submanu {
    top:43px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}
ul.submanu li:hover {
    background-color: #eeeeee;
}
.user-menu:hover ul.submanu-user{
    top: 60px;
    transform: translateX(30%);
    opacity: 1;
    display: block;
    cursor: pointer;
    height: auto;
    text-align: center;
    overflow: hidden;
}

.user-menu ul.submanu-user li:hover {
    background-color: #eeeeee;
}

.search-bar .user-a {
    display: inline-block;
    height: 47px;
    width: 47px;
    text-align: center;
    line-height: 47px;
    border-radius: 50%;
    background: #FF6600;
}

.search-bar a svg {
    fill: #fff !important;
    width: 25px;
    height: 25px;
}

.search-bar {
    margin-left: 10px;
}
.mobila-manu-area {
    display: none;
}

.login-btn {
    background:linear-gradient(108deg, #F87535 0%, #FF5300 100%);;
    width:100px;
    height:32px;
    font-size:16px;
    line-height: 32px;
}
.login-btn a {
    color:#ffffff;
}
/* hero area */

.hero-area{
    height: 100%;
    display: flex;
    align-items: center;
}
#index .swiper-1 {
    background: url(/static/img/banner2.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#index .swiper-2 {
    background: url(/static/img/banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-content p {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    color: #fff;
    margin-bottom: 24px;
}

.hero-content h2 {
    font-size: 62px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 63px;
}

.hero-btn a {
    border-color: #F2F2F2;
}

.company {
    background: url('/static/img/公司介绍背景.webp') no-repeat;
    background-size: cover;
}

.company-01 {
    background: url('/static/img/desc1.webp') no-repeat;
    background-size: 100% 100%;
    min-height: 286px;
}

.company-02 {
    background: url('/static/img/desc2.webp') no-repeat;
    background-size: 100% 100%;
    min-height: 286px;
}

/* what we do area start */

section.what-we-do {
    padding-top: 120px;
    background: #FDFAFA;
}

.section-tittle {
    text-align: center;
    margin-bottom: 40px;
}
.section-tittle-margin {
    margin: 70px 0 40px;
}

.section-tittle h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.section-tittle p {
    font-size: 20px;
    font-weight: 400;
    /* line-height: 36px; */
    color: #646464;
    text-transform: capitalize;
    margin-bottom: 0;
    --mar: 10px 0 0;
}

.what-we-do-left h4 {
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 48px;
    color: #000;
}

.what-we-do-left h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
    color: #646464;
    margin: 22px 0;
}

.what-we-do-left p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    text-transform: capitalize;
    color: #646464;
    margin-bottom: 30px;
}
/* unmatched excellence area */

section.unmatched {
    background: #ffffff;
    padding-top: 70px;
}

.row.unmatched-all-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.single-unmatched-item {
    text-align: center;
    background: #FFF7F2;
    -webkit-box-shadow:  0px 10px 10px 0px rgba(243, 243, 243, 0.25);
            box-shadow:  0px 10px 10px 0px rgba(243, 243, 243, 0.25);
    height: 390px;
    margin-bottom: 30px;
    overflow: hidden;
    color: #646464;
}

.row .serve {
    overflow: hidden;
    background-color: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.serve-1 {
    background-image: url('/static/img/定制1未选中.webp');
}
.serve-1:hover {
    background-size: 100% 100%;
    background-image: url('/static/img/定制1选中.webp');
}

.serve-2 {
    background-image: url('/static/img/定制2未选中.webp');
}
.serve-2:hover {
    background-size: 100% 100%;
    background-image: url('/static/img/定制2选中.webp');
}

.serve-3 {
    background-image: url('/static/img/定制3未选中.webp');
}
.serve-3:hover {
    background-size: 100% 100%;
    background-image: url('/static/img/定制3选中.webp');
}

.serve-4 {
    background-image: url('/static/img/定制4未选中.webp');
}
.serve-4:hover {
    background-size: 100% 100%;
    background-image: url('/static/img/定制4选中.webp');
}

.serve-defend {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 280px;
    height: auto;
}

.serve-defend-1 {
    background-image: url('/static/img/服务保障1.png');
}
.serve-defend-2 {
    background-image: url('/static/img/服务保障2.png');
}
.serve-defend-3 {
    background-image: url('/static/img/服务保障3.png');
}
.serve-defend-4 {
    background-image: url('/static/img/服务保障4.png');
}

.news-item {
    height: 235px;
}

.news-defend {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 230px;
    padding: 85px 30px 0;
}

.serve-defend-title {
  position: absolute; bottom: 20%;left: 50%;
  transform: translate(-50%);
  width: 90%;
}

.serve-defend-desc {
    font-size: 15px;
    color: #666666;
    width: 90%;
}

.news-defend-1 {
    height: 500px;padding: 113px 30px 0;
    background-image: url('/static/img/资讯中心1.webp');
}
.news-defend-2 {
    background-image: url('/static/img/资讯中心2.webp');
}
.news-defend-3 {
    background-image: url('/static/img/资讯中心3.webp');
}
.news-defend-4 {
    margin-top: 20px;
    background-image: url('/static/img/资讯中心4.webp');
}
.news-defend-5 {
    margin-top: 20px;
    background-image: url('/static/img/资讯中心5.webp');
}

.unmatched-icon svg {
    height: 66px;
    width: 66px;
}

.unmatched-icon {
    margin: 50px 0 20px;
}

.model-title {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.single-unmatched-item h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
    color: #646464;
    margin-bottom: 36px;
}

.single-unmatched-item p {
    margin-bottom: 0;
    color: #646464;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: capitalize;
    padding: 0 20px;
}

.single-unmatched-item:hover .unmatched-icon img {
    scale: 1.15;
}

.model-cart {
    transform: translateY(0);
}

.model-cart:hover {
    transition: all 0.5s;
    transform: translateY(-10px);
}

.model-mask {
    visibility: hidden;
    background-color: rgba(0, 0, 0,0.5);top: 0;left: 0;width: 100%;height: 100%;padding-top: 80px;opacity: 0;
}

.model-cover:hover ~ .model-mask {
    visibility: visible;
    opacity: 1 !important;
    transition: all 0.5s;
}
.model-mask:hover{
    visibility: visible;
    opacity: 1 !important;
    transition: all 0.5s;
}

.unmatched-icon img {
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/* legal presengce area start */

.legal-presence-area {
    background: #FDFAFA;
    padding-top: 120px;
}

.ligal-prestnce-content h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
}

.ligal-prestnce-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: #646464;
    text-transform: capitalize;
    margin-bottom: 32px;
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    box-shadow: 0px 10px 30px rgb(0 0 0 / 10%);
    background-color: #f9f9f9;
    padding: 30px 30px 71px 30px;
    height: 100%;
    border-radius: 2px;
    overflow: hidden;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }
  
  .single-page .recent-posts article {
    background-color: #f7f7f7;
  }
  
  .recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
  }
  
  .recent-posts .post-category {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 10px;
  }
  
  .recent-posts .title {
    font-size: 22px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .recent-posts .title a {
    color: #000000;
    transition: 0.3s;
  }
  
  .recent-posts .title a:hover {
    color: #10bab9;
  }
  
  .recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .details-post-data .post-sperator {
    width: 60px;
    text-align: center;
    color: #10bab9;
  }
  
  .recent-posts .post-date {
    font-size: 14px;
    color: #3c3c3c;
    margin-bottom: 0;
  }

  /*--------------------------------------------------------------
# Pagination Comments
--------------------------------------------------------------*/
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 100px !important;
    flex-wrap: nowrap;
    width: 90%;
    margin: auto;
    overflow: auto;
  }

/* testmonial area css */

.single-testmonial-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.testmonial-area {
    background: #FDFAFA;
    padding-top: 60px;
}

.single-testmonial-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #2E4762;
    margin-bottom: 24px;
}

.testmonial-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.testmonial-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.left-img img {
    height: 56px;
    width: 56px;
    border-radius: 200px;
}

.left-content span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #344054;
}

.left-content h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.testmonial-right p {
    margin-bottom: 0;
    color: #FDB022;
}

/* get in touch area css */

.get-in-touch {
    padding-top: 120px;
    background: #FDFAFA;
    padding-bottom: 120px;
}

.get-in-touch-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #262626;
    color: #fff;
    border-radius: 40px;
    padding: 55px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.get-in-touch-left h2 {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}

.get-in-touch-left p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

a.contact {
    display: block;
    background: #F2F2F2;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    border: 1px solid #F2F2F2;
    color: #000;
    border-radius: 45px;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

a.contact:hover {
    background: #000;
    color: #fff;
}

/* footer area  */

footer.footer-area {
    background: #333333;
    color: #fff;
    padding: 100px 0;
}

footer.footer-area li a:hover {
    color: #21fbff;
}

.footer-log img {
    width: 190px;
}

.logo-part p {
    width: 388px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin: 50px 0;
}

.logo-part li {
    display: inline-block;
    padding-left: 40px;
}

.logo-part li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}

.logo-part li:first-child {
    padding-left: 0;
}

footer.footer-area h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 8px;
}

footer.footer-area h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
}

.first-address p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.secound-adress p {
    margin-bottom: 0;
}

.privacy li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.16px;
    padding-right: 10px;
}

.privacy li a {
    color: #fff;
}

.secound-adress {
    margin-bottom: 50px;
}

.contact-part li {
    display: inline;
    padding-left: 18px;
}

.contact-part li a {
    color: #fff;
}

.social {
    margin-bottom: 30px;
}

p.copyright {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 20px;
}

p.develope {
    margin-bottom: 0;
}

.contact-part li:first-child {
    padding: 0;
}

.contact-part p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.contact-part p a {
    color: #fff;
}

.contact-part p span {
    font-weight: 700;
}

.privacy li:first-child {
    border-right: 1px solid;
}

/* about page  */
.about-hero{
    background-image: url(/static/images/xcx/矩形\ 409@2x.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    height: 400px;
    padding-top: 100px;
}

.about-content-area {
    padding-top: 120px;
    background: #FDFAFA;
}

.about-content-area h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 14px;
}

.page-tittle h2 {
    color: #fff;
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.page-tittle {
    color: #fff;
    text-align: center;
}
.page-tittle p {
    font-size: 24px;
}

.about-content-area p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #646464;
}

.over-view-text,.mission-img,.over-view-img,.mission-img {
    padding-bottom: 115px;
}

.mission-secound-text {
    margin-top: 210px;
}
.mission-first-text {
    padding-top: 50px;
}

.location-area {
    padding-top: 120px;
    background: #FDFAFA;
    padding-bottom: 110px;
}

.single-location-item {
    padding: 20px 10px;
    color: #646464;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.single-location-item img{
    width: 70px;
    height: 70px;
    /* border-radius: 50%; */
    margin: 0 20px;
}

.single-location-item h4 {
    color: #333333;
    font-size: 22px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 4px;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.single-location-item h6 {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 400;
    line-height: 44px;
}

.single-location-item p {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 0;
    color: #666666;
}

.single-location-item p span {
    font-weight: 400;
}

.single-location-item a {
    display: block;
    color: #101828;
    font-size: 24px;
    font-weight: 400;
    line-height: 44px;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.single-location-item a.mail {
    font-weight: 400;
}

.single-location-item .address2 {
    margin-bottom: 11px;
}

.single-location-item a.tel {
    margin-bottom: 7px;
}

/* services all page css */

.virutal-assistant {
    background: #F5F5F5;
    padding-top:80px;
}

.single-assistant-item {
    background: #FFF;
    border-radius: 20px;
    padding-bottom: 30px;
    max-height: 600px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.14);
}
.single-assistant-item1 {
    min-height: 410px;
}
.single-assistant-item2 {
    height: 600px;
}
.single-assistant-item3 {
    height: 550px;
}

.assistant-img img {
    width: 100%;
    min-height: 225px;
}

.assistant-content {
    padding: 16px;
}

.assistant-icon {
    font-size: 24px;
    background: #F2F4F7;
    height: 56px;
    width: 56px;
    text-align: center;
    line-height: 56px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.assistant-content h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.assistant-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    color: #475467;
    margin-bottom: 0;
}

.assistant-servies-btn {
    text-align: center;
    padding-top: 43px;
    padding-bottom: 28px;
}
.technical-support,.inbound-outbound,.clerical-services,.graphic-design-services{
    padding: 50px 0;
}
.technical-support {
    background: #FDFAFA;
}
.inbound-outbound {
    background: #F5F5F5;
}

.clerical-services {
    background: #FDFAFA;
}

.graphic-design-services{
    background:#F5F5F5;
}

.services-all-getin-touch {
    background: #FDFAFA;
    padding-top: 21px;
    padding-bottom: 53px;
}

/* single services v1 page start */
.page-btn {
    margin-top: 55px;
}
.page-btn a {
    border-color: #F2F2F2;
}
.services-v1-main h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #101828;
    margin-bottom: 12px;
}

.services-v1-main p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-transform: capitalize;
    color: #333333;
    /* margin-bottom: 40px; */
}

.email-management p {
    margin-bottom: 30px;
}

.data-enty-img {
    padding-top: 108px;
}

.customer-support {
    padding-top: 95px;
}

.ndis-services {
    padding-top: 164px;
}

.data-entry-content {
    padding-top: 195px;
}

.customer-support-img {
    padding-top: 211px;
}

.ndis-servies-text {
    padding-top: 64px;
}

.services-v1-getin-touch{
    padding-top: 122px;
    padding-bottom: 80px;
    background: #FDFAFA;

}
/* career v2 page star */
.ellipsis-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-container-show {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.multi-line-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.multiline-1-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 限制行数为1 */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.multiline-2-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制行数为2 */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.multiline-3-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制行数为3 */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.career-v2-hero{
    background-image: url(/static/images/model/矩形\ 409@2x.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 400px;
    padding-top: 100px;
}

.apply-form {
    width: 744px;
    background: #fff;
    padding: 52px 127px;
    margin: 0 auto;
}

.career-main {
    background: #F4F5F8;
    padding: 60px 0;
}

.apply-form h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 21px;
    color: #07122F;
    letter-spacing: 0.72px;
}

.apply-form label,.apply-form .resume-text {
    display: block;
    color: #8D93A1;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px;
}

.apply-form input,  .apply-form textarea {
    border: 1px solid #E4EBF3;
    display: block;
    width: 100%;
    padding: 16px;
    outline: none;
    margin-bottom: 22px;
    border-radius: 6px;
}
.apply-form textarea{
    height: 88px;
}
.name-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.resume-area {
    text-align: center;
    border: 1px dashed #D0D5DD;
    padding: 24px;
    margin-bottom: 23px;
}

.resume-area img {
    margin-bottom: 10px;
}

.resume-area p {
    font-size: 14px;
    font-weight: 400;
    line-height: 128%;
}

.newslatter-btn,.terms-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.newslatter-btn input,.terms-btn input {
    height: 24px;
    width: 24px;
    border: 1px solid #E4EBF3;
    margin-bottom: 20px;
}

.terms-btn span a {
    font-weight: 700;
    color: #000;
}

.newslatter-btn span, .terms-btn span {
    color: #07122F;
}

.apply-form button {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing:  0.36px;
}

.apply-form input:focus, .apply-form textarea:focus {
    border-color: #FF6600;
}

/* career page start */

.career-content-area {
    padding: 50px 0 50px;
}
.career-content-area h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.career-content-area p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    text-transform: capitalize;
    color: #666666;
}
.career-top-content {
    margin-bottom: 60px;
}
.career-apply-btn {
    padding-top: 50px;
}
.career-apply-btn a {
    padding: 15px 50px;
}

/* contact us page  */
.contact-form-part {
    padding: 120px 0;
    background: #FDFAFA;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero{
    background-image: url(/static/images/about-us/about-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 640px;
    padding-top: 160px;
    
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background:  rgba(#578FE9, #578FE9, #578FE9, 0.5); */
  z-index: -1; /* 确保在文字后面 */
  backdrop-filter: blur(10px);
}

.get-in-touch-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #101828;
    letter-spacing: -0.72px;
    margin-bottom: 20px;
}

.get-in-touch-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
    margin-bottom: 0;
}

.get-in-touch-text p a {
    color: #333333;
    font-weight: 400;
    text-decoration: underline;
}

.social-link p {
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 15px;
}

.social-link li {
    display: inline-block;
    padding-left: 27px;
}

.social-link li a {
    height: 48px;
    width: 48px;
    display: block;
    color: #646464;
    font-size: 24px;
    border: 1px solid;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
}

.social-link li:first-child {
    padding-left: 0;
}

.social-link li a:hover {
    background: #000;
    color: #fff;
}

.get-in-touch-text .get-first {
    margin-bottom: 23px;
}

.get-in-touch-text .get-secound {
    margin-bottom: 18px;
}

.get-in-touch-text .get-third {
    margin-bottom: 25px;
}

.call-and-email {
    margin-bottom: 20px;
}

.qustion-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 21px;
}

.schadul-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 21px;
    padding: 12px 14px;
    border: 1px solid #A1A1A1;
    border-radius: 10px;
}

.schdul-icon {
    height: 38px;
    width: 38px;
    background: #E6E6E6;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
}

.schdul-icon svg {
    height: 22px;
    width: 22px;
}

.schdul-text span {
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing:  0.28px;
    display: inline-block;
    margin-bottom: 4px;
}

.schdul-text p {
    font-size: 14px;
    font-weight: 400;
    color: #7B7B7B;
    line-height: 150%;
    letter-spacing: 0.28px;
    margin-bottom: 0;
}
.apply-form.contact-form input {
    background: transparent;
}

.apply-form.contact-form {
    padding: 0;
    padding-left: 50px;
    background: none;
}

.question-area {
    padding-left: 50px;
}

.question-area h6 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #344054;
    padding-top: 30px;
    padding-bottom: 8px;
}

.schadul-call.schadul-color-change {
    background: #434343;
    color: #fff;
}

.schadul-call.schadul-color-change p {
    color: #fff;
}

.schadul-call.schadul-color-change .schdul-icon svg {
    color: #515151;
}

.apply-form.contact-form.apply-form textarea {
    height: 170px;
    background: #fff;
}
/* services v2 page start */
.email-management {
    padding: 20% 0;
}

.email-management2-img {
    padding-top: 20%;
}

.email-management2-content {
    padding-top: 20%;
}

.servicesv2-item {
    background: #FDFAFA;
    padding: 120px 0;
}

.servicesv2-bottom-content {
    background: #FDFAFA;
    padding-bottom: 0px;
}
.servicesv2-bottom-content h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
}

.servicesv2-bottom-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    text-transform: capitalize;
    margin-bottom: 18px;
    color: #646464;
}

.bottom-a {
    color: rgba(255, 255, 255, 0.6);
    cursor:pointer;
}
.bottom-a:hover {
    color: #ffffff;
}



/* index */
.index-banner-btn {
    width: 150px;
    height: 42px;
    line-height: 42px;
}

/* 表单 */
.w3l-hotair-form input,textarea{
    outline: none;
    margin-bottom: 1.5em;
    font-size: 16px;
    color: #222;
    text-align: left;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    outline: none;
    border: 1px solid #EEEFF2;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    border-radius: 8px;
}
.w3l-hotair-form input:focus,textarea:focus {
    border: 1px solid #FF6600;
}
.w3l-hotair-form textarea {
    font-size: 14px !important;
}

.w3l-hotair-form .button {
    font-size: 18px;
    color: #fff;
    width: 100%;
    padding: 14px 15px;
    font-weight: 700;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    border-radius: 10px;
    opacity: 1;
    /* 主色调-渐变色 */
    background: linear-gradient(97deg, #F87535 0%, #FF5300 100%);
    box-sizing: border-box;
    border: 1px solid;
    border-image: linear-gradient(180deg, #FFFFFF 0%, rgba(250, 250, 250, 0) 100%) 1;
    box-shadow: 0px 0px 10px 0px rgba(255, 102, 0, 0.3);
}

.about-form {
    background: url('/static/img/服务保障背景.webp') no-repeat;background-size: cover;height: 900px;
}
.about-wrap {
    width: 40%;min-width: 740px;min-height: 670px;
}

/* 侧边栏 */

#sidebar {
    position: fixed;
    right: 0;
    min-width: 40px;
    max-width: 70px;
    bottom: 60%;
    right: 40px;
    transform: translate(0,100%);
    z-index: 999;
  }

  #sidebar .sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    cursor: pointer;
    background-color: #fff;
    text-align: center;
  }

  #sidebar .sidebar-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 0.25em;
  }

  #sidebar .sidebar-item span {
    color: #333333;
    font-size: 13px;
  }

  #sidebar .first-sidebar {
    background-color: #FF6600;
    border-radius: 6px;
    margin-bottom: 0.5em;
  }
  #sidebar .first-sidebar span {
    writing-mode: vertical-rl;
    color: #ffffff;
    letter-spacing: 0.5em;
    font-size: 18px;
    font-weight: normal;
  }
  #sidebar .sidebar-phone-box:hover .sidebar-phone {
    display: block;
  }
  #sidebar .sidebar-qrcode-box:hover .sidebar-qrcode {
    display: block;
  }
  #sidebar .sidebar-phone,.sidebar-qrcode {
    color: #333333;font-size: 16px;right: 120%;
    text-wrap: nowrap;
    background: #ffffff;
    width: max-content;
    padding: 10px;
    border-radius: 10px;
    display: none;
  }

  #sidebar .center-sidebar .sidebar-item {
    border-bottom: 2px solid #dddddd ;
  }

  #sidebar .last-sidebar {
    margin-top: 1em;
    background-color: #fff;
  }
  .bg-orange-shadow {
    border-radius: 6px;
    box-shadow: 0px 4px 10px 0px rgba(255, 102, 0, 0.2);
  }
  .back-to-top {
    visibility: hidden;
    cursor: pointer;
    transition: display 0.3s;
    display: none;
  }

  .back-to-top:hover {
    background-color: #ccc;
  }

  .show-back-to-top {
    visibility: visible;
    display: flex;
  }
  .affim-iframe {
    position: absolute;
    right: 140px;
    top: 0;
    transform: translate(0,-50%);
    width: 1000px;
    height: 837.5px;
  }