.home {
    position: relative;
    width: 100%;
}

.home .header .lines {
    width: 18px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.home .header .lines span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 600ms;
}

.home .header .lines span:nth-child(2) {
    top: 5px;
}

.home .header .lines span:nth-child(3) {
    top: 10px;
}

.home .right {
    position: fixed;
    right: 0;
    top: 0;
    width: 5%;
    z-index: 100;
    height: 100vh;
}

.home .right ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    border-left: 1px solid rgba(93, 90, 88, 0.2);
}

.home .right ul .oLine {
    display: inline-block;
    width: 1px;
    height: 15%;
    background-color: #5D5A58;
    position: absolute;
    left: -1px;
    top: 0;
    z-index: 100;
    transition: all 600ms;
}

.home .right ul li {
    height: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .right ul li .lines {
    width: 18px;
    height: 16px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}

.home .right ul li .lines span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 600ms;
}

.home .right ul li .lines span:nth-child(2) {
    top: 5px;
}

.home .right ul li .lines span:nth-child(3) {
    top: 10px;
}

.home .right ul li a {
    color: #333333;
    transition: all 600ms;
    opacity: 0.3;
    font-family: "Oswald-Regular";
}

.home .right ul #down {
    cursor: pointer;
    transition: all 600ms;
}

.home .right ul #down img {
    width: 18px;
    opacity: 0.3;
}

.home .right ul .active a {
    opacity: 1;
}

.home .header {
    position: fixed;
    left: 0;
    z-index: 10;
    width: 92%;
    padding: 50px 4%;
    transition: all 600ms;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.home .header a {
    position: relative;
    display: inline-block;
}

.home .header a i {
    color: white;
    font-size: 39px;
    transition: all 600ms;
    display: inline-block;
}

.home .header a img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* opacity: 0; */
    filter: grayscale(1) brightness(1000000);
}

.home .hasBg {
    padding: 20px 4%;
}

.home .hasBg .lines span {
    background-color: #000000;
}

.home .hasBg a i {
    opacity: 0;
}

.home .hasBg a img {
    opacity: 1;
    filter: unset;
}

.home .section {
    width: 100%;
    height: 100vh;
}

.home .section .banner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.home .section .banner .swiper-container {
    width: 100%;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item video {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    object-fit: cover;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 12s;
    height: 100%;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item img:nth-child(2) {
    display: none;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 100;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text {
    position: absolute;
    left: 15%;
    top: 40%;
    width: 70%;
    z-index: 101;
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text .t1 {
    color: white;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "Oswald-Regular";
    transition: all 1s;
    opacity: 0;
    transform: translateY(40px);
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text .t2 {
    color: white;
    font-size: 32px;
    margin-top: 10px;
    transition: all 1s;
    transition-delay: 200ms;
    opacity: 0;
    transform: translateY(80px);
}

.home .section .banner .swiper-container .swiper-wrapper .swiper-slide-active .item .text .t1, .home .section .banner .swiper-container .swiper-wrapper .swiper-slide-active .item .text .t2 {
    opacity: 1;
    transition-delay: 1s;
    transform: translateY(0);
}

.home .section .banner .dots2 {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    z-index: 100;
    cursor: pointer;
}

.home .section .banner .dots2 div {
    width: 10px;
    height: 10px;
    top: -5px;
    margin-left: -5px;
    transform: translateZ(0) scale(0);
    animation: square 4s linear infinite;
    background: #fff;
    display: block;
    position: absolute;
    left: 50%;
}

.home .section .banner .dots2 div:first-child {
    animation-delay: 0.8s;
}

.home .section .banner .dots2 div:nth-child(2) {
    animation-delay: 1.6s;
}

.home .section .banner .dots2 div:nth-child(3) {
    animation-delay: 2.4s;
}

.home .section .banner .dots2 div:nth-child(4) {
    animation-delay: 3.2s;
}

@keyframes square {
    0% {
        transform: translateZ(0) scale(0);
    }
    30% {
        transform: translate3d(0, 15px, 0) scale(0.35);
    }
    50% {
        transform: translate3d(0, 30px, 0) scale(1);
    }
    70% {
        transform: translate3d(0, 45px, 0) scale(0.35);
    }
    100% {
        transform: translate3d(0, 60px, 0) scale(0);
    }
}

.header .hasBg a img {
    filter: unset;
}

.home .section .banner .prev {
    position: absolute;
    left: 15%;
    bottom: 10%;
    z-index: 100;
    cursor: pointer;
    transform: scale(1.5);
}

.home .section .banner .prev a {
    color: white;
}

.home .section .banner .prev a .base-cta-text__arrow {
    transform: rotateY(180deg);
}

.home .section .banner .prev a .base-cta-text__label {
    color: white;
}

.home .section .banner .next {
    position: absolute;
    left: 21%;
    bottom: 10%;
    z-index: 100;
    cursor: pointer;
    transform: scale(1.5);
}

.home .section .banner .next a {
    color: white;
}

.home .section .banner .next a .base-cta-text__label {
    color: white;
}

.home .section .brand {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .brand .content {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70vh;
    justify-content: space-between;
}

.home .section .brand .content .l {
    width: 45%;
}

.home .section .brand .content .l .t1 {
    position: relative;
}

.home .section .brand .content .l .t1 p:nth-child(1) {
    color: #F5F5F6;
    font-size: 80px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}

.home .section .brand .content .l .t1 p:nth-child(2) {
    color: #333333;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.home .section .brand .content .l .des {
    color: #999999;
    line-height: 32px;
    margin: 50px 0;
}

.home .section .brand .content .l .more {
    width: 100%;
}

.home .section .brand .content .l .more a {
    color: black;
}

.home .section .brand .content .l .play {
    display: inline-block;
    margin-top: 50px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.home .section .brand .content .l .play img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 600ms;
}

.home .section .brand .content .l .play .dj {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.home .section .brand .content .l .play .dj i {
    color: white;
    font-size: 44px;
}

.home .section .brand .content .l .play:hover img {
    transform: scale(1.02);
}

.home .section .brand .content .r {
    width: 45%;
    overflow: hidden;
    cursor: pointer;
}

.home .section .brand .content .r img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: 80vh;
    transition: all 600ms;
}

.home .section .brand .content .r:hover img {
    transform: scale(1.05);
}

.home .section .products {
    width: 100%;
    background-color: #F6F6F6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .products .t1 {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.home .section .products .t1 p:nth-child(1) {
    color: rgba(51, 51, 51, 0.04);
    font-size: 80px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}

.home .section .products .t1 p:nth-child(2) {
    color: #333333;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.home .section .products .allPros {
    width: 100%;
    margin-top: 80px;
    position: relative;
}

.home .section .products .allPros .swiper-container {
    width: 100%;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item {
    cursor: pointer;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    width: 100%;
    overflow: hidden;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 2s;
    transform: scale(0.8);
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(40px);
    transition: all 600ms;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text .l .p1 {
    color: #333333;
    font-size: 30px;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text .l .p2 {
    color: #333333;
    font-size: 14px;
    margin-top: 8px;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text .r a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #333333;
    font-size: 14px;
    font-family: "Oswald-Regular";
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text .r a img {
    margin-left: 10px;
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide-active .item .pic img {
    transform: scale(1);
}

.home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide-active .item .text {
    transform: translateY(0);
    opacity: 1;
}

.home .section .products .allPros .prev,
.home .section .products .allPros .next {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    bottom: 0;
    background-color: #F6F6F6;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    left: 50%;
    cursor: pointer;
    transition: ease all .3s;
}

.home .section .products .allPros .prev svg,
.home .section .products .allPros .next svg {
    fill: #b1b1b1;
    width: 16px;
    height: 16px;
    transition: ease all .3s;
}

.home .section .products .allPros .prev {
    transform: translateX(-150%);
}

.home .section .products .allPros .prev:hover {
    border-color: #F5AB18;
    transform: scale(1.2) translateX(-150%);
}

.home .section .products .allPros .next:hover {
    border-color: #F5AB18;
    transform: scale(1.2) translateX(150%);
}

.home .section .products .allPros .next {
    transform: translateX(150%);
}

.home .section .products .allPros .prev:hover svg {
    fill: #F5AB18;
    transform: translateX(-3px);
}

.home .section .products .allPros .next:hover svg {
    fill: #F5AB18;
    transform: translateX(3px);
}

.home .section .contact {
    width: 100%;
    height: 100vh;
    background: url("../images/ybg.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .contact .content {
    width: 100%;
}

.home .section .contact .content .t1 {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.home .section .contact .content .t1 p:nth-child(1) {
    color: rgba(51, 51, 51, 0.04);
    font-size: 80px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}

.home .section .contact .content .t1 p:nth-child(2) {
    color: #333333;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.home .section .contact .content .nr {
    width: 85%;
    margin: 40px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.home .section .contact .content .nr .form {
    background: url("../images/h.jpg") no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    width: 55%;
    padding: 50px 5%;
}

.home .section .contact .content .nr .form .tags {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.home .section .contact .content .nr .form .tags span {
    display: inline-block;
    border: 1px solid #F6AD2D;
    border-radius: 18px;
    padding: 5px 20px;
    font-size: 14px;
    color: #F6AD2D;
}

.home .section .contact .content .nr .form .notice {
    color: #999999;
    margin: 60px 0;
}

.home .section .contact .content .nr .form .shuru {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.home .section .contact .content .nr .form .shuru .item {
    width: 18%;
    margin-right: 15px;
}

.home .section .contact .content .nr .form .shuru .item input {
    width: 100%;
    background-color: #F2F2F2;
    border: none;
    height: 36px;
    text-indent: 10px;
    outline: none;
}

.home .section .contact .content .nr .form .shuru .item input::placeholder {
    color: #999999;
    font-weight: 400;
    font-family: Arial, Microsoft YaHei, sans-serif;
}

.home .section .contact .content .nr .form .shuru .filter-box {
    width: 23%;
}

.home .section .contact .content .nr .form .shuru .te {
    width: 100%;
    margin: 20px 0;
}

.home .section .contact .content .nr .form .shuru .te textarea {
    width: 100%;
    background-color: #F2F2F2;
    border: none;
    height: 122px;
    text-indent: 10px;
    outline: none;
    padding-top: 10px;
    resize: none;
}

.home .section .contact .content .nr .form .shuru .te textarea::placeholder {
    color: #999999;
    font-weight: 400;
    font-family: Arial, Microsoft YaHei, sans-serif;
}

.home .section .contact .content .nr .form .shuru .submit {
    width: 160px;
    height: 36px;
    background: #F6AD2D;
    text-align: center;
    line-height: 36px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.home .section .contact .content .nr .info {
    width: 32%;
}

.home .section .contact .content .nr .info .p1 {
    color: #333333;
    font-size: 24px;
}

.home .section .contact .content .nr .info .des {
    margin-top: 50px;
}

.home .section .contact .content .nr .info .des p {
    color: #999999;
    margin-bottom: 30px;
}

.home .section .contact .content .nr .info .des p span {
    color: #333333;
}

.home .section .content .prev,
.home .section .content .next {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background-color: #F6F6F6;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    left: 50%;
    cursor: pointer;
    transition: ease all .3s;
}

.home .section .content .prev svg,
.home .section .content .next svg {
    fill: #b1b1b1;
    width: 16px;
    height: 16px;
    transition: ease all .3s;
}

.home .section .content .prev {
    transform: translateX(-150%);
}

.home .section .content .prev:hover {
    border-color: #F5AB18;
    transform: scale(1.2) translateX(-150%);
}

.home .section .content .next:hover {
    border-color: #F5AB18;
    transform: scale(1.2) translateX(150%);
}

.home .section .content .next {
    transform: translateX(150%);
}

.home .section .content .prev:hover svg {
    fill: #F5AB18;
    transform: translateX(-3px);
}

.home .section .content .next:hover svg {
    fill: #F5AB18;
    transform: translateX(3px);
}

.home .section .contact .filter-box {
    width: 200px;
}

.home .section .join {
    width: 100%;
    height: 100vh;
    background: url("../images/jbg.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .join .content {
    width: 70%;
    margin: 0 auto;
}

.home .section .join .content .t1 {
    width: 100%;
    position: relative;
}

.home .section .join .content .t1 p:nth-child(1) {
    color: rgba(126, 123, 120, 50%);
    font-size: 80px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}

.home .section .join .content .t1 p:nth-child(2) {
    color: #fff;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.home .section .join .content .allItems {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 120px;
}

.home .section .join .content .allItems .item {
    width: 19%;
    background: #FFFFFF;
    border: 2px solid #E6E6E6;
    border-radius: 10px;
    padding: 50px 2% 0 2%;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    height: 340px;
}

.home .section .join .content .allItems .item::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/h2.png") no-repeat;
    background-size: cover;
    opacity: 0;
    transition: all 600ms;
}

.home .section .join .content .allItems .item .p1 {
    color: #333333;
    font-size: 23px;
}

.home .section .join .content .allItems .item .des {
    color: #999999;
    font-size: 14px;
    font-family: "Oswald-Regular";
    font-weight: lighter;
    text-transform: uppercase;
    margin: 40px 0 0 0;
    line-height: 25px;
}

.home .section .join .content .allItems .item .num {
    -webkit-text-stroke: 1.2px rgba(51, 51, 51, 0.06);
    position: absolute;
    color: transparent;
    opacity: 0.8;
    left: -10%;
    bottom: 0;
    font-size: 220px;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    font-family: "SitkaB";
}

.home .section .join .content .allItems .item .radio {
    position: absolute;
    bottom: 0;
    transform: translateY(200px);
    transition: all 0.5s ease-in-out;
    left: 5%;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 2;
}

.home .section .join .content .allItems .item .radio span {
    display: block;
    width: 48%;
    background: #f4f4f4;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 14px;
}

.home .section .join .content .allItems .item:hover {
    box-shadow: 0.08rem 0.08rem 0.167rem rgba(0, 0, 0, 0.16);
    transform: translateY(-2%);
    border-color: #000000;
}

.home .section .join .content .allItems .item:hover::before {
    opacity: 1;
}

.home .section .join .content .allItems .item:hover .num {
    color: #eaeaea;
    bottom: 25%;
    z-index: -1;
}

.home .section .join .content .allItems .item:hover .radio {
    transform: translateY(-20px);
}

.home .section .join .content .more {
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.home .section .join .content .more a {
    line-height: 30px;
    background: #abaaa9;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 5px;
    cursor: pointer;
}

.home .section .news {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .news .content {
    width: 70%;
}

.home .section .news .content .t1 {
    width: 100%;
    position: relative;
}

.home .section .news .content .t1 p:nth-child(1) {
    color: rgba(126, 123, 120, 0.05);
    font-size: 80px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}

.home .section .news .content .t1 p:nth-child(2) {
    color: #333333;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.home .section .news .content .allItems {
    width: 100%;
    margin-top: 60px;
}

.home .section .news .content .allItems .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
}

.home .section .news .content .allItems .item::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    background-color: #F5AB18;
    transition: all 600ms;
    height: 1px;
}

.home .section .news .content .allItems .item .pic {
    width: 35%;
    position: relative;
    overflow: hidden;
}

.home .section .news .content .allItems .item .pic img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.home .section .news .content .allItems .item .pic .kb {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 600ms;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .section .news .content .allItems .item .pic .kb i {
    color: white;
    font-size: 22px;
}

.home .section .news .content .allItems .item .r {
    width: 62%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .section .news .content .allItems .item .r .info {
    width: 70%;
}

.home .section .news .content .allItems .item .r .info .time {
    color: #999999;
    font-size: 12px;
    font-family: "Oswald-Regular";
}

.home .section .news .content .allItems .item .r .info .p1 {
    color: #333333;
    font-size: 16px;
    margin: 20px 0 20px 0;
    transition: all 600ms;
    font-weight: bolder;
}

.home .section .news .content .allItems .item .r .info .des {
    color: #999999;
    font-size: 14px;
    line-height: 25px;
}

.home .section .news .content .allItems .item .r .more {
    font-size: 14px;
}

.home .section .news .content .allItems .item .r .more a {
    color: #333333;
}

.home .section .news .content .allItems .item:hover::after {
    width: 100%;
}

.home .section .news .content .allItems .item:hover .pic .kb {
    opacity: 1;
}

.home .section .news .content .allItems .item:hover .r .p1 {
    color: #F5AB18;
}

.home .section .foot {
    width: 100%;
    height: 100vh;
    background: url("../images/fbg.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home .section .foot .content {
    width: 75%;
    margin: 0 auto;
}

.home .section .foot .content .dom1 .t1 {
    color: #333333;
    font-size: 60px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
    line-height: 70px;
}

.home .section .foot .content .dom1 .t2 {
    color: #333333;
    font-size: 30px;
    font-weight: bolder;
    margin-top: 20px;
}

.home .section .foot .content .dom2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0;
}

.home .section .foot .content .dom2 .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
}

.home .section .foot .content .dom2 .links .item {
    width: 25%;
}

.home .section .foot .content .dom2 .links .item p {
    color: #333333;
    font-size: 20px;
    font-weight: bolder;
}

.home .section .foot .content .dom2 .links .item .aList {
    margin-top: 30px;
}

.home .section .foot .content .dom2 .links .item .aList a {
    color: #999999;
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-weight: 200;
    transition: all 600ms;
}

.home .section .foot .content .dom2 .links .item .aList a::before {
    width: 4px;
    height: 4px;
    background: #333333;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    opacity: 0;
    transition: all 600ms;
}

.home .section .foot .content .dom2 .links .item .aList a:hover {
    color: #333333;
}

.home .section .foot .content .dom2 .links .item .aList a:hover::before {
    opacity: 1;
}

.home .section .foot .content .dom2 .rIcons .icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.home .section .foot .content .dom2 .rIcons .icons a {
    width: 45px;
    height: 45px;
    background: #333333;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.home .section .foot .content .dom2 .rIcons .icons a i {
    color: white;
}

.home .section .foot .content .dom2 .rIcons .icons a:last-child {
    border: 1px solid #333333;
    background-color: transparent;
}

.home .section .foot .content .dom2 .rIcons .icons a:last-child img {
    width: 20px;
}

.home .section .foot .content .dom2 .rIcons .text {
    text-align: right;
    margin-top: 50px;
}

.home .section .foot .content .dom2 .rIcons .text p, .home .section .foot .content .dom2 .rIcons .text a {
    color: #333333;
    font-size: 12px;
    margin-bottom: 5px;
}

.home .section .foot .content .dom3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0;
}

.home .section .foot .content .dom3 .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
}

.home .section .foot .content .dom3 .links .item {
    width: 25%;
}

.home .section .foot .content .dom3 .links .item a {
    color: #333333;
    font-size: 20px;
    font-weight: bolder;
}

.home .section .foot .content .dom3 .r a {
    color: #333333;
    font-size: 12px;
}

/*# sourceMappingURL=index.css.map */

.splitting .char, .splitting .word {
    display: inline-block
}

.splitting .char {
    position: relative
}

.splitting .char:after, .splitting .char:before {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splitting {
    --word-center: calc((var(--word-total) - 1) / 2);
    --char-center: calc((var(--char-total) - 1) / 2);
    --line-center: calc((var(--line-total) - 1) / 2)
}

.splitting .word {
    --word-percent: calc(var(--word-index) / var(--word-total));
    --line-percent: calc(var(--line-index) / var(--line-total))
}

.splitting .char {
    --char-percent: calc(var(--char-index) / var(--char-total));
    --char-offset: calc(var(--char-index) - var(--char-center));
    --distance: calc(var(--char-offset) * var(--char-offset) / var(--char-center));
    --distance-sine: calc(var(--char-offset) / var(--char-center));
    --distance-percent: calc(var(--distance) / var(--char-center))
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: 44px;
    height: var(--swiper-navigation-size);
    margin-top: -22px;
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-theme-color);
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-feature-settings: normal,;
    font-variant: normal
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fil…
.Pcmenu .close2 {
    right: 2.1% !important;
    top: 3.3% !important;
}

.base-cta-text {
    position: relative;
    display: inline-flex;
    align-items: center
}

.base-cta-text * {
    pointer-events: none
}

.base-cta-text__label {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    color: #333333;
    font-size: 14px;
    font-family: "Oswald-Regular";
}

@media (min-width: 64em) {
    .base-cta-text__label {
        font-size: 12px
    }
}

@media (min-width: 90em) {
    .base-cta-text__label {
        font-size: 13px
    }
}

.base-cta-text .words {
    display: block;
    position: relative;
    overflow: hidden
}

.base-cta-text .char {
    position: relative
}

.base-cta-text .char:after {
    visibility: visible;
    content: attr(data-char);
    position: absolute;
    top: 100%;
    left: 0;
    transition: transform .6s
}

.base-cta-text.is-hovered .char, .base-cta-text:hover .char {
    transition: transform .6s;
    transition-delay: calc(0.01s * var(--char-index));
    transform: translateY(-100%)
}

.base-cta-text__arrow {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    margin-top: -8px;
    right: 12px;
    transition: transform .3s;
    transform: translateX(-1em)
}

.base-cta-text.is-hovered .base-cta-text__arrow, .base-cta-text:hover .base-cta-text__arrow, .is-touch .base-cta-text__arrow {
    transform: translateX(0)
}

.base-cta-text__svg-circle-wr {
    display: inline-block;
    margin-left: 1em
}

.base-cta-text__svg-circle {
    stroke: currentColor;
    opacity: .2;
    stroke-dasharray: 112.369 112.369;
    stroke-dashoffset: 112.369;
    -webkit-animation: circle-stroke-out .3s forwards;
    animation: circle-stroke-out .3s forwards
}

.base-cta-text.is-hovered .base-cta-text__svg-circle, .base-cta-text:hover .base-cta-text__svg-circle, .is-touch .base-cta-text__svg-circle {
    -webkit-animation: circle-stroke-in 1s forwards;
    animation: circle-stroke-in 1s forwards
}

@-webkit-keyframes circle-stroke-in {
    0% {
        stroke-dashoffset: 112.369
    }
    to {
        stroke-dashoffset: 0
    }
}

@keyframes circle-stroke-in {
    0% {
        stroke-dashoffset: 112.369
    }
    to {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes circle-stroke-out {
    0% {
        stroke-dashoffset: 0
    }
    to {
        stroke-dashoffset: -112.369
    }
}

@keyframes circle-stroke-out {
    0% {
        stroke-dashoffset: 0
    }
    to {
        stroke-dashoffset: -112.369
    }
}

.citys {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.city-select {
    width: 48.5%;
    background-color: #F2F2F2;
    border: none;
    height: 38px;
    text-indent: 10px;
    outline: none;
    color: #999999;
    font-weight: 400;
    font-family: Arial, Microsoft YaHei, sans-serif;
}

@media screen and (max-width: 1440px) {
    .home .section .contact .content .t1 {
        width: 90%;
    }

    .home .section .contact .content .nr {
        width: 90%;
    }

    .home .section .join .content {
        width: 90%;
    }

    .home .section .news .content {
        width: 90%;
    }

    .home .section .news .content .allItems .item .pic img {
        height: 100%;
    }

    .home .section .news .content .allItems .item .r .info .des {
        word-break: break-all;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 1300px) {
    .home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text {
        width: 80%;
        left: 10%;
    }

    .home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text .t1 {
        font-size: 22px;
    }

    .home .section .banner .swiper-container .swiper-wrapper .swiper-slide .item .text .t2 {
        font-size: 20px;
    }

    .home .section .brand .content {
        width: 90%;
        flex-direction: column;
    }

    .home .section .brand .content .l {
        width: 100%;
    }

    .home .section .brand .content .l .t1 p:nth-child(1) {
        font-size: 40px;
    }

    .home .section .brand .content .l .t1 p:nth-child(2) {
        font-size: 20px;
    }

    .home .section .brand .content .l .des {
        margin: 5px 0;
    }

    .home .right {
        opacity: 0;
    }

    .home .section .products .t1 {
        width: 90%;
    }

    .home .section .products .t1 p:nth-child(1) {
        font-size: 40px;
    }

    .home .section .products .t1 p:nth-child(2) {
        font-size: 20px;
    }

    .home .section .products .allPros {
        margin: 0 auto;
        margin-top: 40px;
        width: 90%;
    }

    .home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .home .section .products .allPros .swiper-container .swiper-wrapper .swiper-slide .item .text .l .p1 {
        font-size: 20px;
    }

    .home .section .products .allPros .prev, .home .section .products .allPros .next {
        bottom: -60px;
        left: 41%;
    }

    .home .section .contact {
        height: auto;
        padding: 40px 0;
    }

    .home .section .contact .content .t1 p:nth-child(1) {
        font-size: 40px;
    }

    .home .section .contact .content .t1 p:nth-child(2) {
        font-size: 20px;
    }

    .home .section .contact .content .nr {
        flex-direction: column;
    }

    .home .section .contact .content .nr .form {
        width: 94%;
    }

    .home .section, .fp-tableCell {
        height: auto !important;
    }

    .home .section .contact .content .nr .form .tags {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .home .section .contact .content .nr .form .notice {
        color: #999999;
        margin: 20px 0;
    }

    .home .section .contact .content .nr .form .shuru .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .home .section .contact .content .nr .info {
        width: 100%;
        margin-top: 20px;
    }

    .home .section .contact .content .nr .info .p1 {
        color: #333333;
        font-size: 20px;
    }

    .home .section .contact .content .nr .info .des {
        margin-top: 20px;
    }

    .home .section .join .content .t1 p:nth-child(1) {
        color: rgba(126, 123, 120, 50%);
        font-size: 40px;
        font-family: "Oswald-Regular";
        text-transform: uppercase;
    }

    .home .section .join .content .t1 p:nth-child(2) {
        color: #fff;
        font-size: 20px;
        font-weight: bolder;
        position: absolute;
        left: 0;
        bottom: 0px;
    }

    .home .section .join {
        height: auto;
        padding: 40px 0;
    }

    .home .section .join .content .allItems {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .home .section .join .content .allItems .item {
        width: 43%;
        margin-bottom: 20px;
        height: 165px;
    }

    .home .section .join .content .allItems .item .p1 {
        font-size: 18px;
    }

    .home .section .products {
        height: 60vh;
    }

    .home .section .contact .content .nr .form .tags span {
        font-size: 12px;
    }

    .home .section .news .content .t1 p:nth-child(1) {
        color: rgba(126, 123, 120, 50%);
        font-size: 40px;
        font-family: "Oswald-Regular";
        text-transform: uppercase;
    }

    .home .section .news .content .t1 p:nth-child(2) {
        font-size: 20px;
        font-weight: bolder;
        position: absolute;
        left: 0;
        bottom: 0px;
    }

    .home .section .join .content .more {
        display: none;
    }

    .home .section .news {
        height: auto;
        padding: 40px 0;
    }

    .home .section .news .content .allItems {
        margin-top: 0;
    }

    .home .section .news .content .allItems .item {
        flex-direction: column;
    }

    .home .section .news .content .allItems .item .pic {
        width: 100%;
    }

    .home .section .news .content .allItems .item .r {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .home .section .news .content .allItems .item .r .info {
        width: 100%;
    }

    .home .section .foot {
        height: auto;
    }

    .home .section .foot .content {
        width: 90%;
        padding: 40px 0;
    }

    .home .section .foot .content .dom1 .t1 {
        font-size: 30px;
        line-height: 35px;
    }

    .home .section .foot .content .dom1 .t2 {
        font-size: 20px;
    }

    .home .section .foot .content .dom2 {
        flex-direction: column;
    }

    .home .section .foot .content .dom2 .links {
        display: none;
    }

    .home .section .foot .content .dom3 .links {
        display: none;
    }

    .home .section .foot .content .dom3 {
        justify-content: center;
        align-items: center;
        margin: 30px 0;
    }

    .home .section .contact .content .nr .form .tags span {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .home .section .brand .content {
        height: auto;
    }

    .home .section .brand .content .r,
    .home .section .brand .content .l .play {
        width: 100%;
    }

    .home .section .banner .prev {
        left: 6%;
    }

    .home .section .banner .next {
        left: 28%;
    }
}


