/* public */
/*#region*/
.app {
    background: #F5F6FE;
}

.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(245 246 254), 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:85px;
}
.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: 60px;
}

/*#endregion*/

/* base */
/*#region*/
.base {
    padding-top: 148px;
}

.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: 48px;
}

.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;
}
@media(max-width: 767px){
    .base {
        padding-top: 60px;
    }
    .base .title {
        margin-bottom: 30px;
    }
    .base .txt{
        margin:24px 0 24px;
        padding: 24px;
        border-radius:12px;
    }
}
/*#endregion*/


/* brunch */
/*#region*/
.brunch {
    padding-top: 148px;
    padding-bottom: 148px;
}

.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: 15px;
}

.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 {
    padding-bottom: 10px;
    height: 0;
    overflow: hidden;
    transition: all ease-in-out .2s;
}

.brunch .tabs-handle .item .bd p {
    margin: 0;
    font-size: 14px;
    transform: translateY(10px);
    transition: all ease-in-out .2s;
}

.brunch .tabs-handle .item.cur .bd {
    padding-bottom: 25px;
    height: 48px;
}
.brunch .tabs-handle .item.cur .bd p{
    transform: translateY(0);
}

.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;
}
@media(max-width: 767px){
    .brunch {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .brunch .tabs-handle .item.cur .bd{
        height: auto;
    }
    .brunch .tabs-handle .item.cur .bd .img{
        margin-top:24px;
    }
}
/*#endregion*/

/* trends banner */
/*#region*/

.news {
    background: #F5F6FE!important;
    
}

.news .trends {
    background: #f5f6fe;
}


.news .trends .banner .text h2 {
    margin:0;
    color: #eaecee;
    font-size: 60px;
    font-weight: bold;
}

.news .trends .banner .text h3 {
    margin:0;
    font-size: 20px;
    color: #fff;
    padding: 32px 0 65px;
}

.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 .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:hover, .news .trends .title a.act {
    background: #0177ff;
    color: #fff;
}
@media(min-width: 768px){
}
@media(max-width: 767px){
    
    .news .trends .banner .text {
        align-items: center;
    }
    .news .trends .banner .text h2 {
        font-size: 36px;
        line-height: 1;
        text-align: center;
    }
    .news .trends .banner .text h3{
        padding:24px 0;
    }
    .news .trends .title{
        margin-bottom:24px;
        padding-bottom:24px;
    }
    .news .trends .title a{
        margin-bottom:10px;
    }
}
/*#endregion*/

/* trends list */
/*#region*/

.news .trends .list {
    padding-top: 88px;
}

.news .trends .list .content {
    padding: 0 24px;
}

.news .trends .list .headline {
    margin-bottom: 100px;
}

.news .trends .list .headline .txt {
    padding-top: 48px;
    padding-left: 100px;
}

.news .trends .list .headline .tag {
    display: inline-block;
    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 h4 a{
  
    color:#000;
    
}
.news .trends .list .headline p {
    margin-top: 20px;
    font-size: 14px;
    color: rgb(77, 85, 103);
}

.news .trends .list .headline a {
    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;
    box-sizing: border-box;

}
.news .trends .list .item a{
    color: #000;
   
}

.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;
}
.news .trends .list .item a h4{
    color: rgb(20, 27, 36);
}

.news .trends .list .item p {
    padding-top: 15px;
    font-size: 14px;
    font-weight: normal;
    color: rgb(77, 85, 103);
    height: 55px;
    overflow: hidden;
}

.news .trends .list .item .more {
    display: inline-block;
   font-size: 12px;
    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;
}
@media(min-width: 768px){
    
    .news .trends .list .item h4 {
        margin-top: 20px;
        font-size: 24px;
        height: 60px;
        overflow: hidden;
    }
}
@media(max-width: 767px){
    
    .news .trends .list {
        padding-top: 48px;
    }
    
    .news .trends .list .content {
        padding: 0;
    }
    
    .news .trends .list .headline {
        margin-bottom: 48px;
    }
    
    .news .trends .list .headline .txt {
        padding: 24px 0 0;
    }
    .news .trends .list .headline a{
        margin:0;
    }
    .news .trends .list .headline h4{
        font-size:18px;
        padding-right:0;
    }
    .news .trends .list .item h4{
        font-size:18px;
    }

}
/*#endregion*/

/* pager */
/*#region*/
.pager {
    padding: 50px 0;
    text-align: center;
}

.pager a {
    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;
    font-weight: normal;
}

.pager a.hover,.pager a:hover {
    background: rgb(1, 119, 255);
    color: #fff;
}

.pager .first, .pager .last,
.pager .prev, .pager .next {
    background: rgb(200, 228, 255);
    color: #fff;
    margin-left:5px ;
}

/*#endregion*/


/* news detail */
/*#region*/
.news .detail .head {
    background: #e6ecf6;
    padding-top:74px;
}

.news .detail .bread {
    padding: 24px 0 48px;
    color: #2f3747;
    font-size: 14px;
}

.news .detail .bread span {
    padding: 0 5px;
    color: #7a808d;
}

.news .detail .bread a {
    color: #7a808d;
}

.news .detail .head .author img {
    float: left;
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.news .detail .head h1 {
    margin-bottom: 48px;
    margin-top: 96px;
    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: 48px 0;
    padding: 48px 0;
}

.prev-next a{
    color: #007bff;
}

@media(min-width:768px){
    .news .detail .head .img img {
        border-radius: 16px;
    }
    .news .detail .head .img {
        margin-bottom: -50px;
    }
    .prev-next {
        display: flex;
        justify-content: space-between;
    }
    .prev-next div {
        flex: 0 0 auto;
    }
    .prev-next .next {
        text-align: right;
    }
}
@media(max-width:767px){
    
    .news .detail .bread {
        padding: 0 0 12px;
    }
    .news .detail .head .img {
        margin-left:-15px;
        margin-right:-15px;
    }
    .news .detail .head{
        padding-bottom:24px;
    }
    .news .detail .head h1{
        margin: 24px 0;
        font-size: 24px;
        line-height: 1.2;
    }
    .news .detail .main{
        padding-top:48px;
    }
    .prev-next {
        margin: 24px 0;
        padding: 24px 0;
    }
}
/*#endregion*/

/* news publish */
/*#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*/
@media (max-width: 767px) {
.about {
    background: #fff;
}
.contact .banner .box {
    padding: 108px 0 250px;
}

.contact .banner .text {
    font-size: 32px;
    padding: 30px 20px;
    border-radius: 40px 40px 40px 0;transform: translateY(0px);
}

.contact .banner .text .mask {
    padding-left: 10px;
    
    white-space: normal;
}

.contact .banner .text:nth-of-type(2) {
    margin-right: 0;
    margin-top: 40px;
}

.contact .banner .wave {
    background-size: 80px 80px;
    width: 80px;
    height: 80px;    bottom: 250px;
}

.contact .banner .text:nth-of-type(2) .mask {
    padding-right: 50px;
}
.want {
    padding-top: 120px;
}
.want .content{height: auto;}
.want .title .img {
    width: 100%;
    padding: 80px 0 0;
    background-size: 80% auto;
    margin-left: -50%;
    margin-top: -290px;
}
.want .content .item {
    flex-wrap: wrap;
    display: flex;
    max-width: 100%;
    height: auto;
        margin-right: 0;
    overflow: hidden;
    height: 60px;
    padding: 20px 20px;
    margin: 10px 0;
}
.want .content .item.active {
    height: auto;
    padding: 30px 20px;
}
.want .content .item h4 i {
    float: right;
    font-size: 24px;
}
.want .content .item.active h4 i {
transform: rotate(90deg);
}
.want .content .item h4 {
    transform: rotate(0deg) translateX(0px);
    width: 100%;
    top: 0;
position: relative;
    left: 0;
}


.want .content .item .img {
    flex: auto;
    margin-left: 0;

    margin-top: 30px;padding-top: 0;
}

.want .content {
    height: auto;
    display: block;
}

.want .content .item h4 span {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
}

.want .content .item .txt {margin-left: 0;padding: 0;flex: 0 0 100%;}

.want .content .item .txt h5 {
    font-size: 28px;
    line-height: 32px;
    padding-top: 30px;
    margin-bottom: 24px;
}
.want .content .item .txt p {
    margin-bottom: 20px;
}
.want .content .item .more {
    position: relative;
left: 0;
    bottom: 0;
    display: block;
}
.base .txt {
    box-shadow: none;
    padding: 0;
    margin: 30px 0 0;
}

.base .txt h4 {
    margin-bottom: 24px;
}
.base .title h3 {
    text-align: center;
}

.brunch .title h3 {
    text-align: center;
}

.base .row {
    /* flex-direction: column-reverse; */
}

.title h3 {
    font-size: 32px;
}
}