*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    position: relative;
    width: 100%;
    height: 100%;    
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
}
body {
    font-size: 16px;
    color: #282828;
    -webkit-tap-highlight-color: transparent;
    /* -webkit-user-select: none;
       -moz-user-select: none;
       -ms-user-select: none;
       user-select: none;  */
}

ol, ul {
	list-style: none;
}
i {
    font-style: normal;
}
a{
	text-decoration: none;
}
button{
	cursor: pointer;
}
a, button, input {
	outline: none;
}
a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
div:focus {
  outline: none;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.none{
    display: none!important;
}

.pos-relative{
    position: relative;
}
.text-center{
    text-align: center;
}

/* ********************** reset end ********************** */
/* 头部佳能logo */
.logo-con {
    position:relative;
    height: 65px;
    z-index: 100;
    width:100%;
    top:0px;
    left:0px;
    background-color: rgb(0, 0, 0,1);
}
.logo-con .wrapper .item-con-logo {
    display: inline-block;
    width: auto;
    height: 30px;
    margin: 10px 30px;
}
.logo-con .wrapper {
    height: 100%;
    width: 100%;
    margin: 0 auto;
}
.logo-con .wrapper .left {
    height: 45px;
}
.logo-con .wrapper .right {
    height: 45px;
    margin: 8px 30px 12px 30px;
}
.logo-con .wrapper .item-con-logo img {
    height: 100%;
}
.guang-gao {
    position: absolute;
    z-index: 2;
    line-height: 1em;
    padding: 5px 10px;
    background-color: #cccccc;
    text-align: center;
    font-size: 16px;
    border: 1px solid #dddddd;
    right: 36px;
    top: 55px;
}

/* 头部佳能logo end */

/* 页脚 */
.container-footer{
    margin: 0 auto;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    height: 60px;
    background-color: rgb(20, 20, 20);
    z-index: 1501;
    display: flex;
    justify-content: center;
}
.container-bottom {
    margin: 0 auto;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    /* position: fixed;
    left: 0;
    right: 0;
    bottom: 0; */
    height: 60px;
    background-color: rgb(20, 20, 20);
    z-index: 1501;
    display: flex;
    justify-content: center;
}
.footer {
    text-align: center;
    padding-top: 5px;
}
.link-con{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link-con a{
    display: flex;
    align-items: center;
}
.links{
    margin: 5px;
    position: absolute;
    left: 25%;
    top: 10%;
    font-size: 16px;
}

.container-bottom a, .container-bottom span,.container-footer a, .container-footer span {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}
.links a{
    font-size: 16px;
}
.icon a{
    float: left;
}
.footer * {
    vertical-align: middle;
}
.footer .sns {
    text-align: center;
    position: relative;
    display: inline-block;
    margin-left: 40px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
.footer .sns .title {
    display: inline-block;
    color: #fff;
    font-size: 12px;
}
.footer .sns .wechat {
    position: relative;
}
.footer .sns .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
.footer .sns .icon.wechat .popup_wechat {
    display: none;
    position: absolute;
    padding: 15px;
    bottom: 35px;
    left: 50%;
    background: #fff;
    border: 2px solid #000;
    z-index: 15;
    transform: translateX(-50%);
}
.footer .sns .icon.wechat .popup_wechat h3 {
    margin: 0 0 20px 0;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.5em;
    border-bottom: 1px solid #969696;
    color: #666;
}
.footer .sns .icon.wechat .popup_wechat p {
    font-size: 12px;
    line-height: 1.5em;
    text-align: center;
    white-space: nowrap;
    color: #666;
}
.footer .sns .icon img {
    width: 100%;
    height: auto;
}
.footer .sns .icon.wechat .popup_wechat.open {
    display: block;
    animation: anim_wechat_qr .5s ease-out;
}
.footer .sns .icon.wechat .popup_wechat:after {
    position: absolute;
    bottom: -12px;
    left: calc(50% - 11px);
    content: " ";
    pointer-events: none;
    width: 20px;
    height: 13px;
    background: url(../img/fukidashi_arrow.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
/* 页脚 end*/


/* ************************** css3动画 ************************** */
@keyframes fadeout {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        z-index: -1;
    }
}
@keyframes fadein {
    0%{
        opacity: 0;
        z-index: -1;
    }
    100%{
        opacity: 1;
        z-index: 10;
    }
}
@keyframes scalebig {
    0%{
        opacity: 1;
        transform: scale(1.01);
        transform-origin: center center;
    }
    99%{
        opacity: 1;
        transform: scale(10);
        transform-origin: center center;
        z-index: 9999;
    }
    100%{
        opacity: 1;
        transform: scale(10);
        transform-origin: center center;
        z-index: -1;
    }
}
@keyframes scalevideobig {
    0%{
        opacity: 1;
        width: 320px;
        height: 214px;
    }
    50%{
        opacity: 1;
        width: 100%;
        height: 300px;
    }
    100%{
        opacity: 1;
        z-index: 2;
        width: 100%;
        height: 100vh;
    }
}
@keyframes scalevideobigpc {
    0%{
        width: 740px;
        height: 494px;
        top: 0;
    }
    50%{
        opacity: 1;
        width: 100%;
        height: 500px;
        top: 0;
    }
    100%{
        opacity: 1;
        z-index: 2;
        width: 100%;
        height: 100vh;
        top: 0;
    }
}
@keyframes scalevideoboxbig {
    0%{
        opacity: 1;
        width: 320px;
        height: 214px;
        top: 20%;
    }
    50%{
        opacity: 1;
        width: 100%;
        height: 300px;
        top: 20%;
    }
    100%{
        opacity: 1;
        z-index: 2;
        width: 100%;
        height: 100vh;
        top: 0;
    }
}
@keyframes scalevideoboxbigpc {
    0%{
        width: 740px;
        height: 494px;
        top: 20%;
    }
    50%{
        opacity: 1;
        width: 100%;
        height: 500px;
        top: 20%;
    }
    100%{
        opacity: 1;
        z-index: 2;
        width: 100%;
        height: 100vh;
        top: 0;
    }
}
@keyframes slideDown {
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes scalenormal {
    0%{
        transform: scale(0) translate3d(0,0,0);
        opacity: 0;
    }
    100%{
        transform: scale(1) translate3d(0,0,0);
        opacity: 1;
    }
}
@keyframes slideDownUp {
    0%{
        transform: translateY(10px);
        opacity: .2;
    }
    50%{
        transform: translateY(0);
        opacity: 1;
    }
    90%{
        transform: translateY(10px);
        opacity: .2;
    }
    100%{
        transform: translateY(10px);
        opacity: .2;
    }
}
@keyframes beat {
    0%{
        transform: scale(1);
        opacity: .2;
    }
    25%{
        transform: scale(1.2);
        opacity: 1;
    }
    50%{
        transform: scale(1);
        opacity: .2;
    }
    75%{
        transform: scale(1.2);
        opacity: .8;
    }
    100%{
        transform: scale(1);
        opacity: .2;
    }
}

@keyframes move {
    0%{
        transform: scale(1);
        opacity: .2;
    }
    25%{
        transform: scale(1.2);
        opacity: 1;
    }
    50%{
        transform: scale(1);
        opacity: .2;
    }
    75%{
        transform: scale(1.2);
        opacity: .8;
    }
    100%{
        transform: scale(1);
        opacity: .2;
    }
}
.transform {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
  
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    /* Other transform properties here */
 }



.container img{
    max-width: 100%;
}

.page-top-nav-list{
    position: absolute;
    width: 80%;
    right: 16px;
    top: 22vw;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,.2);
    height: 0;
    overflow: hidden;
    transition: all .8s;
}
.page-top-nav-list-con{
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    /* padding:0 24px 0; */
    box-sizing: border-box;
    border-radius: 10px;
}
.page-top-nav-icon{
    /* position: absolute; */
    width: 20px;
    height: 20px;
    /* right: 15px;
    top: 32px; */
}
.page-top-nav-closebtn{
    position: absolute;
    width: 16px;
    height: 16px;
    right: 16px;
    top: 16px;
}
.page-top-nav-list ul{
    padding-top: 40px;
}
.page-top-nav-list ul li{
    color: #333;
    line-height: 40px;
    border-bottom: 1px #bbb solid;
    padding-left: 20px;
    font-size: 13px;
}
.page-top-nav-list ul li:last-child{
    border-bottom: none;
}

.container-vr{
    transition: all .2s;
    width: 100%;
    padding-bottom: 50px;
    /* padding-top: 45px; */
}



/* 第一屏 */
.page-item{
    width: 100%;
    
}
.page-item  > h2{
    font-size: 7.2vw;
    line-height: 9vw;
    font-weight: bold;
}
.page-one{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* 顶部导航 */
.page1-bg{
    width: 100%;
}
.page-top-nav-box{
    width: 100%;
    padding: 4vw 16px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page-top-nav-logo{
    display: block;
    width: 18%;
}
.banner-title{
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 32vw;
    margin: 0 auto;
    z-index: 2;
    color: #fff;
}
.banner-title h1{
    font-size: 10vw;
}
.banner-title p{
    font-size: 6vw;
    margin-top: 1vw;
}



/* EOS VR 系统 */
.page-two{
    padding: 9.3vw 6.67vw 0;
    overflow: hidden;
}
.page-desc{
    font-size: 3.8vw;
    line-height: 6.13vw;
    margin-top: 4vw;
}
.page-swiper{
    position: relative;
}
.thumbnall-page{
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 6vw;
    z-index: 10;
}
.swiper-pagination-bullet{
    width: 16%;
    height: 3px;
    background: #dddddd;
    border-radius: 3px;
    opacity: 1;
    transition: all 0.2s;
}
.swiper-pagination-bullet-active{
    background:#6b6b6b;
    width: 21.86vw;
}

.page-vr-system{
    margin-top: 6.66vw;
    overflow: hidden;
}
.swiper-system-item{
    width: 100%;
    height: 149vw;
    padding: 8vw 4.67vw ;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eaeaec;
    border-radius: 5vw;
}
.swiper-system-item-title{
    width: 100%;
    font-size: 5.3vw;
    font-weight: normal;
    display: flex;
    align-items: center;
    padding-bottom: 2vw;
    background: url(../img/title-line.png) no-repeat left bottom;
    background-size: 4.5vw auto;
}
.swiper-system-item-desc{
    width: 100%;
    font-size: 3.33vw;
    line-height: 6.13vw;
    margin-top: 4vw;
}
.swiper-system-item-text-small{
    font-size: 10px;
    width: 86%;
    margin-top: 6px;
    margin-bottom: 10px;
}
.swiper-system-item-img{
    width: 100%;
    margin-top: 8vw;
}
.swiper-system-item-img2{
    margin-top: 4vw;
}
.swiper-system-item-img3{
    margin-top: 6vw;
}
.swiper-system-item ul{
    margin-top: 3.6vw;
}
.swiper-system-item ul li{
    font-size: 3.33vw;
    line-height: 5.63vw;
    display: flex;
    align-items: flex-start;
    margin-top: 1.4vw;
}
.swiper-system-item ul li i{
    width: 1.3vw;
    height: 1.3vw;
    display: block;
    background: #a90000;
    border-radius: 12px;
    margin-right: 6px;
    margin-top: 2.1vw;
}
.swiper-system-item ul li p{
    flex: 1;
}
.swiper-application-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3vw;
}
.swiper-application-item{
    width: 36.53vw;
    height: 20vw;
    border-radius: 2vw;
    background: #fff;
    margin-bottom: 2.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-application-item .swiper-application-item-img{
    width: 9.2vw;
    margin-right: 3vw;
}
.swiper-application-item span{
    font-size: 2.8vw;
}
.page-vr-system-video{
    width: 100%;
    margin-top: 11.1vw;
    /* height: 48.8vw; */
}
.page-system-video{
    width: 100%;
    height: 48.8vw;
    position: relative;
}
.video-cover{
    width: 100%;
}
.page-system-video .play-btn{
    width: 6.667vw;
    position: absolute;
    left: 0;
    right:0;
    top: 0;
    bottom: 0;
    margin:auto;
    z-index: 2;
}
.pagae-system-text{
    font-size: 2.8vw;
    color: #6b6b6b;
    margin-top: 1.8vw;
}

/* 镜头+相机+应用程序 三位一体 */
.page-three{
    padding: 9.3vw 6.67vw 0;
}
.page-item > h2 > p{
    font-size: 5.33vw;
    line-height: 8vw;
}
.solution-item-img{
    width: 100%;
    margin-top: 7.33vw;
}
.solution-list{}
.solution-item{
    margin-top: 9.3vw;
}
.solution-item h3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(../img/title-line.png) no-repeat left bottom;
    background-size: 4.5vw auto;
}
.solution-item h3 p{
    font-size: 5.3vw;
    font-weight: normal;
}
.solution-item h3 img{
    height: 10.93vw;
}
.solution-item-desc{
    font-size: 3.33vw;
    line-height: 6vw;
    margin-top: 4vw;
}
.solution-item-product{
    background: #eaeaec;
    border-radius: 2.1vw;
    margin-top: 8vw;
    padding: 5.33vw 3.6vw;
}
.solution-product-cont{
    
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
.solution-product-img{
    width: 32.53vw;
    margin: 0 1.6vw 0 0;
}
.solution-product-text{}
.solution-product-title{
    font-size: 3.9vw;
    border: 1px #282828 solid;
    border-radius: 4vw;
    padding: 1vw 3vw;
}
.solution-product-name{
    font-size: 3.46vw;
    margin-left: 3.466vw;
    margin-top: 2vw;
}
.solution-product-tag{
    font-size: 2.666vw;
    margin-left: 3.466vw;
    margin-top: 1vw;
    color: #6b6b6b;
}
.solution-product-btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4.8vw;
}
.solution-product-btn{
    width: 37vw;
    height: 8.266vw;
    line-height: 8.266vw;
    text-align: center;
    border-radius: 4vw;
    font-size: 3.333vw;
}
.solution-product-btn a{
    display: block;
    width: 100%;
    height: 100%;
}
.solution-product-btnleft{
    background: #fff;
    color: #282828;
}
.solution-product-btnright{
    background: #282828;
    color: #fff;
}

/* 应用案例 */
.page-four{
    padding: 9.3vw 0 0 6.67vw;
}
.page-case{}
.page-case-item{
    margin-top: 6vw;
}
.page-case-item h3{
    font-size: 5.33vw;
    padding-bottom: 2vw;
    background: url(../img/title-line.png) no-repeat left bottom;
    background-size: 4.5vw auto;
}
.case-list-box{
    width: 100%;
    overflow-x: auto;
}
.case-list{
    margin-top: 6vw;
    display: flex;
    flex-wrap: nowrap;
}
.case-list-box1 .case-list{
    width:147vw;
}
.case-list-box2 .case-list{
    width:221vw;
}
.case-item{
    width: 70.93vw;
    background: #eaeaec;
    border-radius: 2.8vw;
    margin-right: 2.133vw;
    overflow: hidden;
}
.case-item-img-box{
    width: 100%;
    position: relative;
}
.case-cover{
    display: block;
    width: 100%;
}
.play-img{
    width: 8vw;
    height: 8vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
.case-title{
    padding-left: 3.2vw;
    height: 12vw;
    line-height: 12vw;
}
.next-btn{
    width: 1.8vw;
    margin-left: 2vw;
}
.video-tips{
    margin-top: 3vw;
    width: 86.667vw;
    border: 1px #6b6b6b solid;
    border-radius: 3vw;
    padding: 4.266vw;
}
.video-tips h4{
    display: flex;
    align-items: center;
    font-size: 2.67vw;
    color: #6b6b6b;
}
.video-tips h4 img{
    width: 3.73vw;
    margin-right: 1vw;
}
.video-tips-text{
    font-size: 2.67vw;
    margin-top:1vw;
}


/* 创作者社区 */
.page-five{
    padding: 9.3vw 6.67vw 0 ;
}

.creator-list-box{
    width: 100%;
    overflow-x: auto;
    margin-top: 7.33vw;
}
.creator-list{
    width: 100%;
    /* 126vw */
    display: flex;
    justify-content: center;
}
.creator-item{
    width: 40.4vw;
    margin-right: 1.6vw;
    position: relative;
}
.creator-item-img-box{
    width: 100%;
    position: relative;
}
.creator-cover{
    display: block;
    width: 100%;
}
.creator-img{
    position: absolute;
    width: 6.66vw;
    height: 6.66vw;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
.creator-title{
    position: absolute;
    z-index: 8;
    left: 3.2vw;
    top: 57.6vw;
    color: #fff;
}
.creator-title h5{
    font-size: 3.33vw;
}
.creator-title p{
    font-size: 2.13vw;
}
.creator-active  h3{
    margin-top: 7.5vw;
    font-size: 5.33vw;
    background: url(../img/title-line.png) no-repeat left bottom;
    background-size: 4.5vw auto;
    padding-bottom: 2vw;
}
.creator-active{
    /* margin-right: 6.67vw; */
    
}
.creator-swiper{
    margin-top: 6.66vw;
    overflow: hidden;
    position: relative;
}
.creator-swiper-slide{
    width: 100%;
}
.swiper-creator-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eaeaec;
    border-radius: 2vw;
}
.swiper-creator-item-img{
    display: block;
}
.swiper-creator-item-desc{
    height: 9.066vw;
    line-height: 9.066vw;
    font-size: 3.33vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnall-creator-page{
    width:90%;
    height: 8vw;
    margin:3vw auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.thumbnall-creator-page .swiper-pagination-bullet-active{
    background: #6b6b6b;
    width: 21.86vw;
}

/* VR影像技能教育 */
.page-six{
    padding: 9.3vw 6.67vw 0 6.67vw;
}
.vr-education{
    margin-top: 6.66vw;
    background: #e7e7e9;
    border-radius: 2.266vw;
}
.vr-education > a{
    display: block;
    width: 100%;
    height: 100%;
}
.vr-education-img{
    display: block;
    width: 100%;
}
.vr-education-title{
    height: 13.067vw;
    display: flex;
    align-items: center;
    padding-left: 4vw;
    font-size: 3.33vw;
}

/* 技术支持 */
.page-seven{
    padding: 9.3vw 0 0 6.67vw;
}
.page-seven .page-desc{
    padding-right: 6.67vw;
}
.page-seven h3{
    margin-top: 7.5vw;
    font-size: 5.33vw;
    background: url(../img/title-line.png) no-repeat left bottom;
    background-size: 4.5vw auto;
    padding-bottom: 2vw;
}
.support-img-box{
    width: 100%;
    overflow-x: auto;
}
.support-img{
    width: 205.33vw;
    max-width: 300%!important;
    margin-top: 5vw;
}
.reference-list{
    margin-right: 6.67vw;
    margin-top: 5vw;
    border-top: 1px solid #d0d0d0;
}
.reference-list li{
    border-bottom: 1px solid #d0d0d0;
}
.reference-box{
    width: 100%;
    height: 16.8vw;
    display: flex;
    align-items: center;
}
.reference-box a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.reference-icon{
    width: 8.93vw;
    height: 8.93vw;
}
.reference-text{
    margin-left: 3.33vw;
}
.reference-text h5{
    font-size: 4vw;
}
.reference-text p{
    font-size: 2.667vw;
    color: #6b6b6b;
    margin-top: 0.6vw;
}
.reference-box .next-btn{
    margin-left: auto;
    width: 2.4vw;
}
.document-list{
    margin-top: 5vw;
    margin-right: 6.67vw;
}
.document-box{
    background: #e7e7e9;
    border-radius: 2.266vw;
    margin-bottom: 3vw;
    display: flex;
    align-items: center;
    padding: 2vw;
}
.document-cover{
    width: 22.133vw;
}
.document-right{
    /* margin-left: 7vw; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 62vw;
}
.document-right-icon{
    width: 4.667vw;
}
.document-right h4{
    font-size: 4.266vw;
    margin-top: 1vw;
}
.document-btn{
    display: block;
    width: 35.067vw;
    height: 8.267vw;
    text-align: center;
    line-height: 8.267vw;
    background: #282828;
    border-radius: 5vw;
    color: #fff;
    font-size: 3.33vw;
    margin-top: 3vw;
}


.page-tel{
    text-align: center;
    font-size: 5.33vw;
    font-weight: bold;
    margin-top: 7.5vw;
}
.page-tel a{
    text-decoration: underline;
    font-weight: bold;
}



.gotop {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
}
.gotop-fixed {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
    display: block;
}

.gotop img {
    width: 100%;
    height: 100%;
}


/* 隐私政策 */
.privacy-tips{
    position: fixed;
    background-color: #494748;
    border-radius: 10px;
    width: 360px;
    height: 220px;
    left: 10%;
    bottom: 5%;
    z-index: 999;
    color: #fff;
    padding: 50px 20px 80px 20px;
    text-align: left;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 22px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.privacy-tips-btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
}
.privacy-tips-btn-ok{
    position: absolute;
    right: 20px;
    bottom: 25px;
    background-color: #ba3d40;
    color: #fff;
    width: 100px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
}


@media (min-width:976px){
    /* 第一屏 */
    .page-item{
        width: 100%;
    }
    .page-item  > h2{
        font-size: 4vw;
        line-height: 5vw;
        font-weight: bold;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .page-item > h2 > p{
        display: inline-block;
        margin: 1vw auto 0;
        font-size: 1.8vw;
        line-height:2.2vw;
        font-weight: normal;
        border: 1px #282828 solid;
        border-radius: 30px;
        padding:0.5vw 3.6vw;

    }
    .page-one{
        width: 100%;
        /* display: flex;
        flex-direction: column;
        align-items: center; */
        position: relative;
    }

    /* 顶部导航 */
    .page1-bg{
        width: 100%;
    }
    .page-top-nav-box{
        width: 100%;
        padding: 50px 36px 0;

    }
    .page-top-nav-logo{
        display: block;
        width: 120px;
    }
    .banner-title{
        /* width: 500px; */
        /* text-align: center; */
        position: absolute;
        left: 0;
        right: 0;
        top: 12.4vw;
        margin: 0 auto;
        z-index: 2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    .banner-title h1, .banner-title p{
        font-size: 6.3vw;
        font-weight: bold;
    }
    .page-top-nav-list{
        top: 120px;
        width: 500px;
        right: 36px;
    }



    /* EOS VR 系统 */
    .page-two{
        padding: 5vw 0 0 10%;
        overflow: hidden;
    }
    .page-two > h2{
        padding-right: 10%;
    }
    .page-desc{
        font-size: 1.3vw;
        line-height: 2vw;
        margin-top: 20px;
    }
    .page-swiper{
        position: relative;
    }
    .swiper-pagination-group{
        width: 70vw;
        padding-right: 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 2vw auto 0;
    }
    .thumbnall-page-pc{
        width: 45vw;
        height: 5px;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin: 0 auto 0;
        position: static;
    }
    .swiper-prev, .swiper-next{
        width: 40px;
        height: 58px;
        /* background: #f0f0f0; */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .swiper-pagination-bullet{
        width: 8vw;
        height: 3px;
        background: #dddddd;
        border-radius: 3px;
        opacity: 1;
        transition: all 0.2s;
    }
    .swiper-pagination-bullet-active{
        background:#6b6b6b;
        width: 15vw;
    }

    .page-vr-system{
        margin-top: 4.5vw;
        overflow: hidden;
    }
    .swiper-slide-pc{
        width: 34vw;
        margin-right: 3%;
    }
    .swiper-system-item{
        width: 100%;
        height: 48vw;
        padding: 2vw 2.3vw ;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #eaeaec;
        border-radius: 2vw;
    }
    .swiper-system-item-title{
        width: 100%;
        font-size: 2.1vw;
        font-weight: normal;
        /* text-align: center; */
        /* height: 60px; */
        display: flex;
        align-items: center;
        padding-bottom: 0.8vw;
        background: url(../img/title-line.png) no-repeat left bottom;
        background-size: 2.5vw auto;
    }
    .swiper-system-item-desc{
        /* height: 144px; */
        width: 100%;
        font-size: 1.3vw;
        line-height: 2.1vw;
        margin-top: 0.8vw;
        /* display: flex;
        flex-direction: column;
        align-items: center; */
    }
    .swiper-system-item-text-small{
        font-size: 10px;
        width: 86%;
        margin-top: 6px;
        margin-bottom: 10px;
    }
    .swiper-system-item-img{
        width: 100%;
        margin-top: 1.4vw;
    }
    .swiper-system-item-img2{
        margin-top: 0;
    }
    .swiper-system-item ul{
        margin-top: 0;
    }
    .swiper-system-item ul li{
        font-size: 1.23vw;
        line-height: 1.7vw;
        display: flex;
        align-items: flex-start;
        margin-top: 0.6vw;
    }
    .swiper-system-item ul li i{
        width: 0.4vw;
        height: 0.4vw;
        display: block;
        background: #a90000;
        border-radius: 0.4vw;
        margin-right: 0.6vw;
        margin-top: 0.8vw;
    }
    .swiper-system-item ul li p{
        flex: 1;
    }
    .swiper-application-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 0.6vw;
    }
    .swiper-application-item{
        width: 14.3vw;
        height: 7.2vw;
        border-radius: 0.6vw;
        background: #fff;
        margin-bottom: 0.8vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .swiper-application-item .swiper-application-item-img{
        width: 4.2vw;
        margin-right: 0.6vw;
    }
    .swiper-application-item span{
        font-size: 1.2vw;
    }
    .page-vr-system-video{
        width: 100%;
        box-sizing: border-box;
        /* max-width: 800px; */
        margin-top: 4vw;
        padding-right: 10%;
        /* height: 48.8vw; */
    }
    .page-system-video{
        width: 100%;
        height: 45.2vw;
        position: relative;
    }
    
    .pagae-system-text{
        font-size: 1.1vw;
        color: #6b6b6b;
        margin-top: 20px;
    }

    /* 镜头+相机+应用程序 三位一体 */
    .page-three{
        padding: 5vw 0 0;
    }
    
    .solution-item-img{
        width: 80%;
        display: block;
        margin: 3vw auto 0;
    }
    .solution-list{
        
    }
    .solution-item{
        padding: 5vw 0 5vw 10%;
        margin-top: 0;
    }
    .solution-item1, .solution-item3{
        background: #ebebed;
    }
    .solution-item-head{
        padding-right: 10%;
        display: flex;
        align-items: center;
    }
    .solution-product-img{
        width: 19vw;
        margin-right:3vw
    }
    .solution-item-title{
        /* padding-top: 3vw; */
    }
    .solution-item-title h3{
        font-size: 3.5vw;
        background: none;
    }
    .solution-item-title p{
        font-size: 2vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 1vw;
    }
    .solution-item-title p span{
        margin-left: 1vw;
        font-size: 1.6vw;
        color: #646464;
    }
    .solution-product-btn{
        width: 14vw;
        height: 3vw;
        line-height: 3vw;
        text-align: center;
        border-radius: 3vw;
        font-size: 1.3vw;
        margin-top: 2vw;
        background: #282828;
        color: #fff;
    }
    .solution-item-icon{
        margin-left: auto;
        width: 13vw;
    }
    .solution-item-desc{
        padding-right: 10%;
        font-size: 1.25vw;
        line-height: 2.3vw;
        margin-top: 20px;
    }
    .solution-item-product{
        background: none;
        border-radius: 0;
        margin-top: 3vw;
        padding: 30px 0;
    }
    .solution-item-product > h2{
        font-size: 3vw;
    }
    .solution-item-product > h3.h3-line{
        font-size: 2vw;
        margin-top: 1.4vw;
        background-size: 2vw auto;
        padding-bottom: 1vw;
        font-weight: normal;
    }
    .solution-product-cont{
        display: flex;
        flex-direction: column;
        align-items: center;
        /* justify-content: space-between; */
    }
    .solution-item1 .swiper-system-item,.solution-item3 .swiper-system-item{
        background: #fff;
        height: 36vw;
        /* padding: 1.5vw 2.3vw; */
    }
    .solution-item .swiper-system-item-img{
        margin-top: 0;
    }
    .swiper-item-title{
        font-size: 1.5vw;
        width: 100%;
        margin-top: 1.5vw;
    }
    .solution-item-product > h3.h3-icon{
        justify-content: flex-start;
        background: none;
        margin-top: 4vw;
        font-size: 30px;
    }
    .solution-item-product > h3.h3-icon > img{
        width: 35px;
        height: auto;
        margin-right: 10px;
    }
    .solution-item-product .thumbnall-page-pc{
        width: 46vw;
    }
    .solution-item2 .solution-item-product .thumbnall-page-pc{
        width: 35vw;
    }
    /* 支持机型 */
    .product-list{
        padding-right: 10%;
        margin-top: 1vw;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-item{
        width: 49%;
        /* height: 7vw; */
        background: #fff;
        border-radius:1vw;
        margin-bottom: 1.3vw;
    }
    .product-item a{
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        /* justify-content: center; */
    }
    .product-item img{
        display: block;
        width: 112px;
        margin-left: 11.33vw;
    }
    .product-item p{
        font-size: 1.3vw;
        margin-left: 3vw;
    }

    /* 编辑软件 */
    .software-list{
        padding-right: 10%;
        margin-top: 1vw;
    }
    .software-item{
        width: 100%;
        /* height: 20.267vw; */
        background: #fff;
        border-radius:1vw;
        margin-bottom: 1vw;
    }
    .software-item a{
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        padding:1.4vw 3vw 1.4vw 3.2vw;
    }
    .software-img{
        display: block;
        width: 94px;
        
    }
    .software-right{
        margin-left: 2.6vw;
    }
    .software-right h5{
        font-size: 1.6vw;
    }
    .software-right p.software-desc span{
        width: 8.6vw;
        height: 2vw;
        font-size: 1.1vw;
        background: #6b6b6b;
        border-radius: 3vw;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.6vw;
    }
    .software-right p.software-desc{
        display: flex;
        align-items: center;
        font-size: 1.1vw;
        color: #6b6b6b;
        margin-top: 1vw;
    }
    .solution-item2 .swiper-system-item{
        background: #ebebed;
        height: 34vw;
    }
    .solution-item2 .product-item{
        background: #ebebed;
    }
    .solution-item2 .software-item{
        background: #ebebed;
    }
    .solution-item3 .swiper-pagination-group{
         width:56vw;
    }
    .solution-item3 .thumbnall-page-pc{
        width:25vw;
    }


    /* 应用案例 */
    .page-four{
        padding: 5vw 10% 0 ;
    }
    .page-case{}
    .page-case-item{
        margin-top: 3vw;
    }
    .page-case-item h3{
        font-size: 2.1vw;
        font-weight: normal;
        padding-bottom: 1vw;
        background: url(../img/title-line.png) no-repeat left bottom;
        background-size: 2vw auto;
    }
    .case-list-box{
        width: 100%;
        overflow-x: auto;
        margin-top: 2.4vw;
    }
    .case-nav{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .case-nav-item{
        padding: 0.5vw 1.6vw;
        border-bottom: 1px solid #aaaaaa;
        font-size:1vw;
        cursor: pointer;
    }
    /* .case-nav-item:nth-of-type(2){
        padding: 0 3vw;
    } */
    .case-nav-item span{
        display: inline-block;
        /* padding: 0.5vw 0.1vw; */
        /* border-bottom: 1px solid #aaaaaa; */
    }
    .case-nav-item.active{
        border-bottom: 2px solid #aa0000;
        color: #aa0000;
    }
    .case-list{
        margin-top: 30px;
        display: flex;
        flex-wrap: nowrap;
        
    }
    .case-list-box1 .case-list{
        width:100%;
    }
    .case-list-box2 .case-list{
        width:100%;
    }
    .case-item{
        width: 100%;
        background: none;
        border-radius: 0;
        margin-right: 0;
        overflow: hidden;
        display: none;
    }
    .case-item-img-box{
        width: 100%;
        height:44.6vw;
        position: relative;
    }
    .case-list-box2 .case-item-img-box{
        /* height:22.3vw; */
    }
    .play-img{
        width: 50px;
        height: 50px;
    }
    .case-title{
        padding-left: 0;
        height: 60px;
        line-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:1.1vw;
        color: #6b6b6b;
    }
    .next-btn{
        width: 10px;
        margin-left: 10px;
    }
    .video-tips{
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        border: none;
        border-radius: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .video-tips h4{
        display: flex;
        align-items: center;
        font-size: 14px;
        background: #6b6b6b;
        color: #fff;
        padding: 4px 1vw 5px;
        border-radius: 3vw;
    }
    .video-tips h4 img{
        width: 22px;
        margin-right: 8px;
    }
    .video-tips-text{
        font-size: 14px;
        color: #6b6b6b;
        margin-left: 10px;
        margin-top:0;
    }


    /* 创作者社区 */
    .page-five{
        padding: 5vw  10% 0;
    }

    .creator-list-box{
        width: 100%;
        overflow-x: auto;
        margin-top: 30px;
    }
    .creator-list{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .creator-item{
        width: 32.3%;
        margin-right: 1%;
        position: relative;
        cursor: pointer;
    }
    .creator-item-img-box{
        width: 100%;
        position: relative;
    }
    .creator-cover{
        display: block;
        width: 100%;
    }
    .creator-img{
        position: absolute;
        width: 50px;
        height: 50px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 2;
    }
    .creator-title{
        position: absolute;
        z-index: 8;
        left: 20px;
        top: 80%;
        color: #fff;
    }
    .creator-title h5{
        font-size: 24px;
    }
    .creator-title p{
        font-size: 16px;
    }
    .creator-active  h3{
        margin-top: 40px;
        font-size: 24px;
        background: url(../img/title-line.png) no-repeat left bottom;
        background-size: 20px auto;
        padding-bottom: 10px;
    }
    .creator-active{
        /* margin-right: 6.67vw; */
        
    }
    .creator-swiper{
        margin-top: 30px;
        overflow: hidden;
        position: relative;
    }
    .creator-swiper-slide{
        width: 100%;
    }
    .swiper-creator-item{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        /* border-radius: 2vw; */
        overflow: hidden;
    }
    .swiper-creator-item a{
        width: 100%;
        position: relative;
    }
    .swiper-creator-item-img{
        display: block;
        width: 100%;
    }
    .swiper-creator-item-desc{
        height: 5.6vw;
        line-height: 5.6vw;
        font-size: 1vw;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        bottom: 0;
        padding-left: 2vw;
    }
    .thumbnall-creator-page{
        width:55vw;
        height: 58px;
        margin:0 auto 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .thumbnall-creator-page .swiper-pagination-bullet-active{
        background: #6b6b6b;
        width: 15vw;
    }
    .creator-swiper .swiper-pagination-group{
        padding-right: 0;
    }

    /* VR影像技能教育 */
    .page-six{
        padding: 5vw 10% 0;
    }
    .page-six > .page-desc{
        text-align: center;
    }
    .vr-education{
        margin-top: 3vw;
        background: #e7e7e9;
        border-radius: 2.266vw;
    }
    .vr-education > a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .vr-education-img{
        display: block;
        width: 100%;
    }
    .vr-education-title{
        height: 5.6vw;
        display: flex;
        align-items: center;
        padding-left: 3vw;
        font-size: 1.5vw;
        justify-content: center;
    }

    /* 技术支持 */
    .page-seven{
        padding: 60px 5% 0 ;
    }
    .page-seven .page-desc{
        padding-right: 0;
        
    }
    .page-seven h3{
        margin-top: 40px;
        font-size: 24px;
        background: url(../img/title-line.png) no-repeat left bottom;
        background-size: 20px auto;
        padding-bottom: 10px;
    }
    .support-img-box{
        width: 100%;
        overflow-x: auto;
    }
    .support-img{
        width:100%;
        max-width: 100%!important;
        margin-top: 30px;
    }
    .reference-list{
        margin-right: 12px;
        margin-top: 30px;
        border-top: 1px solid #d0d0d0;
    }
    .reference-list li{
        border-bottom: 1px solid #d0d0d0;
    }
    .reference-box{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
    }
    .reference-box a{
        display: block;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .reference-icon{
        width: 60px;
        height: 60px;
    }
    .reference-text{
        margin-left: 30px;
    }
    .reference-text h5{
        font-size: 20px;
    }
    .reference-text p{
        font-size: 16px;
        color: #6b6b6b;
        margin-top: 6px;
    }
    .reference-box .next-btn{
        margin-left: auto;
        width: 12px;
    }
    .document-list{
        margin-top: 40px;
        margin-right: 0;
        display: flex;
        justify-content: space-between;
    }
    .document-list li{
        width: 49%;
        /* margin-right: 2%; */
    }
    .document-box{
        width: 100%;
        background: #e7e7e9;
        border-radius: 10px;
        margin-bottom: 0;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        padding: 20px;
        
    }
    .document-cover{
        width: 30%;
    }
    .document-right{
        width: 68%;
        margin-left: 2%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .document-right-icon{
        width: 40px;
    }
    .document-right h4{
        font-size: 25px;
        margin-top: 20px;
    }
    .document-btn{
        display: block;
        width: 10vw;
        height: 40px;
        text-align: center;
        line-height: 40px;
        background: #282828;
        border-radius: 5vw;
        color: #fff;
        font-size: 16px;
        margin-top: 3vw;
    }
    .document-btn:hover,.document-btn:focus, .document-btn:hover{
        color: #fff;
    }

    .page-tel{
        font-size: 24px;
        font-weight: bold;
        margin-top: 60px;
    }


    /* .document-list{
        display: flex;
    }
    .document-list li{
        width: 600px;
    } */
    .guang-gao{
        top: 95px;
    }
}

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

    .privacy-tips{
        width: 70%;
        height: 160px;
        left: 2%;
        bottom: 12%;
        font-size: 12px;
        line-height: 18px;
        padding: 40px 10px 0 10px;
        background-color: rgba(73, 71, 72, .9);
    }
    .privacy-tips-btn-close{
        right: 10px;
        top: 10px;
    }
    .privacy-tips-btn-ok{
        font-size: 13px;
        width: 70px;
        height: 26px;
        line-height: 26px;
        bottom: 20px;
    }


    .logo-con {      
        height: 46px;
    }
    .logo-con .wrapper .item-con-logo {
        margin:10px 15px 6px;
    }
    .logo-con .wrapper .left {
        height: 30px;
    }
    .logo-con .wrapper .right {
        height: 30px;
        margin:6px 15px 6px;
    }
    
    .guang-gao {  
        font-size: 12px;    
        right: 11px!important;
        /* top: 85px!important; */
        padding: 5px 8px;
    }
    .container-bottom{
        flex-direction: column;
        text-align: center;
        padding-bottom: 10px;
        padding-top: 10px;
        height: 75px!important;
        /* margin-top: -90px!important; */
        width: 100% !important;
        /* position: fixed;
        left: 0;
        bottom: 0;
        z-index: 2; */
    }
    .container-footer{
        height: 95px;
        flex-direction: column;
        text-align: center;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .container-bottom >a, .container-bottom > span,.container-footer >a, .container-footer > span {
        color: #666;
        font-size: 12px;
        display: block;
        margin-top: 5px;
        text-decoration: none;
    }
    .footer .sns {
        text-align: center!important;
        position: relative!important;
        display: inline-block!important;
        margin: 5px auto!important;
        width: 100%!important;
        right: 0!important;
        top: 0px!important;
    }
    .link-con {
        position: relative!important;
        left: 0px!important;
        top: 0px!important;
        transform: translateX(0px)!important;
        margin: 0 auto!important;
        width: 96%!important;
        flex-direction: column;
    }
    .container-bottom a, .container-bottom span,.container-footer a, .container-footer span{
        font-size: 11px;
    }
    .gongan{
        width: 12px;
        height: 12px;
    }
    .footer .sns .title {
        display: inline-block;
        color: #fff;
    }
    .footer .sns .icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        margin-left: 10px;
    }
    .footer .sns .icon img {
        width: 100%;
        height: auto;
    }
    .footer .sns .icon.wechat .popup_wechat {
        display: none;
        position: absolute;
        padding: 15px;
        bottom: 35px;
        left: 50%;
        background: #fff;
        border: 2px solid #000;
        z-index: 15;
        transform: translateX(-50%);
    }
}









