@font-face {
    font-family: T;
    font-style: normal;
    font-weight: 400;
    src: url(https://cdn.teyes.cn/cc4/ys.otf) format("opentype")
    
}

@font-face {
    font-family: N;
    font-style: normal;
    font-weight: 400;
    src: url(https://cdn.teyes.cn/cc4/no.TTF) format("opentype")
}



* {
    margin: 0;
    padding: 0;
    font-family: N;
}
a{
}
body,
html {
    height: 100vh;
    width: 100vw;
    overflow: auto;
    background-color: RGBA(248, 248, 248, 1);
}

.ru * {
    margin: 0;
    padding: 0;
    font-family: T;
}

.custom-tip-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 9999;
    animation: fadeInOut 3s ease-in-out;
    color: white;
}

/* 错误样式 */
.custom-tip-box.error {
    background: #f44336;
    /* 红色 */
}

/* 成功样式 */
.custom-tip-box.success {
    background: #4caf50;
    /* 绿色 */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}


.container {
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.oto-cotent {
    padding-bottom: 100px;
}

/*banner*/
.o2o-container {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o2o-container .txt {
    font-weight: 400;
    font-size: 60px;
    color: #FFFFFF;
    line-height: 66px;
    text-align: center;
}

/*o2o*/
.o2o-container .swiper-slide {
    height: 100%;
    width: 100%;
}

.o2o-container.bg {
    background-image: url(https://cdn.teyes.cn/cc4/gw/o2o/img/bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner .swiper-button .swiper-button-next {
    background-image: none;
}

.banner .swiper-button .swiper-button-next i {
    position: relative;
    height: 40px;
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    /*border:1px solid #7d7d85;*/
    transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    /* Firefox 4 */
    -webkit-transition: all .3s ease-in;
    /* Safari and Chrome */
    -o-transition: all .3s ease-in;
    /* Opera */
    background-image: url(../images/home/next.png);
    background-size: cover;
}

.banner .swiper-button .swiper-button-next i:hover {
    background-image: url(../images/home/ac_next.png);
}

.banner .swiper-button .swiper-button-prev {
    background-image: none;
}

.banner .swiper-button .swiper-button-prev i {
    position: relative;
    height: 40px;
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    /*border:1px solid #7d7d85;*/
    transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    /* Firefox 4 */
    -webkit-transition: all .3s ease-in;
    /* Safari and Chrome */
    -o-transition: all .3s ease-in;
    /* Opera */
    background-image: url(../images/home/prev.png);
    background-size: cover;

}

.swiper-pagination-bullet {
    background-color: #666666;
}

.swiper-pagination .swiper-pagination-bullet-active.swiper-pagination-bullet {
    background-color: transparent;
    border: 2px solid #a9a9a9;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
}

.banner .swiper-button {
    width: 1500px;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 44px;
    margin-top: -22px;
    margin-left: -750px;
}

.banner-content {
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left: 20%;
    color: #fff;

}

.banner-content .p1 {
    font-size: 40px;
}

.banner-content .p1 i {
    font-size: 30px;
    display: inline-block;
    vertical-align: bottom;
    font-style: normal;
    margin-left: 10px;
}

.banner-content .p2 {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-content .liner {
    display: inline-block;
    background-image: -moz-linear-gradient(0deg, rgb(18, 135, 237) 0%, rgb(0, 222, 255) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(18, 135, 237) 0%, rgb(0, 222, 255) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(18, 135, 237) 0%, rgb(0, 222, 255) 100%);

    height: 2px;
    width: 39px;
    margin-bottom: 33px
}

.banner-content .p3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-content .btn {
    width: 130px;
    height: 44px;
    z-index: 10;
    border-radius: 30px;
    color: #fff;
    line-height: 44px;
    text-align: center;
    border: 2px solid #fff;
    cursor: pointer;
}

.banner-content .btn span {
    display: inline-block;
    font-size: 16px;
    transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    /* Firefox 4 */
    -webkit-transition: all .4s ease-in;
    /* Safari and Chrome */
    -o-transition: all .4s ease-in;
    /* Opera */
}

.banner-content .btn i {
    position: relative;

}

.banner-content .btn i:after {
    content: '<';
    opacity: 0;
    font-size: 18px;
    font-family: "Microsoft YaHei";
    color: rgb(255, 255, 255);

    position: absolute;
    font-weight: lighter;
    left: 0px;
    top: -1px;
    transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    /* Firefox 4 */
    -webkit-transition: all .4s ease-in;
    /* Safari and Chrome */
    -o-transition: all .4s ease-in;
    /* Opera */
    transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -moz-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -webkit-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -o-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
}

.banner-content .btn:hover span {
    transform: translate3d(-5px, 0%, 0);
    -moz-transform: translate3d(-5px, 0%, 0);
    -webkit-transform: translate3d(-5px, 0%, 0);
    -o-transform: translate3d(-5px, 0%, 0);
}

.banner-content .btn:hover i:after {
    opacity: 1;
    transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -moz-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -webkit-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -o-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
}

.tc {
    text-align: center;
}

.oto-cotent {
    margin: 43px auto;
    max-width: 1280px;
}

.oto-type .sp,
.oto-type p {
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
}

.oto-type .sp1 {
    font-size: 18px;
    color: #000;
}

.pliner {
    margin-bottom: 43px;
}

.oto-type .sp1 {
    margin: 0px 55px 43px 0;
}

.oto-type .sp i {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(27, 28, 31, .5);
    margin-right: 8px;
    border-radius: 4px;
}

.oto-type p .sp {
    margin-right: 27px;
}


.oto-type p .sp {
    cursor: pointer;
}

.oto-type p .sp.active i {
    border: none;
    background-image: url(https://cdn.teyes.cn/cc4/gw/o2o/img/check.png);
    background-size: cover;
}

.form {}

.f {
    display: flex;
}

.f1 {
    flex: 1;
}

.mb2 {
    margin-bottom: 20px;
}

.form input,
.form textarea {
    border: none;
    outline: none;
    resize: none;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.form .ibt {
    background-color: RGBA(230, 231, 231, 1);
    border-radius: 20px;
    min-height: 28px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-right: 20px;
}

.form .ibt.textarea {
    height: calc(100% - 40px);
}

.form .ibt.textarea textarea {
    margin: 20px;
}

.form .ibt.nor {
    margin-right: 0;
}

.oto-msg .bk {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sub {
    margin: 40px auto 40px auto;
}



.oto-type .form .inliner {
    display: inline-block;
    width: 180px;
    background-color: rgba(24, 25, 28, 1);
    text-align: center;
    border-radius: 35px;
    line-height: 70px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.oto-type .form span {
    position: relative;
    font-size: 16px;
}


.oto-type .form span:hover:after {
    opacity: 1;
    transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -moz-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -webkit-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
    -o-transform: translate3d(0px, 0%, 0) matrix(-1, 0, 0, 1.8, 0, 0);
}



.oto-type .form p {
    display: block;
}

.oto-type .msg {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}

.oto-type .msg p {
    display: block;
    font-size: 14px;
    color: #9e9fa0;
    line-height: 180%;
    margin-bottom: 20px;
    word-wrap: break-word
}

.oto-type .msg li {
    font-size: 0;
}

.oto-type .msg li span {
    color: #9e9fa0;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

.oto-type .msg li span:nth-child(1) {
    width: 60%;
}

.oto-type .msg li span:nth-child(2) {
    width: 40%;
}













.qrcode-mask .img img {
    width: 240px;

}

.mask.video-mask {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.mask.qrcode-mask {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.qrcode-mask .img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -215px;
    margin-left: -120px;
}

.mask .close {
    position: fixed;
    right: 0px;
    top: 0px;
    cursor: pointer;
    padding: 100px 70px;
    z-index: 1000;
}

.mask .video-content {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -480px;
    margin-top: -270px;
}

.mask .video-content .play {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 2px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: center;
    z-index: 1;
    height: 540px;
    border-radius: 4px;
}

.mask .video-content .play span {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    height: 81px;
    width: 81px;
    transition: all 0.4s 0s ease-in;
    -moz-transition: all 0.4s .0s ease-in;
    -webkit-transition: all .4s .0s ease-in;
    -o-transition: all .4s 0.0s ease-in;
    background-image: url(../images/home/play.png);
}

.mask .video-content .play span:hover {
    background-image: url(../images/home/playb.png);
}

video {
    border-radius: 8px;
}

#home {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    /*pointer-events: none;*/
    z-index: 10;
}


footer,
.content-home {
    pointer-events: all
}

.t12 {
    pointer-events: none;
    height: 100vh;
    display: none;
}

.smtab {
    display: none;
}

@media screen and (max-width: 1250px) {

    .oto-cotent {
        margin: 29px;
    }

    .form {
        width: 100%;
        border-right: none;
    }

    .oto-type .msg {
        width: 100%;
    }

    .form .w467 {
        width: 100%
    }

    .oto-type .form .inliner {
        margin: 20px 0;
    }

    .form .w162,
    .form .w338,
    .form .w110 {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .form input, .form textarea{
        font-size:16px;
    }
}
@media screen and (max-width: 1024px) {
    .oto-cotent {
        padding: 20px;
        margin: 10px 20px 100px 20px;
        border-radius: 20px;
        background-color: #fff;
    }

    body,
    html {
        background-image: url(https://cdn.teyes.cn/cc4/gw/o2o/img/bgmb.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .o2o-container.bg {
        height: auto;
        padding-top: 150px;
        background-image: none;
    }

    .o2o-container .txt {
        font-size: 30px;
        line-height: 110%;
        margin-bottom: 40px;
    }

    .oto-msg .bk {
        grid-template-columns: repeat(1, 1fr);
    }

    .oto-type .sp1 {
        margin: 10px 0 20px 0;
    }

    .form .ibt:nth-child(2) {
        margin-right: 0;
    }

    .sub {
        margin: 20px auto 20px auto;
    }

    .form .ibt.textarea {
        margin-top: 20px;
        height: 100px;
    }

    .pliner {
        margin-bottom: 20px;
    }

    .oto-type p.pliner {
        display: none;
    }

    .form .ibt.textarea textarea {
        margin: 0;
    }

    .smtab {
        display: flex;
        margin-top: 20px;
    }

    .smtab span {
        flex: 1;
        line-height: 50px;
        text-align: center;
        display: block;
        color: rgba(24, 25, 28, .5);
        border: 2px solid rgba(24, 25, 28, .5);
        border-radius: 12px;
        cursor:pointer;
    }

    .smtab span:nth-child(1) {
        margin-right: 20px;
    }

    .smtab span.active {
        color: #000;
        border-color: rgba(27, 28, 31, 1);
    }

    .oto-type .form .inliner {
        width: 150px;
        line-height: 60px;
    }
}

.msg .tab span {
    margin-bottom: 10px;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    padding-bottom: 10PX;
    color: rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);

}

.msg p {
    margin-bottom: 20px;
    color: rgba(24, 25, 28, 1);
}

.msg .tab span.active {
    color: #0277ff;
    border-bottom: 2px solid #0277ff;

}

.hide {
    display: none;
}