
.index-carousel .carousel-indicators{
    margin-bottom: 0.5rem;
}
.carousel-control-prev, .carousel-control-next {
    width: 10%;
}
.index-carousel .w-100{
    min-height: 200px;
}

.index-carousel .img-nv{
    display: none !important;
}


.tm-section-heading{
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.tm-section-heading h4 {
    padding-bottom: 15px;
    background: url("../images/index/ico2_2bg.png") no-repeat center bottom;
}



.index-service{
    background-color: #f6f7fc;
}
.service-wrap{
    padding: 50px 30px 50px 30px;
    text-align: center;
}

.service-wrap .slick-list{
    width: 97%;
    height: 180px;
    margin: 0 auto;
}
.index-service .slick-slider{
    width: 97%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
}
.service-wrap>.container>.slick-initialized{
    width: 100%
}
.service-wrap .tm-service{
    display: inline-block;
    padding: 0 0;
    max-width: 291px;
    min-width: 291px;
    white-space: nowrap;
    overflow: hidden;
}
.tm-tm-service-in{
    margin: 0px 8px;
    padding: 35px 0px;
    background-color: #fff;
    cursor: pointer;
}
.tm-service-logo{
    margin-bottom: 15px;
}
.index-service img {
    display: inline-block;
}
.tm-tm-service-in .imgon{
    display: none;
}
.tm-tm-service-in:hover{
    background-image: linear-gradient(to right,#fe7049,#ffb451);
}
.tm-tm-service-in:hover a{
    color: #fff;
}
.tm-tm-service-in:hover .imgoff{
    display: none;
}
.tm-tm-service-in:hover .imgon{
    display: inline-block;
}
.tm-tm-service-in a{
    color: #666666;
}







.synopsis-wrap{
    padding: 100px 0px;
}
.synopsis-img{
    width: 100%;
}
.synopsis-wrap .fade-in-right{
    padding: 30px;
    background: url("../images/index/ico2_1bg.png") no-repeat left top;
}
.synopsis-wrap .title {
    padding-bottom: 10px;
    margin-bottom: 20px;
    background: url("../images/index/ico2_2bg.png") no-repeat left bottom;
    font-size: 24px;
    color: #444;
}
.synopsis-wrap .txt{
    white-space: initial;
}
.synopsis-wrap .listnav {
    height: 80px;
    line-height: 80px;
    margin-bottom: 60px;
    padding-top: 30px;
}
.synopsis-wrap ul{
    flex-direction: row;
    list-style: none;
    padding-left: 0px;
}
.synopsis-wrap ul li {
    width: 25%;
    float: left;
    text-align: center;
}
.synopsis-wrap ul li a{
    color: #fff;
    display: block;
}
.btn.more {
    display: block;
    width: 230px;
    height: 60px;
    line-height: 45px;
    font-size: 14px;
    color: #8b8b8c;
    text-align: left;
    border: 1px solid #e4e4e4;
    padding: 0.375rem 1rem;
}
.btn.more .fa{
    float: right;
    line-height: 43px;
}



.index-project{
    padding: 50px 0;
    background-color: #f6f7fc;
}
.index-project .tm-section-heading>p{
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.tm-isotope-filter {
    margin-bottom: 50px;
}
.tm-isotope-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #d7d7d7;
}
.tm-isotope-filter ul li {
    margin: 0px 23px 0px;
}
.tm-isotope-filter ul li.active a,
.tm-isotope-filter ul li a:hover {
    color: #ec6c21;
}
.tm-isotope-filter ul li a {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 7px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #677788;
}

.tm-isotope-filter ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ec6c21;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tm-isotope-filter ul li.active a:before {
    width: 100%;
}

.tm-isotop-item {
    padding: 15px;
}

.tm-isotop-item .item-inner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tm-isotop-item .item-inner img {
    -webkit-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

.tm-isotop-item .item-inner:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.tm-isotop-hover {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.item-inner:hover .tm-isotop-hover {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.tm-isotop-hover h2 {
    background-color: #d02126;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    color: #fff;
    line-height: 22px;
    padding: 14px 10px;
    margin-bottom: 20px;
}

.tm-isotop-hover p {
    color: #fff;
    padding: 0 20px;
    margin-bottom: 0;
    display: -webkit-box;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    max-height: 109px;
}
.tm-project-img {
    height: 250px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.tm-project-img img{
    width: 100%;
    height: 100%;
}

.index-project .more{
    margin: 0 auto;
    margin-top: 50px;
}
.tm-isotop-item .tm-title{
    color: #677788;
    margin-top: 5px;
    display: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tm-isotope-ul li{
    cursor: pointer;
}





.index-news{
    padding: 100px 0px 0px 0px;
}
.index-news .tm-section-heading{
    padding-top: 45px;
    background: url("../images/index/ico221.png") no-repeat center top;
}
.index-news .slick-slider{
    margin: 30px 0px;
    height: 480px;
}
.index-news .slick-list {
    width: 95%;
    min-height: 450px;
    overflow: hidden;
    margin: 0 auto;
}
.slick-list .slick-track{
    height: 100%;
}
.index-news .slick-prev .fa{
    font-size: 30px;
}
.index-news .slick-next .fa{
    font-size: 30px;
}
.index-news .slick-blog{
    padding: 15px 15px;
}
.index-news .blog-item{
    padding-bottom: 25px;
    background-color: #f9fafa;
    -webkit-box-shadow: 2px 5px 10px 1px #e6e6e6;
    box-shadow: 2px 5px 10px 1px #e6e6e6;
    border-radius: 5px;
}
.index-news .blog-item .blog-thumb {
    border-radius: 5px 5px 0px 0px;
    position: relative;
    background-color: #222222;
    overflow: hidden;
}
.index-news .blog-item .blog-thumb img{
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    height: 200px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    transition: transform .4s ease, opacity .4s ease;
}
.index-news .blog-item:hover .blog-thumb>img {
    opacity: 0.5;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.index-news .blog-content{
    height: 190px;
    position: relative;
    padding: 30px 30px 20px 30px;
}
.index-news .blog-content .category {
    background-image: linear-gradient(to right,#d02126,#dc2128);
    padding: 5px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: work sans,sans-serif;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -14px;
}
.index-news .blog-content h5{
    color: #263a4f;
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0.1rem 0 0.2rem 0;
}
.index-news .blog-content p {
    color: #8d9aa8;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    max-height: 85px;
}
.index-news .blog-content .read-more {
    font-family: work sans,sans-serif;
    color: #263a4f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    padding-left: 35px;
    right: 30px;
    bottom: 0;
}
.index-news .blog-content .read-more:hover{
    color: #ec6c21 ;
    text-decoration: none;
}
.index-news .blog-content .read-more:before {
    background-color: #ff7149;
    position: absolute;
    content: "";
    width: 25px;
    height: 4px;
    left: 0;
    top: calc(50% - 2px);
}
.index-news .more {
    margin: 30px auto 50px auto;
}
@media screen and (max-width: 1004px){
    .index-carousel .img-nv{
        display: block !important;
    }
    .index-carousel .img-pc{
        display: none !important;
    }
    .service-wrap .tm-service{
        min-width: 0;
    }
    .index-service .slick-slider {
        overflow: initial;
    }
    .service-wrap{
        padding: 25px 0px 50px 0px;
    }
    .index-service .slick-next {
        right: 50%;
        margin-right: -70px;
        top: auto;
        bottom: -25px;
    }
    .index-news .slick-next {
        right: 50%;
        margin-right: -70px;
        top: auto;
        bottom: 0;
    }
    .index-service .slick-prev {
        left: 50%;
        margin-left: -70px;
        top: auto;
        bottom: -25px;
    }
    .index-news .slick-prev {
        left: 50%;
        margin-left: -70px;
        top: auto;
        bottom: 0;
    }
    .tm-tm-service-in .tm-sample-text{
        display: none;
    }
    .tm-isotop-item {
        padding: 10px;
    }
    .tm-isotop-item .tm-title{
        display: block;
        font-size: 12px;
    }
    .tm-project-img {
        height: 120px;
    }
    .tm-isotop-hover h2 {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .tm-isotop-hover p {
        padding: 0 10px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        max-height: 65px;
    }
    .index-news{
        padding: 50px 0px 0px 0px;
    }
    .index-news .slick-blog {
        padding: 15px 5px;
    }
    .index-news .blog-item .blog-thumb img {
        height: 120px;
    }
    .index-news .blog-content {
        height: 120px;
        padding: 10px;
    }
    .index-news .blog-content .category{
        padding: 3px 10px;
        font-size: 10px;
        font-weight: 500;
    }
    .index-news .blog-content h5 {
        font-size: 16px;
    }
    .index-news .blog-content p{
        margin-top: 5px;
        font-size: 12px;
        max-height: 54px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .index-news .blog-item{
        padding-bottom: 15px;
    }
    .index-news .blog-content .read-more {
        padding-left: 30px;
        right: 10px;
    }
    .index-news .blog-content .read-more:before {
        height: 3px;
    }
    .index-news .slick-list {
        width: 95%;
        min-height: 300px;
    }
    .index-news .slick-slider {
        height: 320px;
    }
    .synopsis-wrap {
        padding: 50px 0px;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
    .synopsis-wrap .btn.more{
        margin: auto;

    }
}




