@media screen and (min-width: 960px) {
  .wrapper {
    padding: 0 30px;
    margin: 0 auto;
    box-sizing: border-box;
    transition: width 0.3s ease-in-out;
    flex: 1;
  }
  .font30 {
    max-width: 100% !important;
  }
  .site-header {
    padding: 20px 50px;
  }
  .site-header .logo {
    font-size: 10px;
  }
  .site-header .menu-wrap {
    position: relative;
    flex: 1;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .site-header .menu-wrap .menu-expand-btn {
    display: none;
  }
  .site-header .menu-wrap .menu {
    display: flex;
  }
  .site-header .menu-wrap .menu li {
    padding: 0 18px;
    white-space: nowrap;
  }
  .site-header .menu-wrap .menu a {
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s linear;
  }
  .site-header .menu-wrap .menu em,
  .site-header .menu-wrap .menu a:hover {
    color: #000;
  }
  .site-header .menu-wrap .btn {
    position: absolute;
    right: 0;
    width: 119px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border-radius: 200px;
    background: #000;
    border: 1px solid #000;
    backdrop-filter: blur(5px) brightness(0.8);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .menu-wrap .btn:hover {
    transform: scale(1.1);
  }
  .site-header .menu-wrap .btn:after {
    margin-left: 13px;
    content: "\e787";
    font-family: "iconfont";
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 9px;
    display: block;
    background-color: #fff;
    border-radius: 11px;
    color: #000;
  }
  .home-banner {
    height: auto;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    max-height: calc(100vh - 150px);
  }
  .home-banner .visible .desc {
    top: 50%;
    opacity: 1;
    transform: translate(0, -50%);
  }
  .home-banner .desc {
    top: 50%;
    opacity: 1;
    transform: translate(0, -50%);
  }
  .home-banner .desc h2 {
    max-width: 40vw;
    font-size: 60px;
  }
  .home-banner .desc p {
    margin: 24px 0 48px;
    font-size: 32px;
  }
  .home-banner .desc .btn {
    padding: 6px 35px 6px 6px;
    font-size: 16px;
    line-height: 48px;
    transition: transform 0.3s ease-in-out;
  }
  .home-banner .desc .btn:hover {
    transform: scale(1.1);
  }
  .home-banner .desc .btn:before {
    margin-right: 22px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 12px;
  }
  .home-banner .desc .tips {
    font-size: 14px;
  }
  .team-building {
    position: fixed;
    bottom: 8px;
    left: 50%;
    width: 864px;
    height: 84px;
    padding: 0 15px;
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px) brightness(0.9);
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 11;
  }
  .team-building .teams-intro {
    flex: 1;
    height: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
  }
  .team-building .teams-intro .caption {
    margin: 0 28px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .team-building .teams-intro .caption > em {
    display: block;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
  }
  .team-building .teams-intro .member-list {
    display: flex;
    flex: 1;
  }
  .team-building .teams-intro .member-list > li {
    display: flex;
    align-items: center;
    flex: 1;
    cursor: pointer;
  }
  .team-building .teams-intro .member-list figure {
    margin-right: 8px;
    width: 46px;
    height: 46px;
    border-radius: 32px;
    overflow: hidden;
  }
  .team-building .teams-intro .member-list figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-building .teams-intro .member-list .name {
    font-size: 16px;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .team-building .teams-intro .member-list .title {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
  }
  .team-building .btn {
    margin-left: 10px;
    width: 150px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background-color: #000;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .team-building .btn:after {
    margin-left: 10px;
    font-size: 16px;
    content: "\e610";
    font-family: "iconfont";
  }
  .module {
    padding: 100px 20px;
    box-sizing: border-box;
  }
  .module.sticky {
    position: sticky;
    top: 40px;
    padding: 0;
    width: 384px;
    align-self: flex-start;
  }
  .module > .wrapper > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .module > .wrapper > header h1 {
    font-size: 60px;
  }
  .module > .wrapper > header h2 {
    font-size: 60px;
    max-width: 80%;
  }
  .module > .wrapper > header .desc {
    max-width: 40%;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.5);
  }
  .module > .wrapper > header .desc h3 {
    margin: 10px 0;
    font-size: 32px;
    color: #000;
  }
  .serice-scope-list > li {
    margin-top: 30px;
    padding: 20px;
    box-sizing: border-box;
    width: 25%;
    transition: all 0.3s linear;
    border-radius: 24px;
  }
  .serice-scope-list > li:hover {
    cursor: pointer;
    background: #FAFAFA;
    justify-content: left;
  }
  .serice-scope-list > li:hover .icon {
    font-size: 50px;
    padding-bottom: 0;
    justify-content: left;
  }
  .serice-scope-list > li:hover .figcaption {
    font-size: 14px;
    text-align: left;
  }
  .serice-scope-list > li:hover .desc {
    flex: 1;
    height: 50%;
    max-height: 500px;
    opacity: 1;
    align-items: baseline;
    transform: translate(0, 0);
  }
  .serice-scope-list > li:nth-of-type(1):hover .icon {
    transform: translateX(-10px);
  }
  .serice-scope-list > li:nth-of-type(2):hover .icon {
    transform: translateX(10px);
  }
  .serice-scope-list > li:nth-of-type(3):hover .icon {
    transform: translateX(0);
  }
  .serice-scope-list > li:nth-of-type(6):hover .icon {
    transform: translateX(0);
  }
  .serice-scope-list > li:nth-of-type(7):hover .icon {
    transform: translateX(-10px);
  }
  .serice-scope-list > li:nth-of-type(8):hover .icon {
    transform: translateX(-30px);
  }
  .serice-scope-list > li .content {
    flex: 1;
    flex-shrink: 0;
  }
  .serice-scope-list > li .icon {
    padding: 20px;
    font-size: 100px;
    transition: all 0.3s linear;
  }
  .serice-scope-list > li .figcaption {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }
  .serice-scope-list > li .desc {
    padding: 0 20px 20px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translate(0, 100%);
    transition: all 0.3s linear;
  }
  .cases-wrap {
    margin: 0;
  }
  .cases-list {
    padding: 90px 0 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cases-list > li {
    position: relative;
    margin: 0 0 40px 0;
    width: 50%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .cases-list > li:nth-of-type(odd) {
    padding-right: 20px;
  }
  .cases-list > li:nth-of-type(even) {
    padding-left: 20px;
  }
  .cases-list > li:nth-of-type(7) {
    padding: 0;
    width: 100%;
  }
  .cases-list > li:nth-of-type(8) {
    padding-left: 0;
    padding-right: 20px;
  }
  .cases-list > li:nth-of-type(9) {
    padding-right: 0;
    padding-left: 20px;
  }
  .cases-list > li img {
    max-width: 100%;
    display: block;
  }
  .cases-list > li > a {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
  }
  .cases-list > li > a img {
    transition: transform 0.3s ease-in-out;
  }
  .cases-list > li > a:hover > .content {
    transform: translate(0, 0);
  }
  .cases-list > li > a:hover img {
    transform: scale(1.1);
  }
  .cases-list > li > a > .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    transform: translate(0, 120%);
    transition: transform 0.3s ease-in-out;
  }
  .cases-list > li > a > .content .musk {
    max-width: 900px;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px) brightness(0.8);
  }
  .cases-list > li > a > .content .info {
    padding: 10px 20px 40px;
    display: block;
  }
  .cases-list > li > a > .content .info .title {
    font-size: 28px;
  }
  .cases-list > li > a > .content .info .desc {
    margin-top: 10px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.6);
  }
  .cases-list > li > a > .content .author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
  }
  .cases-list > li > a > .content .author .author-info {
    display: flex;
    align-items: center;
  }
  .cases-list > li > a > .content .author .avatar {
    margin-right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    overflow: hidden;
    border: 1px solid #fff;
  }
  .cases-list > li > a > .content .author .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cases-list > li > a > .content .author .name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
  }
  .cases-list > li > a > .content .author .total {
    font-size: 16px;
  }
  .cases-list > li .category {
    padding: 40px;
    margin-top: 40px;
    height: 100%;
    color: #fff;
    flex: 1;
    flex-shrink: 0;
    background: #364AFF;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    overflow: visible;
  }
  .cases-list > li .category > a {
    padding: 2% 5%;
    margin: 10px 5px;
    color: #fff;
    font-size: 16px;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .cases-list > li .category > a:hover {
    transform: translate(0, -10%) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
  }
  .view-more {
    padding: 0;
    font-size: 20px;
    height: 64px;
    line-height: 64px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .view-more:hover {
    transform: translate(0, -5%) scale(1.02);
    background-color: rgba(0, 0, 0, 0.16);
  }
  .top-tier {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .top-tier .text-info {
    padding-right: 5%;
    box-sizing: border-box;
  }
  .top-tier .text-info > h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
  }
  .top-tier .text-info > .subtitle {
    margin: 20px 0 10px;
    font-size: 20px;
  }
  .top-tier .text-info .desc {
    margin: 0;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
  }
  .top-tier .text-info .features {
    padding: 5px 0 0;
  }
  .top-tier .text-info .features > li {
    margin-top: 40px;
    display: flex;
  }
  .top-tier .text-info .features > li::before {
    margin-right: 25px;
    width: 80px;
    height: 80px;
    font-size: 28px;
    text-align: center;
    line-height: 80px;
    border-radius: 28px;
    background: rgba(54, 74, 255, 0.06);
    flex-shrink: 0;
    color: #364AFF;
  }
  .top-tier .text-info .features > li .title {
    margin-bottom: 5px;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .top-tier .text-info .features > li .desc > p {
    color: rgba(0, 0, 0, 0.5);
    text-align: justify;
  }
  .top-tier .human {
    padding: 40px 40px 0;
    width: 438px;
    height: 503px;
    flex-shrink: 0;
    border-radius: 40px;
    color: #fff;
    box-sizing: border-box;
    background: radial-gradient(117.46% 101.07% at 80.25% 20.08%, #000000 40%, #364AFF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  }
  .top-tier .human .content {
    width: 100%;
    height: 100%;
    background: url("//s1.uxabc.com/static/uxabc/images/human.png") no-repeat 50% 100%;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .top-tier .human .content .name {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
  }
  .top-tier .human .content .desc {
    width: 80%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    color: rgba(255, 255, 255, 0.5);
  }
  .top-tier .human .content .buttons {
    padding-bottom: 40px;
    display: flex;
    justify-content: end;
  }
  .top-tier .human .content .buttons .btn {
    padding: 0 33px 0 14px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px) brightness(0.8);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
  }
  .top-tier .human .content .buttons .btn:hover {
    transform: scale(1.1);
  }
  .top-tier .human .content .buttons .btn:before {
    margin-right: 30px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    border-radius: 16px;
    color: #000;
    background-color: #fff;
  }
  .trusted .wrapper > header {
    display: none;
  }
  .brands-logo {
    padding: 0;
  }
  .brands-logo > li {
    padding: 24px 10px;
    width: 8.3%;
  }
  .setp-wrap {
    overflow: hidden;
  }
  .setp-wrap .setp-list {
    padding: 70px 0 0;
  }
  .setp-wrap .setp-list > li {
    margin: 0;
    padding-right: 45px;
    width: 33.3%;
    box-sizing: border-box;
  }
  .setp-wrap .setp-list > li:last-of-type {
    width: 33.4%;
    padding-right: 0;
  }
  .setp-wrap .setp-list > li > header em {
    font-size: 80px;
  }
  .setp-wrap .setp-list > li .content .title {
    font-size: 20px;
  }
  .setp-wrap .setp-list > li .content .desc {
    font-size: 14px;
  }
  .setp-wrap .setp-list > li .content:after {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
  .setp-wrap .setp-list > li .btn {
    margin-top: -20px;
    padding: 0 0 0 28px;
    height: 86px;
    border-radius: 200px;
    line-height: 86px;
    font-size: 20px;
  }
  .recommend {
    padding: 77px 20px;
    overflow: hidden;
  }
  .recommend .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recommend .header {
    padding-right: 60px;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .recommend .header .title {
    font-size: 32px;
  }
  .recommend .header p {
    font-size: 14px;
    white-space: nowrap;
  }
  .recommend .content {
    flex: 1;
    justify-content: space-evenly;
  }
  .recommend .content > .check {
    padding: 20px;
    margin-right: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px) brightness(0.8);
    display: flex;
    color: #fff;
    flex: 1;
    font-size: 14px;
    line-height: 1.58;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .recommend .content > .check figure {
    margin-right: 15px;
    padding: 15px;
    width: 98px;
    height: 98px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.24);
    border-radius: 15px;
    flex-shrink: 0;
  }
  .recommend .content > .check figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .recommend .content .rows {
    position: static;
    display: flex;
    width: auto;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
  }
  .recommend .content .rows > .check {
    padding: 0 22px;
    height: 65px;
    display: flex;
    font-size: 14px;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .recommend .content .rows > .check:before {
    margin-right: 20px;
    font-size: 20px;
  }
  .shares-list {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .shares-list > li {
    margin-top: 50px;
    width: 32%;
  }
  .shares-list > li:nth-of-type(3n-1) {
    margin-left: 26px;
    margin-right: 26px;
  }
  .shares-list > li a {
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
  }
  .shares-list > li a img {
    transition: transform 0.3s ease-in-out;
  }
  .shares-list > li a:hover img {
    transform: scale(1.1);
  }
  .shares-list > li .figcaption {
    padding: 20px 0 0;
  }
  .shares-list > li .figcaption .title {
    font-size: 20px;
  }
  .shares-list > li .figcaption .sub-title {
    margin: 6px 0;
    font-size: 16px;
  }
  .shares-list > li .figcaption .author {
    margin: 0;
    font-size: 18px;
  }
  .client-reviews-wrap .client-reviews-list {
    padding: 100px 0 20px;
  }
  .client-reviews-wrap .client-reviews-list > li {
    width: 500px;
    padding-right: 50px;
  }
  .client-reviews-wrap .client-reviews-list > li:nth-of-type(n+2) {
    padding-left: 100px;
  }
  .client-reviews-wrap .client-reviews-list > li .content {
    padding: 20px 0 0 20px;
  }
  .client-reviews-wrap .client-reviews-list > li .content .title {
    font-size: 32px;
  }
  .client-reviews-wrap .client-reviews-list > li .content .title::before {
    font-size: 20px;
    left: -20px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  .client-reviews-wrap .client-reviews-list > li .content .desc {
    margin: 23px 0 56px;
    font-size: 16px;
  }
  .client-reviews-wrap .client-reviews-list > li .author {
    font-size: 16px;
  }
  .client-reviews-wrap .client-reviews-list > li .author .avatar {
    margin-right: 20px;
    width: 60px;
    height: 60px;
  }
  .client-reviews-wrap .client-reviews-list > li .author .title {
    font-size: 14px;
  }
  .client-reviews-wrap .client-reviews-list > li .author .give-me-five {
    bottom: 20px;
    font-size: 14px;
    line-height: 24px;
  }
  .started {
    padding: 130px 30px 190px;
    background-size: 751px 411px;
  }
  .started .content {
    width: 632px;
    font-size: 60px;
  }
  .started .btn {
    margin-top: 70px;
    padding: 18px 16px 18px 96px;
    text-align: center;
    font-size: 20px;
    border-radius: 40px;
    line-height: 34px;
  }
  .started .btn:after {
    margin-left: 48px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 12px;
  }
  .site-footer {
    padding: 0;
    font-size: 14px;
  }
  .site-footer .wrapper > div {
    display: flex;
    justify-content: space-between;
  }
  .site-footer .content {
    padding: 5% 0;
    flex-shrink: 0;
  }
  .site-footer .content .contact > h3 {
    font-size: 28px;
  }
  .site-footer .content .contact > p {
    margin: 5px 0 22px;
    font-size: 18px;
    color: #8A8D9A;
  }
  .site-footer .content .contact .whatsapp {
    padding: 0 15px 0 11px;
    background-color: #000;
    line-height: 34px;
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
    border-radius: 17px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
  }
  .site-footer .content .contact .whatsapp:hover {
    transform: scale(1.1);
  }
  .site-footer .content .contact .whatsapp:before {
    font-size: 20px;
    margin-right: 10px;
    content: "\ec2d";
    font-family: "iconfont";
    vertical-align: top;
  }
  .site-footer .content .contact .mail {
    margin-top: 16px;
    font-size: 18px;
  }
  .site-footer .content .contact .mail > a {
    color: #000;
  }
  .site-footer .content .middle-message {
    padding: 0 0 0 10%;
    flex: 1;
    box-sizing: border-box;
  }
  .site-footer .content .menus {
    display: flex;
    flex-direction: column;
    line-height: 2;
    font-size: 14px;
  }
  .site-footer .content .menus > a {
    margin-bottom: 0;
    color: #333;
  }
  .site-footer .content .categories {
    display: flex;
    flex-wrap: wrap;
    width: 420px;
    justify-content: space-between;
  }
  .site-footer .content .categories > a {
    margin: 0 0 8px 8px;
    padding: 0 27px;
    color: #333;
    font-size: 16px;
    line-height: 40px;
    border-radius: 40px;
    box-sizing: border-box;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.18);
  }
  .site-footer .content .categories > a:nth-of-type(even) {
    flex: 1;
    text-align: center;
  }
  .site-footer .copyright {
    padding: 30px 0;
    font-size: 14px;
  }
  .site-footer .copyright .links {
    font-size: 0;
  }
  .site-footer .copyright .links > a {
    display: inline;
    font-size: 14px;
    margin-left: 20px;
    color: #000;
  }
  .dark .site-header .menu-wrap .menu a {
    color: rgba(255, 255, 255, 0.5);
  }
  .dark .site-header .menu-wrap .menu em,
  .dark .site-header .menu-wrap .menu a:hover {
    color: #fff;
  }
  .dark .site-header .menu-wrap .btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .banner {
    min-height: 500px;
    background-size: contain !important;
    background-position: 90% 50% !important;
  }
  .banner .article-swiper-wrap {
    position: relative;
  }
  .banner .article-swiper-wrap .change-buttons {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0, -200%);
  }
  .banner .article-swiper-wrap .swiper-container {
    width: 100%;
    overflow: hidden;
  }
  .banner .article-swiper-wrap .swiper-container .swiper-wrapper {
    padding-bottom: 50px;
  }
  .banner .article-swiper-wrap .swiper-container .swiper-wrapper > a {
    margin-right: 0;
    width: 593px;
    height: 393px;
    border-radius: 20px;
  }
  .banner .article-swiper-wrap .swiper-container .swiper-wrapper > a img {
    transition: transform 0.3s ease-in-out;
  }
  .banner .article-swiper-wrap .swiper-container .swiper-wrapper > a:hover img {
    transform: scale(1.1);
  }
  .banner .content {
    max-width: 60%;
    padding: 60px 0;
  }
  .banner .title {
    padding-right: 10%;
    font-size: 60px;
    line-height: 1.1;
  }
  .banner .desc {
    max-width: 50%;
    margin-top: 40px;
    font-size: 16px;
  }
  .remote-steps {
    display: flex;
  }
  .remote-steps > li {
    padding-right: 20px;
    margin: 0 1%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
    overflow: hidden;
  }
  .remote-steps > li:nth-of-type(2) {
    margin: 0 15px;
  }
  .remote-steps > li figure {
    margin-bottom: 40px;
    position: static;
    display: block;
    width: 160px;
    height: 160px;
  }
  .remote-steps > li .title {
    font-size: 40px;
  }
  .remote-steps > li .desc {
    margin: 30px 0;
    font-size: 14px;
  }
  .connection {
    min-height: 400px;
  }
  .connection .detail-box {
    padding: 20px;
    margin-top: 100px;
    border-radius: 20px;
  }
  .connection .detail-box .header {
    font-size: 16px;
    padding-right: 10%;
  }
  .connection .detail-box .header .avatars > figure {
    width: 50px;
    height: 50px;
  }
  .connection .detail-box .footer .caption {
    font-size: 20px;
  }
  .connection .detail-box .footer .content {
    font-size: 16px;
  }
  .connection .detail-box .footer a {
    font-size: 16px;
    border-radius: 20px;
  }
  .source-list > li {
    margin-top: 60px;
    width: 33.3%;
    padding-right: 10%;
    box-sizing: border-box;
  }
  .source-list > li:nth-of-type(3n-1) {
    width: 33.4%;
  }
  .source-list > li .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    font-size: 50px;
  }
  .source-list > li .title {
    font-size: 24px;
  }
  .source-list > li .desc {
    font-size: 13px;
  }
  .analysis {
    min-height: auto;
  }
  .analysis ul > li {
    width: 33.3%;
    align-items: center;
    padding-right: 5%;
    box-sizing: border-box;
  }
  .analysis ul > li:nth-of-type(3) {
    margin: 0;
    width: 33.4%;
  }
  .analysis ul > li .total {
    font-size: 68px;
  }
  .analysis ul > li .desc {
    margin-left: 20px;
    font-size: 13px;
  }
  .dealer-flex {
    padding-top: 50px;
    display: flex;
    align-items: center;
  }
  .dealer-flex > .dealer-box {
    margin-top: 0;
    padding: 12px;
    flex: 1;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .dealer-flex > .dealer-box:nth-of-type(2) {
    margin: 0 15px;
  }
  .dealer-flex > .dealer-box > header {
    padding: 24px;
  }
  .dealer-flex > .dealer-box > header h3 {
    font-size: 50px;
  }
  .dealer-flex > .dealer-box > header .sub {
    font-size: 24px;
  }
  .dealer-flex > .dealer-box > header .price {
    font-size: 36px;
  }
  .dealer-flex > .dealer-box > header .price::after {
    margin-left: 10px;
    width: 36px;
    height: 36px;
  }
  .dealer-flex > .dealer-box .detail {
    padding: 25px;
  }
  .dealer-flex > .dealer-box .detail .crash {
    margin-bottom: 10px;
  }
  .dealer-flex > .dealer-box .detail .crash .desc {
    font-size: 16px;
  }
  .dealer-flex > .dealer-box .detail .crash figure {
    margin-top: 10px;
    width: 220px;
  }
  .dealer-flex > .dealer-box .detail .content-box {
    margin-bottom: 10px;
  }
  .dealer-flex > .dealer-box .detail .content-box .caption {
    font-size: 24px;
  }
  .dealer-flex > .dealer-box .detail .content-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 20px;
  }
  .check-list li {
    font-size: 16px;
    line-height: 32px;
  }
  .check-list li::before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    margin-right: 10px;
  }
  .faq-list-flex-wrap {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    border-radius: 24px;
  }
  .faq-list {
    width: 47%;
  }
  .faq-list > li {
    position: relative;
    box-sizing: border-box;
    border: 0 none;
  }
  .faq-list > li:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  }
  .faq-list > li .question {
    font-size: 16px;
  }
  .faq-list > li .question::after {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
  .faq-list > li .answer {
    font-size: 14px;
    padding-right: 80px;
  }
  .card-list {
    display: flex;
    overflow: hidden;
  }
  .card-list .card {
    flex: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
  }
  .card-list .card:nth-of-type(n+2) {
    margin-left: 15px;
  }
  .card-list .card > header {
    padding: 20px 0;
  }
  .card-list .card > header h3 {
    font-size: 50px;
  }
  .card-list .card > header .desc {
    margin: 30px 0 0;
    font-size: 16px;
  }
  .card-list .card > header h4 {
    font-size: 24px;
    line-height: 1.2;
  }
  .card-list .card > header h4 em {
    font-size: 16px;
  }
  .card-list .card > header.group .avatar {
    width: 80px;
    height: 80px;
  }
  .card-list .card > header.group .avatar:after {
    height: 23px;
    line-height: 23px;
    font-size: 10px;
  }
  .card-list .card .caption {
    margin: 16px 0;
    font-size: 24px;
  }
  .card-list .card .price-intro {
    flex: 1;
    margin: 20px 0;
    font-size: 20px;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
  }
  .card-list .card .price-intro .price em {
    font-size: 40px;
  }
  .card-list .card .button {
    padding: 15px 0;
    font-size: 16px;
  }
  .card-list .card > footer {
    margin-top: 40px;
    line-height: 40px;
    justify-content: start;
  }
  .card-list .card > footer > a {
    margin-right: 20px;
    font-size: 14px;
  }
  .card-list .card > footer > a::before {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
  }
  .table {
    position: relative;
  }
  .table .thead {
    right: 0;
    top: 150px;
    width: 60%;
    padding: 6px 3px;
    transform: translate(530px, -100%);
    border-radius: 20px;
  }
  .table .thead span {
    margin: 0 3px;
    padding: 0;
    font-size: 20px;
    line-height: 58px;
    text-align: center;
    border-radius: 4px;
  }
  .table .thead span:first-of-type {
    border-radius: 16px 4px 4px 16px;
  }
  .table .thead span:last-of-type {
    border-radius: 4px 16px 16px 4px;
  }
  .table .summary {
    font-size: 24px;
    text-align: left;
    padding: 30px 0;
  }
  .table .tbody > li {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .table .tbody > li > header {
    font-size: 16px;
  }
  .table .tbody > li .check-list {
    padding: 30px 0;
    width: 60%;
  }
  .tabs-wrap .tabs-list {
    padding-top: 80px;
  }
  .tabs-wrap .tabs-list > dl {
    padding: 30px 30px 16px;
    width: 322px;
  }
  .tabs-wrap .tabs-list > dl dt {
    font-size: 20px;
  }
  .tabs-wrap .tabs-list > dl dd {
    padding: 30px 0;
    font-size: 15px;
  }
  .tabs-wrap .tabs-list > dl dd::before {
    margin-right: 10px;
    font-size: 20px;
  }
  .keywords > li {
    font-size: 20px;
  }
  .keywords > li::before {
    width: 4px;
    height: 5px;
    margin-right: 6px;
  }
  .team-info {
    margin: 0;
    font-size: 20px;
  }
  .team-info .avatars {
    margin-right: 10px;
  }
  .team-info .avatars > figure {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .team-info .avatars > figure:nth-of-type(n+2) {
    margin-left: -25px;
  }
  .project-list > li {
    margin-bottom: 140px;
    display: flex;
  }
  .project-list > li:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .project-list > li:nth-of-type(odd) .figure {
    margin: 0 0 0 5%;
  }
  .project-list > li > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .project-list > li .figure {
    margin: 0 5% 0 0;
    width: 655px;
    height: 455px;
    border-radius: 30px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .project-list > li .figure img {
    transition: transform 0.3s ease-in-out;
  }
  .project-list > li .figure:hover img {
    transform: scale(1.1);
  }
  .project-list > li .title {
    margin: 0;
    font-size: 46px;
  }
  .project-list > li .desc {
    margin: 0;
    padding: 30px 0 0;
    font-size: 20px;
  }
  .mission {
    width: 50%;
    padding: 45px 0;
  }
  .mission .caption {
    font-size: 40px;
  }
  .mission .description {
    margin: 40px 0 0;
    padding: 20px;
    font-size: 20px;
  }
  .mission .description::after,
  .mission .description::before {
    font-size: 15px;
  }
  .mission > footer {
    font-size: 18px;
  }
  .mission > footer .avatar {
    margin-right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .mission > footer .info-title {
    font-size: 16px;
  }
  .gallery > li {
    margin-right: 20px;
    width: 46%;
  }
  .gallery > li .figcaption {
    margin-top: 20px;
    font-size: 20px;
  }
  .gallery > li:first-of-type .region {
    left: 20px;
    top: 20px;
    padding: 30px;
    border-radius: 20px;
    font-size: 40px;
  }
  .gallery > li:first-of-type .region::before {
    margin-right: 10px;
  }
  .values-list {
    display: flex;
    flex-wrap: wrap;
  }
  .values-list > li {
    margin: 40px 0;
    width: 50%;
    box-sizing: border-box;
  }
  .values-list > li:nth-of-type(odd) {
    padding-right: 10%;
  }
  .values-list > li:nth-of-type(even) {
    padding-left: 10%;
    border-left: 0.5px solid rgba(0, 0, 0, 0.1);
  }
  .values-list > li .icon {
    font-size: 50px;
  }
  .values-list > li .title {
    margin: 20px 0 10px;
    font-size: 40px;
  }
  .values-list > li .desc {
    font-size: 14px;
  }
  .culture li {
    margin-right: 20px;
    width: 80%;
  }
  .culture li figure {
    max-height: 666px;
    overflow: hidden;
    border-radius: 30px;
  }
  .culture li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .culture li .figcaption {
    margin-top: 10px;
    font-size: 20px;
  }
  .member-wrap .member-list {
    width: 5080px;
  }
  .member-wrap .member-list > li {
    margin-top: 60px;
    width: 560px;
  }
  .member-wrap .member-list > li .avatar {
    margin-right: 20px;
    width: 165px;
    height: 165px;
    border-radius: 50%;
  }
  .member-wrap .member-list > li .desc {
    font-size: 16px;
  }
  .contact-flexbox {
    padding: 50px 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .contact-flexbox .module {
    flex: 1;
    flex-shrink: 0;
  }
  .contact-flexbox .module > .wrapper > header h2 {
    font-size: 40px;
    max-width: 100%;
  }
  .contact-flexbox .module:first-of-type {
    transform: translate(-10%, 0%);
  }
  .contact-flexbox .module:first-of-type .card {
    padding-left: 15%;
  }
  .contact-flexbox .module:last-of-type {
    padding: 200px 0 200px 50px;
  }
  .form-list {
    padding-bottom: 50px;
  }
  .form-list li {
    margin-top: 24px;
    line-height: 1.5;
  }
  .form-list li label {
    font-size: 14px;
  }
  .form-list li input,
  .form-list li textarea {
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .submit {
    width: 232px;
    padding: 20px 0;
    font-size: 20px;
    border-radius: 30px;
    cursor: pointer;
  }
  .bingo {
    padding: 110px 0;
    width: 330px;
  }
  .bingo .icon::after,
  .bingo .icon::before {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    font-size: 20px;
  }
  .bingo h3 {
    font-size: 26px;
  }
  .bingo > p {
    font-size: 18px;
  }
  .detail-cover-img {
    display: block;
    position: relative;
    width: 100%;
  }
  .detail-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .detail-flexbox {
    position: relative;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
  }
  .detail-flexbox .module {
    padding: 20px;
    flex-shrink: 0;
  }
  .detail-flexbox .module.article {
    width: 720px;
    flex-shrink: 0;
  }
  .detail-flexbox .special {
    margin: 0;
    width: 60%;
    font-size: 24px;
  }
  .detail-flexbox .keywords {
    margin-bottom: 50px;
  }
  .case {
    padding: 0 20px !important;
  }
  .case .content {
    font-size: 20px;
    color: #000;
  }
  .case .content > p {
    margin-top: 20px;
  }
  .case .content h1 {
    font-size: 50px;
  }
  .article {
    position: relative;
    flex: 1;
  }
  .article .content {
    font-size: 18px;
    line-height: 32px;
  }
  .article .content > p {
    margin-top: 50px;
  }
  .article .content h1 {
    font-size: 50px;
  }
  .anchor-navs {
    position: sticky;
    top: 60px;
    align-self: flex-start;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    width: 254px;
    flex-shrink: 0;
  }
  .anchor-navs li {
    font-size: 16px;
  }
  .anchor-navs li > a {
    padding: 10px 30px;
  }
  .contact-box {
    width: 384px;
    border-radius: 30px;
    flex-shrink: 0;
  }
  .contact-box > figure {
    height: 240px;
  }
  .contact-box .content::after {
    font-size: 20px;
  }
  .contact-box .content > h3 {
    margin: 20px 0;
    font-size: 30px;
  }
  .contact-box .content p,
  .contact-box .content .link {
    font-size: 16px;
  }
  .contact-box .content .link {
    margin: 20px 0;
  }
  .waterfall > li {
    box-sizing: border-box;
  }
  .waterfall > li:nth-of-type(odd) {
    padding-right: 1.5%;
  }
  .waterfall > li:nth-of-type(even) {
    padding-left: 1.5%;
  }
  .waterfall > li:nth-of-type(1) {
    width: 55%;
  }
  .waterfall > li:nth-of-type(2) {
    width: 45%;
  }
  .waterfall > li:nth-of-type(3) {
    width: 40%;
  }
  .waterfall > li > .figcaption {
    padding: 0 20px;
  }
  .not-found {
    padding-bottom: 100px;
  }
  .not-found:before {
    height: 40vh;
  }
  .not-found h2 {
    margin: 50px 0;
    font-size: 40px;
  }
  .not-found p {
    font-size: 18px;
  }
  .change-buttons {
    display: flex;
    justify-content: center;
  }
  .change-buttons > div {
    margin: 0 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
    font-family: "iconfont";
    user-select: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .change-buttons > div:hover {
    color: #000;
    background-color: #fff;
  }
}
@media screen and (max-width: 1100px) {
  .site-header .menu-wrap .btn {
    display: none;
  }
}
