/* public */
/*#region*/
.app {
}

.banner .text h2 span {
    background: linear-gradient(to right, #4d9fc5, #2359f1, #c42e96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    transition: all ease-in-out .2s;
}

.banner .text h3 {
    margin: 0 0 30px;
    font-size: 60px;
}

.banner .text p {
    font-size: 16px;
}

.title {
    text-align: center;
}

.title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    color: #171922;
}

/*#endregion*/

/* contact banner */
/*#region*/
.contact .banner {
    background: #101827;
}

.contact .banner .box {
    margin: 0 auto;
    padding: 200px 0 300px;
    max-width:1000px;
    position: relative;
}

.contact .banner .text {
    border-radius: 70px 70px 70px 0;
    white-space: nowrap;
    padding: 20px 0;
    font-size: 60px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: transform ease-in-out .5s;
}

.contact .banner .text:nth-of-type(1) {
    background: #e3e8ef;
    color: #171922;
}

.contact .banner .text:nth-of-type(2) {
    margin-right: 130px;
    background: #0177ff;
    color: #fff;
}

.contact .banner .text .mask {
    overflow: hidden;
    padding-left: 50px;
    width: 100%;
}

.contact .banner .text.active {
    opacity: 1;
    transform: translateY(0);
}

.contact .banner .wave {
    content: '';
    position: absolute;
    bottom: 300px;
    right: 0;
    width: 130px;
    height: 130px;
    background: url(../img/ico_wave.gif) no-repeat 50%;
    background-size: 130px 130px;
    border-radius: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: transform ease 1s;
}

.contact .banner .wave.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes my-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-typing {
    -webkit-animation-name: my-fadeIn;
    animation-name: my-fadeIn;
}

@keyframes my-typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.my-typing {
    -webkit-animation-name: my-typing;
    animation-name: my-typing;
}

/*#endregion*/

/* want */
/*#region*/
.want {
    padding-top: 250px;
}

.want .title {
    position: relative;
    margin-bottom: 60px;
}

.want .title .img {
    background: url(../img/bg_smartphone.png) no-repeat 50% 0;
    background-size: 470px auto;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -400px;
    margin-top: -500px;
    width: 800px;
    padding: 80px 90px 60px;
}

.want .title .img:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44%;
    background-image: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.want .content {
    counter-reset: section;
    position: relative;
    height: 410px;
    border-radius: 16px;
    overflow: hidden;
    display:flex;
}

.want .content .item {
    position: relative;
    margin-right:-20px;
    flex:0 0 100px;
    max-width:100px;
    height: 410px;
    background: var(--bg-color);
    color: var(--text-color);
    display: inline-flex;
    flex-wrap: nowrap;
    border-radius: 14px;
    transition: all ease-in-out .2s;
}

.want .content .item.active{
    flex:1;
    max-width:100%;
}
.want .content .item h4 {
    position: absolute;
    left: 0;
    bottom: 0;
    width:400px;
    margin: 0;
    font-size: 16px;
    transform: rotate(-90deg) translateX(-40px);
    transform-origin: 0 0;
    cursor: pointer;
}
.want .content .item:nth-of-type(2) .txt img{
    vertical-align: top;
    max-width:60px;
}
.want .content .item:nth-of-type(2) .more a{
    background: #fff;
    color:#171922;
}
.want .content .item:nth-of-type(3) h4{
    color:#000;
}

.want .content .item h4:before {
    margin-right: 5px;
    counter-increment: section;
    content: "0" counter(section);
}

.want .content .item h4 span {
    display: inline-block;
    padding: 30px 0;
}

.want .content .item .img {
    margin-left: 80px;
    padding-top: 50px;
    flex: 0 0 300px;
}

.want .content .item .txt {
    flex: 0 0 400px;
    margin-left: 50px;
    padding-top: 50px;
}

.want .content .item .txt h5 {
    padding-top:5px;
    font-size: 36px;
    font-weight: bold;
    line-height: 60px;

}

.want .content .item .txt p {
    font-size: 14px;
    line-height: 20px;
}

.want .content .item .more {
    position: absolute;
    left: 430px;
    bottom: 70px;
}

/*#endregion*/

/* base */
/*#region*/
.base {
    padding-top: 150px;
}

.base .title {
    text-align: left;
    margin-bottom: 100px;
}

.base .txt {
    position: relative;
    z-index: 10;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    margin-right: -130px;
    padding: 50px;
}

.base .txt h4 {
    font-size: 24px;
    color: #1B202B;
    margin-bottom: 35px;
    font-weight: normal;
}

.base .txt p {
    margin: 0;
    color: rgb(77, 85, 103);
    font-size: 16px;
    line-height: 36px;
}

/*#endregion*/


/* brunch */
/*#region*/
.brunch {
    padding-top: 100px;
    padding-bottom: 100px;
}

.brunch .title {
    margin-bottom: 40px;
    text-align: left;
}

.brunch .title p {
    margin-top: 36px;
}

.brunch .tabs-handle .item {
    box-shadow: rgba(0, 0, 0, 0.1) 1px 6px 25px 1px;
    margin-bottom: 22px;
    padding: 25px 25px 0 25px;
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
}

.brunch .tabs-handle .item:last-child {
    margin: 0;
}

.brunch .tabs-handle .item .hd {
    margin-bottom: 25px;
}

.brunch .tabs-handle .item .hd h3 {
    margin: 0;
    position: relative;
    color: #1b202b;
    font-size: 20px;
    font-weight: bold;
}

.brunch .tabs-handle .item .hd i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    transform: rotate(0deg);
    transition: transform ease-in-out .2s;
}

.brunch .tabs-handle .item.cur .hd i {
    transform: rotate(90deg);
}

.brunch .tabs-handle .item .bd {
    height: 0;
    overflow: hidden;
    transition: all ease-in-out .2s;
}

.brunch .tabs-handle .item .bd p {
    margin: 0;
    font-size: 14px;
}

.brunch .tabs-handle .item.cur .bd {
    padding-bottom: 25px;
    height: 38px;
}

.brunch .tabs-slide {
    height: 600px;
    overflow: hidden;
}

.brunch .slide-box {
    transition: all ease-in-out .2s;
}

.brunch .tabs-slide .item {
    margin-bottom: 30px;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    transition: height ease-in-out .2s;
}

.brunch .tabs-slide .item.cur {
    height: 470px;
}

/*#endregion*/

/* trends banner */
/*#region*/

.news {
}

.news .trends {
    background: #f5f6fe;
}

.news .trends .banner {
    position: relative;
}

.news .trends .banner .box {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
}

.news .trends .banner .container {
    height: 100%;
}

.news .trends .banner .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.news .trends .banner .text h2 {
    color: #eaecee;
    font-size: 60px;
    font-weight: bold;
}

.news .trends .banner .text h3 {
    font-size: 20px;
    color: #fff;
    padding: 32px 0 65px;
}


.news .trends .title {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #cdd5df;
    text-align: left;
}

.news .trends .title h3 {
    margin-bottom: 20px;
}

.news .trends .title a {
    display: inline-block;
    margin-right: 16px;
    padding: 5px 20px;
    min-width: 64px;
    background: rgb(230, 236, 246);
    border-radius: 16px;
    font-size:14px;
    color: #000;
    cursor: pointer;
    text-align: center;
}

.news .trends .title a:hover, .news .trends .title a.act {
    background: #0177ff;
    color: #fff;
}

/*#endregion*/

/* trends list */
/*#region*/

.news .trends .list {
    padding-top: 85px;
}

.news .trends .list .content {
    padding: 0 25px;
}
.news .trends .list .content a{
    color:#007bff;
    font-size:14px;
}

.news .trends .list .headline {
    margin-bottom: 100px;
}

.news .trends .list .headline .txt {
    padding-top: 40px;
    padding-left: 100px;
}

.news .trends .list .headline .tag {
    padding: 5px 15px;
    background: rgb(230, 236, 246);
    border-radius: 16px;
}

.news .trends .list .headline h4 {
    font-size: 36px;
    color: rgb(27, 32, 43);
    padding-right: 60px;
    margin-top: 20px;
}

.news .trends .list .headline p {
    margin: 20px 0 0;
    font-size: 14px;
    color: rgb(77, 85, 103);
}

.news .trends .list .headline a {
    margin-top: 50px;
    display: inline-block;
}

.news .trends .list .grid {
    margin-bottom: 30px;
}

.news .trends .list .item {
    padding: 24px;
    position: relative;
    background: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 16px;
    margin-bottom: 32px;
    box-sizing: border-box;

}

.news .trends .list .item:hover {
    box-shadow: 0 0 49px 5px rgba(0, 0, 0, 0.15);
}

.news .trends .list .item .date {
    display:inline-block;
    padding-top: 16px;
    color: #758094;
}

.news .trends .list .item h4 {
    margin-top: 20px;
    font-size: 24px;
    color: rgb(20, 27, 36);
}

.news .trends .list .item p {
    padding-top: 15px;
    font-size: 14px;
    color: rgb(77, 85, 103);
}

.news .trends .list .item .more {
    display: inline-block;
    padding-top: 40px;
    color: rgb(1, 119, 255);
}

.news .trends .list .item .tag {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 14px;
    padding: 5px 15px;
    background: rgb(230, 236, 246);
    border-radius: 16px;
}

/*#endregion*/

/* pager */
/*#region*/
.pager {
    padding: 50px 0;
    text-align: center;
}

.pager a, .pager span {
    border: 1px solid #cdd5df;
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 14px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    color: #a3aebf;
}

.pager a:hover, .pager span:hover {
    background: #fff;
}

.pager .prev, .pager .next {
    background: rgb(200, 228, 255);
    color: #fff;
}

.pager .prev:hover, .pager .next:hover {
    background: rgb(1, 119, 255);
    color: #fff;
}

/*#endregion*/


/* news detail */
/*#region*/
.news .detail .head {
    background: #e6ecf6;
    padding-top:74px;
}

.news .detail .bread {
    padding: 24px 0 40px;
    color: #2f3747;
    font-size: 14px;
}

.news .detail .bread span {
    padding: 0 5px;
    color: #7a808d;
}

.news .detail .bread a {
    color: #7a808d;
}

.news .detail .head .img {
    margin-bottom: -50px;
}

.news .detail .head .img img {
    border-radius: 16px;
}

.news .detail .head .author img {
    float: left;
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.news .detail .head h1 {
    margin-bottom: 100px;
    font-size: 36px;
    font-weight: 400;
    color: rgb(40, 48, 56);
    line-height: 60px;
}

.news .detail .head .author h3 {
    margin: 0;
    font-size: 20px;
}

.news .detail .head .author p {
    margin: 0;
    font-size: 16px;
}

.news .detail .main {
    padding-top: 100px;
    font-size: 14px;

    background: rgb(245, 246, 254);
    color: rgb(77, 85, 103);
    line-height: 24px;
}

.news .detail .main .imageWrap {
    text-align: center;
}

.news .detail .main .title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 22px;
    text-align: left;
}

.prev-next {
    border-top: 1px solid #cdd5df;
    margin: 50px 0;
    padding: 50px 0;
    display: flex;
}

.prev-next a {
    flex: 1;

}

.prev-next .next {
    text-align: right;
}

/*#endregion*/

/* publish banner */
/*#region*/

.news .publish .pop {
    position: relative;
}

.news .publish .pop .box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.news .publish .pop .container {
    height: 100%;
}

.news .publish .pop .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news .publish .pop .text h2 {
    color: #eaecee;
    font-size: 60px;
    font-weight: bold;
}

.news .publish .pop .text h3 {
    font-size: 20px;
    color: #fff;
    padding: 32px 0 65px;
}

.news .publish .pop .play{
    position: relative;
    width: 60px;
    height: 60px;
}
.news .publish .pop .play i {
    background: url(data:image/png;base64,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) no-repeat 50%;
    background-size: 100%;
    display: inline-block;
    z-index:2;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
}
.news .publish .pop .play:before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    z-index:1;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    animation-fill-mode: both;
    animation: ani04 1.5s ease-in-out infinite;
}

@keyframes ani04 {
    0% {
        transform: scale(1);
        opacity: 0
    }
    20% {
        transform: scale(1.4);
        opacity: 1
    }
    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

/*#endregion*/

/* publish list */
/*#region*/
.publish .image{
    padding: 48px 0;
    background: #14081a;
    text-align: center;
}
.publish .image .title{
    color:#fff;
    margin-bottom:48px;
}
.publish .image .title h3{
    color:#fff;
}

.publish .point{
    padding: 48px 0;
}
.publish .point .title{
    position: relative;
    text-align: left;
    margin-bottom:24px;
}
.publish .point .control{
    position: absolute;
    top:0;right:0;
}
.publish .point .control div{
    display:inline-block;
    width:48px;
    height:48px;
    background: #e2f1ff;
    border-radius: 100%;
    line-height:48px;
    text-align: center;
    color:#0177FF;
    cursor:pointer;
}
.publish .point .control div:hover{
    background: #0177FF;
    color:#fff;
}

.publish .point .item{
    height:360px;
    display:flex;
    flex-direction: row-reverse;
}
.publish .point .img{
    flex: 0 0 360px;
    margin-left:30px;
    background: #14081a;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}
.publish .point .img img{
    max-width: 160px;
}
.publish .point .txt {
    flex: 1;
    background: #14081a;
    border-radius: 24px;
    padding:24px;
}
.publish .point .txt h4{
    margin:0;
    padding-top:10px;
    font-size:36px;
    color:#fff;
}
.publish .point .txt .user{
    position: absolute;
    left:24px;
    bottom:24px;
    width:400px;
    color:#fff;
}
.publish .point .txt .user img{
    width:64px;
    float:left;
    margin-right:10px;
    margin-top:-5px;
}
.publish .point .txt .user h5{
    margin:0;
    padding:10px 0;
}
.publish .point .txt .user p{
    margin:0;
}
.publish .list .grid{
    margin-bottom:30px;
}
.publish .list .item{
    position: relative;
    background: #14081a;
    border-radius: 24px;
    overflow: hidden;
}
.publish .list .item .time{
    position: absolute;
    top:20px;
    right:20px;
    background: #0177FF33;
    color:#fff;
    padding:5px 15px;
    border-radius:15px;
}
.publish .list .item .img{
    border-bottom:1px dashed #ffffff33;
}
.publish .list .item .txt{
    position: relative;
    color:#fff;
    padding:24px;
}
.publish .list .item .txt h4{
    margin: 0 0 10px;
    font-size:24px;
}
.publish .list .item .txt p{
    font-size:14px;
    margin:0;
    color: #C9D1DB;
}
.publish .list .item .play{
    position: absolute;
    top:40px;
    right:30px;
    width:48px;
    height:48px;
}
.publish .list .item .play:before{
    content: '';
    display:block;
    width:48px;
    height:48px;
    background: url(data:image/png;base64,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) no-repeat 50%;
    background-size: 100%;
    border-radius: 50%;
}
.publish .list .item:hover{
    background: linear-gradient(45deg, #b92c21FF -2.48%, #d2322cFF 47.21%, #d76849FF 93.62%) center center/105%;
}
.publish .list .item:hover .time{
    background: #ffffFF33;
}
.publish .list .item:hover .img{
    border-bottom:1px dashed #ffffff;
}
/*#endregion*/
