body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;padding:0}
body { background:#fff; color:#555; font-size:14px; font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif; -webkit-text-size-adjust:100%;}
a{text-decoration:none}
a:hover{text-decoration:underline}
* { touch-action: none; }  
.body {
    cursor: grab;
    user-select: none;
}
.body:active{
    cursor: grabbing;
}
.logoWrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
}
.logoWrapper .white_logo img, .logoWrapper .gray_logo img {
    width: 160px;
    height: 160px;
}

.copyRightWrapper {
    position: fixed;
    bottom: 24px;
    left: 36px;
    font-size: 14px;
    z-index: 99;
}
.copyRightWrapper.white {
    color: #fff;
    font-weight: 600;
}

.progressLineWrapper {
    position: fixed;
    top: 78px;
    right: 58px;
    z-index: 99;
}

.progressLineWrapper .line {
    width: 24px;
    height: 3px;
    background-color: rgba(0,0,0,0.2);
    margin: 0 0 16px auto;
}

.progressLineWrapper .white_lineList .active_line {
    width: 34px;
    height: 3px;
    background-color: #fff;
}
.progressLineWrapper .gray_lineList .active_line {
    width: 34px;
    height: 3px;
    background-color: #939393;
}

.pullDownArrowWrapper {
    position: fixed;
    bottom: 24px;
    left: calc(50% - 25px);
    width: 50px;
    height: 29px;
}

.pullDownArrowWrapper .gray_arrow img, .pullDownArrowWrapper .white_arrow img {
    width: 100%;
    height: 100%;
}

.pullDownArrowWrapper .fadeAni {
    animation: fadeInAndOut 2s linear infinite;
}

@keyframes fadeInAndOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container .main {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('./images/pc-p1-bk.jpg') center/cover;
    padding: 260px 0 0 100px;
}
.main .mainTitle {
    font-size: 68px;
    font-weight: 500;
    letter-spacing: 10px;
    color: #fff;
    margin-bottom: 24px;
}
.main .purpose {
    font-size: 32px;
    color: #fff;
    font-weight: 100;
    margin-bottom: 10px;
}
.main .purpose .strong {
    font-size: 32px;
    color: #fff;
    font-weight: 400;
}

.container .introduce {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('./images/introduce_bg.jpg') no-repeat right/40%;
    padding: 260px 0 0 100px;
}
.introduce .desc {
    width: 700px;
}
.introduce .desc .topic {
    position: relative;
    text-align: center;
    font-size: 56px;
    margin-bottom: 24px;
}

.introduce .desc .topic::after{
    display: block;
    width: 240px;
    height: 3px;
    background-color: #55c034;
    content: '';
    margin: 10px auto 0;
}

.introduce .desc .paragraph {
    font-size: 24px;
    letter-spacing: 5px;
    text-indent: 36px;
}

.container .appInfo {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('./images/main-base.png') no-repeat right top/50%;
}

.appInfo .appContainer {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.appContainer .appIntro {
    padding-top: 260px;
    position: relative;
}
.appContainer .appIntro, .appContainer .pictureList {
    width: 50%;
}
.appIntro .shape-inner .shape {
    position: absolute;
    pointer-events: none;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.shape-inner .shape1 {
    top: 23%;
    left: 5%;
}
.shape-inner .shape2 {
    top: 39%;
    left: 37%;
}
.shape-inner .shape3 {
    top: 21%;
    right: 9%;
}
.shape-inner .shape4 {
    top: 72%;
    right: 13%;
}
.shape-inner .shape5 {
    top: 65%;
    left: 10%;
}
.shape-inner .shape6 {
    top: 53%;
    left: -12%;
}
.shape-inner .shape7 {
    top: 94%;
    right: 46%;
}
.rotate3d {
    -webkit-animation: rotate3d 2s linear infinite;
    animation: rotate3d 1s linear infinite;
}
.rotate2d {
    -webkit-animation: rotate2d 2s linear infinite;
    animation: rotate2d 1s linear infinite;
}
.rotate-2d {
    -webkit-animation: rotate-2d 2s linear infinite;
    animation: rotate-2d 1s linear infinite;
}
@-webkit-keyframes rotate3d {
    0% {
       -webkit-transform: rotateY(0deg);
               transform: rotateY(0deg);
   }
    100% {
        -webkit-transform: rotateY(360deg);
                transform: rotateY(360deg);
    }    
}

@keyframes rotate3d {
    0% {
       -webkit-transform: rotateY(0deg);
               transform: rotateY(0deg);
   }
    100% {
        -webkit-transform: rotateY(360deg);
                transform: rotateY(360deg);
    }    
}
@-webkit-keyframes rotate2d {
    0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }    
}
@keyframes rotate2d {
    0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }    
}
@-webkit-keyframes rotate-2d {
    0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }    
}
@keyframes rotate-2d {
    0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }    
}
.appIntro .title {
    text-align: center;
    font-weight: bold;
    color: #36324a;
    font-size: 38px;
    margin-bottom: 24px;
}
.appIntro .detail .p1{
    color: #ffba08;
    font-size: 30px;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.appIntro .detail .tagList {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.appIntro .detail .tagList .tag {
    padding: 4px;
    border: 1px solid #36324a;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}
.appIntro .detail .tagList .tag:not(:last-child) {
    margin-right: 10px;
}
.appIntro .detail .testIntro {
    /* padding-left: 80px; */
    font-size: 18px;
    color: #36324a;
    text-align: center;
}
.appIntro .detail .testIntro div {
    margin-bottom: 16px;
}
.appContainer .pictureList{
    position: relative;
}
.pictureList .pic {
    position: relative;
    pointer-events: none;
}
.pictureList .pic-rotate {
    position: absolute;
    top: 100px;
    transform-origin: bottom;
    transform: rotate(45deg);
    z-index: 1;
}
.pictureList .pic img{
    width: 60%;
}

.container .workInfo {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('./images/work_table.jpg') center/cover;
    padding: 260px 0 0 100px;
}

.workInfo .content {
    width: 700px;
}

.workInfo .content .slogan{
    font-size: 64px;
    letter-spacing: 8px;
    margin: 84px 0 0 84px;
}

.workInfo .content .slogan:nth-child(2){
    font-size: 46px;
    letter-spacing: 8px;
    margin: 16px 0 0 84px;
}

.container .culture {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.culture img {
    -webkit-user-drag:none
}
.culture .heading {
    position: absolute;
    left: 78px;
    top: 260px;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
}
.culture .heading div {
    font-size: 28px;
    font-weight: bold;
}
.culture .pictureList {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    animation: walk 3s linear infinite alternate;
    width: 100%;
}
.culture .pictureList .part1 {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    width: 24%;
    height: 100%;
    margin-right: 8px;
}
.culture .pictureList .part1 img:nth-child(1){
    box-sizing: border-box;
    width: 100%;
    height: 66%;
}
.culture .pictureList .part1 img:nth-child(2){
    padding-top: 8px;
    box-sizing: border-box;
    width: 100%;
    height: 34%;
}

.culture .pictureList .part2 {
    display: flex;
    flex-shrink: 0;
    width: 86%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}
.culture .pictureList .part2 .top {
    display: flex;
    width: 100%;
    height: 40%;
    margin-bottom: 8px;
}
.culture .pictureList .part2 .top img:nth-child(1) {
    box-sizing: border-box;
    width: 27%;
    padding-right: 8px;
}
.culture .pictureList .part2 .top img:nth-child(2) {
    box-sizing: border-box;
    width: 21%;
    padding-right: 8px;
}
.culture .pictureList .part2 .top img:nth-child(3) {
    box-sizing: border-box;
    width: 25%;
    padding-right: 8px;
}
.culture .pictureList .part2 .top img:nth-child(4) {
    width: 27%;
}
.culture .pictureList .part2 .bottom {
    display: flex;
    width: 100%;
    height: 60%;
}
.culture .pictureList .part2 .bottom>img:nth-child(1){
    box-sizing: border-box;
    width: 30%;
    padding-right: 8px;
}
.culture .pictureList .part2 .bottom>img:nth-child(2){
    box-sizing: border-box;
    padding-right: 8px;
    width: 43%;
}
.culture .pictureList .part2 .bottom .lastImg{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-right: 0px;
    width: 27%;
    height: 100%;
}
.culture .pictureList .part2 .bottom .lastImg img{
    width: 100%;
    height: 259px;
}
.culture .pictureList .part2 .bottom .lastImg .textWrapper{
    flex: 1;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    font-family: "楷体","楷体_GB2312";
    font-size: 36px;
    padding: 15% 0;
}
.culture .pictureList .part2 .bottom .lastImg .textWrapper .text div:nth-child(1){
    padding-left: 15%;
    text-align: left;
}
.culture .pictureList .part2 .bottom .lastImg .textWrapper .text div:nth-child(2){
    padding-right: 15%;
    text-align: right;
}

@keyframes walk {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-10%);
    }
}


@media screen and (max-width: 576px) { 
    .logoWrapper {
        position: fixed;
        top: 4%;
        left: 4%;
    }
    .logoWrapper .white_logo img, .logoWrapper .gray_logo img {
        width: 100px;
        height: 100px;
    }
    .progressLineWrapper {
        position: fixed;
        top: 44px;
        right: 24px;
    }
    .container .main {
        padding: 46% 0 0 10%;
    }
    .main .mainTitle {
        width: 90%;
        font-size: 34px;
        letter-spacing: 2px;
    }
    .main .purpose {
        letter-spacing: 2px;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        margin-bottom: 10px;
    }
    .main .purpose .br {
        display: block;
    }
    .main .purpose:nth-child(2){
        width: 70%;
    }
    .main .purpose:nth-child(3){
        width: 100%;
    }
    .main .purpose .strong {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
    }

    .container .introduce {
        padding: 52% 0 0 10%;
        background-size: cover;
        background-position: -66% -42px;
    }
    .introduce .desc {
        width: 100%;
    }
    .introduce .desc .topic {
        position: relative;
        text-align: left;
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .introduce .desc .topic::after{
        display: block;
        width: 60px;
        height: 3px;
        background-color: #55c034;
        content: '';
        margin: 10px 0;
    }
    
    .introduce .desc .paragraph {
        padding-right: 16px;
        font-size: 16px;
        letter-spacing: 2px;
        text-indent: 36px;
        font-weight: 500;
    }
    .appContainer .appIntro, .appContainer .pictureList {
        width: 100%;
    }
    .appContainer .appIntro {
        padding-top: 120px;
    }
    .appContainer .pictureList {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    .appIntro .title {
        font-size: 30px;
    }
    .appIntro .detail .p1 {
        font-size: 24px;
    }
    .appIntro .detail .testIntro {
        font-size: 16px;
    }
    .appIntro .detail .tagList .tag {
        font-size: 16px;
        font-weight: normal;
    }
    .container .workInfo {
        padding: 62% 0 0 10%;
        background-position: 70%;
    }
    
    .workInfo .content {
        width: 700px;
    }
    
    .workInfo .content .slogan{
        font-size: 32px;
        letter-spacing: 8px;
        margin: 84px 0 0 16px;
    }
    
    .workInfo .content .slogan:nth-child(2){
        font-size: 23px;
        letter-spacing: 8px;
        margin: 16px 0 0 16px;
    }

    .culture .heading {
        position: absolute;
        left: 42px;
        top: 140px;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        z-index: 10;
    }
    .culture .heading div {
        font-size: 16px;
        margin-top: 8px;
        font-weight: lighter;
    }
    .culture .pictureList {
        display: flex;
        flex-wrap: nowrap;
        height: 100vh;
        animation: walkMobile 7s linear infinite alternate;
        width: 360%;
    }
    .culture .pictureList .part2 .bottom .lastImg img{
        flex-shrink: 2;
    }
    .culture .pictureList .part2 .bottom .lastImg .textWrapper{
        padding: 0;
        font-size: 28px;
    }
    @keyframes walkMobile {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-82%);
        }
    }
}