/* PC端样式 */
.pc-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
/* 顶部栏样式 */
.pc-view header {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    width: 1920px;
    height: 82px;
    background: #ffffff;
    z-index: 10;
}
.pc-view header .logo {
    margin-left: 388px;
    margin-right:  611px;
    width: 100px;
    height: 30px;
    transition: all 1s;
    opacity: 0;
}
/* tab栏目样式 */
.pc-view .tab {
    display: flex;
    align-items: center;   
}
.pc-view .tab a {
    display: block;
    box-sizing: border-box;
    margin-right: 47px;
    height: 30px;
    font-weight: 400;
    line-height: 30px;
    font-size: 16px;
}
.pc-view .tab .commom {
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    color: #363434;
}
.pc-view .tab .selected {
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    color: #396843;
    border-bottom: 2px solid #396843;
}
/* 主体区域样式 */
.pc-view main {
    padding-top: 82px;
    width: 1920px;
    background: #f8f8f8;
}
.pc-view main .main {
    position: relative;
    height: 670px;
    min-height: 400px;
}
.pc-view .main .logo{
    position: absolute;
    left: 484px;
    top: 96px;
    width: 207px;
    height: 61px;
}
.pc-view .main .intro{
    position: absolute;
    left: 1127px;
    top: 10%;
    width: auto;
    height: 75%;
}
.pc-view .main .title {
    position: absolute;
    left: 484px;
    top: 196px;
    height: 37px;
    font-size: 26px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 550;
    text-align: left;
    color: #030303;
    line-height: 37px;
}
.pc-view .main .context {
    position: absolute;
    top: 247px;
    left: 484px;
    width: 416px;
    height: 60px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: left;
    color: #030303;
    line-height: 25px;
}
/* 倒流按钮区 */
.pc-view .main .button {
    position: absolute;
    width: 180px;
    height: 54px;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg,#3c6454 9%, #244839 88%);
    border-radius: 27px;
    box-shadow: 1px 2px 5px 0px rgba(66,66,66,0.50); 
}
.pc-view .main .wechat {
    top: 348px;
    left: 469px;
}
.pc-view .main .android {
    top: 348px;
    left: 684px;
}
.pc-view .main .ios {
    top: 428px;
    left: 469px;
}
.pc-view .button .icon  {
    position: absolute;
    top: 2px;
    width: 50px;
    height: 50px;
    background-size: 50px;
}
.pc-view .wechat .icon {
    left: 18px;
    background-image: url('../images/wechat.png');
}
.pc-view .android .icon {
    left: 11px;
    background-image: url('../images/android.png');
}
.pc-view .ios .icon {
    left: 17px;
    background-image: url('../images/ios.png');
}
.pc-view .button .text {
    position: absolute;
    top: 17px;
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
    line-height: 20px;
}
.pc-view .wechat .text {
    left: 64px;
}
.pc-view .android .text {
    left: 55px;
}
.pc-view .ios .text {
    left: 63px;
}
.pc-view .button .code {
    visibility: hidden;
    position: absolute;
    bottom: 73px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 196px;
    height: 231px;
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 18px;
    box-shadow: 1px 5px 15px 0px rgba(134,134,134,0.50); 
}
.pc-view .code .code-img {
    margin-top: 11px;
    width: 170px;
    height: 170px;
}
.pc-view .code .code-text {
    margin-top: 10px;
    width: 154px;
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: left;
    color: #030303;
    line-height: 20px;
}
/* 鼠标经过时改变样式 */
.pc-view .main .button:hover {
    background: #ffffff;
}
.pc-view .button:hover .icon  {
    position: absolute;
    top: 2px;
    width: 50px;
    height: 50px;
}
.pc-view .wechat:hover .icon {
    left: 18px;
    background-image: url('../images/wechathover.png');
}
.pc-view .android:hover .icon {
    left: 11px;
    background-image: url('../images/andhover.png');
}
.pc-view .ios:hover .icon {
    left: 17px;
    background-image: url('../images/ioshover.png');
}
.pc-view .button:hover .text {
    color: #244031;
}
.pc-view .button:hover .code {
    visibility: visible;
}
/* 功能介绍板块 */
.pc-view .main .bgc {
    position: absolute;
    width: 1920px;
    height: 80%;
    background: #d2ddda;
}
.pc-view .main .func-img {
    position: absolute;
    top: 0;
    height: 90%;
}
.pc-view .main .func-img {
    position: absolute;
    top: 16%;
    width: auto;
    height: 75%;
}
.pc-view .main .front-img {
    left: 553px;
}
.pc-view .main .after-img {
    left: 1000px;
}
.pc-view .main .func-title {
    position: absolute;
    top: 40%;
    width: 400px;
    height: 42px;
    font-size: 30px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 550;
    color: #030303;
    line-height: 42px;
}
.pc-view .main .func-intro {
    position: absolute;
    top: 48%;
    width: 416px;
    height: 60px;
    font-size: 15px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 420;
    text-align: left;
    color: #030303;
    line-height: 25px;
}
.pc-view .main .front-intro,
.pc-view .main .front-title {
    left: 950px;
}
.pc-view .main .after-intro,
.pc-view .main .after-title {
    left: 499px;
}
.pc-view main .future,
.pc-view main .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1920px;
}
.pc-view .future .future-title,
.pc-view .contact .contact-title {
    width: 120px;
    height: 42px;
    font-size: 30px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 550;
    text-align: center;
    color: #030303;
    line-height: 42px;
}
.pc-view .future .future-intro {
    margin-top: 73px;
    width: 505px;
    height: 68px;
    font-size: 15px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 25px;
}
.pc-view main .future {
    height: 360px;
    background: #f5f5f5;
}
.pc-view .future .future-title {
    margin-top: 72px;
}
.pc-view main .contact {
    height: 412px;
    background: #d2ddda;;
}
.pc-view .contact .contact-title {
    margin-top: 107px;
}
.pc-view .contact .contact-channels {
    display: flex;
    justify-content: space-between;
    margin-top: 73px;
    width: 400px;
    height: 85px;
}
.pc-view .contact-channels .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65px;
    height: 85px;
}
.pc-view .contact-channels .contact-icon {
    width: 54px;
    height: 54px;
    cursor: pointer;
}
.pc-view .contact-channels .contact-wechat {
    position: relative;
    width: 54px;
    height: 54px;
    background: url('../images/contact2.png');
    background-size: 54px;
    cursor: pointer;
}
.pc-view .contact-channels .contact-wechat:hover {
    background: url('../images/contact2hover.png');
    background-size: 54px;
}
.pc-view .wechat-code {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 76px;
    transform: translateX(-50%);
    width: 138px;
    height: 172px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #cecece;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.50); 
}
.pc-view .wechat-code::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 7px solid rgba(0,0,0, 0);
    border-top: 15px solid #ffffff;
}
.pc-view .wechat-code img {
    margin-top: 11px;
    width: 122px;
    height: 122px;
}
.pc-view .wechat-code p {
    margin-top: 4px;
    width: 120px;
    height: 22px;
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #2b2b2b;
    line-height: 22px;
}
.pc-view .contact-wechat:hover .wechat-code {
    visibility: visible;
}
.pc-view .contact-channels .contact-cooperation {
    position: relative;
    width: 54px;
    height: 54px;
    background: url('../images/contact3.png');
    background-size: 54px;
    cursor: pointer;
}
.pc-view .contact-channels .contact-cooperation:hover {
    background: url('../images/contact3hover.png');
    background-size: 54px;
}
.pc-view .contact-cooperation:hover .wechat-code {
    visibility: visible;
}
.pc-view .contact-channels .contact-name {
    margin-top: 9px;
    width: 65px;
    height: 21px;
    user-select: none;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 20px;
}
/* 底部区域 */
.pc-view footer {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 77px;
    width: 1920px;
    height: 260px;
}
.pc-view footer p {
    margin-bottom: 9px;
    width: 505px;
    height: 25px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 20px;
}
.pc-view footer a {
    color: #030303;
}


/* 移动端样式 */
.phone-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 375px;
    background-color: #f8f8f8;
}
/* 顶部栏样式 */
.phone-view header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 100;
}
.phone-view .phone-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: #ffffff;
}
.phone-view header .logo {
    position: absolute;
    top: 9px;
    left: 16px;
    width: 100px;
    height: 30px;
    transition: all 1s;
}
.phone-view header .download {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 73px;
    height: 30px;
    background: linear-gradient(135deg,#3c6454 9%, #244839 88%);
    border-radius: 7px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.50); 
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 30px;
    transition: all 1s;
    opacity: 0;
    pointer-events: none;
}
/* 主体区域样式 */
.phone-view main {
    padding-top: 48px;
    width: 100%;
}
.phone-view main .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 935px;
}
.phone-view .main .title {
    margin-top: 22px;
    width: 162px;
    height: 25px;
    font-size: 18px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    text-align: left;
    color: #030303;
    line-height: 25px;
}
.phone-view .main .context {
    margin-top: 19px;
    width: 261px;
    height: 39px;
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: justify;
    color: #030303;
    line-height: 20px;
}
/* 倒流区按钮 */
.phone-view .main .button {
    position: relative;
    width: 190px;
    height: 54px;
    background: linear-gradient(135deg,#3c6454 9%, #244839 88%);
    border-radius: 27px;
    box-shadow: 1px 2px 5px 0px rgba(66,66,66,0.50); 
}
.phone-view .main .wechat {
    margin-top: 34px;
    margin-bottom: 26px;
}
.phone-view .wechat .launch-btn {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 54px;
    border-radius: 27px;
    z-index: 1;
}
.phone-view .button img {
    position: absolute;
    top: 2px;
    left: 15px;
    width: 50px;
    height: 50px;
}
.phone-view .button p {
    position: absolute;
    top: 17px;
    left: 66px;
    width: 104px;
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
    line-height: 20px;
}
.phone-view .main .intro {
    margin-top: 26px;
    width: 308px;
    height: 586px;
}
/* 功能介绍板块 */
.phone-view main .tool {
    width: 100%;
    height: 791px;
}
.phone-view main .bgc {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 667px;
    background: #d2ddda;
}
.phone-view .tool .func-title {
    margin-top: 31px;
    height: 25px;
    font-size: 18px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    color: #030303;
    line-height: 25px;
}
.phone-view .tool .func-intro {
    margin-top: 22px;
    width: 261px;
    height: 68px;
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: justify;
    color: #030303;
    line-height: 20px;
}
.phone-view .tool .func-img {
    margin-top: 25px;
    width: auto;
    height: 586px;
}
/* 产品愿景&联系我们 */
.phone-view main .future,
.phone-view main .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 252px;
}
.phone-view main .future {
    background-color: #f5f5f5;
}
.phone-view main .contact {
    background: #d2ddda;
}
.phone-view .future .future-title {
    margin-top: 52px;
    height: 25px;
    font-size: 18px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    color: #030303;
    line-height: 25px;
}
.phone-view .future .future-intro {
    margin-top: 22px;
    width: 261px;
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: justify;
    color: #030303;
    line-height: 20px;
}
.phone-view .contact .contact-title {
    margin-top: 44px;
    height: 25px;
    font-size: 18px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    text-align: left;
    color: #030303;
    line-height: 25px;
}
/* 联系我们icon区域 */
.phone-view .contact .contact-channels {
    display: flex;
    justify-content: space-between;
    margin-top: 52px;
    width: 330px;
}
.phone-view .contact-channels .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65px;
    height: 72px;
}
.phone-view .contact-channels .contact-icon {
    width: 38px;
    height: 38px;
    cursor: pointer;
}
.phone-view .contact-channels .contact-name {
    margin-top: 9px;
    width: 65px;
    height: 21px;
    user-select: none;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 20px;
    width: 65px;
}
/* 二维码弹窗区域 */
.phone-view .phone-code {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 44, 44, 0.8);
    z-index: 99;
}
.phone-view .phone-code .code-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 287px;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 10px;
}
.phone-view .code-div .code-img {
    margin-top: 20px;
    width: 210px;
    height: 210px;
    background-size: 210px;
}
.phone-view .mobile-gongzhonghao .code-img {
    background-image: url('../images/mobile/gongzhonghao.png');
}
.phone-view .mobile-cooperation .code-img {
    background-image: url('../images/mobile/cooperation.png');
}
.phone-view .code-div .code-title {
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 500;
    color: #030303;
    line-height: 20px;
}
/* 底部区域 */
.phone-view footer {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 52px;
    width: 100%;
    height: 236px;
}
.phone-view footer p {
    margin-bottom: 12px;
    width: 276px;
    height: 17px;
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 17px;
}
.phone-view footer a {
    color: #030303;
}