/* <=== bannerhome ===> */
.slbannerhh .item{
    position: relative;
}
.slbannerhh .banvdimg{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.slbannerhh .banvdimg .bg, .slbannerhh .banvdimg video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slbannerhh .banvdimg .bg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: immortalkenburns 20000ms linear 0s infinite alternate;
    animation: immortalkenburns 20000ms linear 0s infinite alternate;
}
@-webkit-keyframes immortalkenburns{
	0%{-webkit-transform:scale(1);-webkit-transition:-webkit-transform 20000ms linear 0ms}
	100%{-webkit-transform:scale(1.1);-webkit-transition:-webkit-transform 20000ms linear 0ms}
}
@-moz-keyframes immortalkenburns{
	0%{-moz-transform:scale(1);-moz-transition:-moz-transform 20000ms linear 0ms}
	100%{-moz-transform:scale(1.2);-moz-transition:-moz-transform 20000ms linear 0ms}
}
@-ms-keyframes immortalkenburns{
	0%{-ms-transform:scale(1);-ms-transition:-ms-transform 20000ms linear 0ms}
	100%{-ms-transform:scale(1.2);-ms-transition:-ms-transform 20000ms linear 0ms}
}
@-o-keyframes immortalkenburns{
	0%{-o-transform:scale(1);-o-transition:-o-transform 20000ms linear 0ms}
	100%{-o-transform:scale(1.2);-o-transition:-o-transform 20000ms linear 0ms}
}
@keyframes immortalkenburns{
	0%{transform:scale(1);transition:transform 20000ms linear 0ms}
	100%{transform:scale(1.2);transition:transform 20000ms linear 0ms}
}
.slbannerhh .banvdimg .bg img{
    display: none;
}
.slbannerhh .banvdimg video{
    object-fit: cover;
}
.slbannerhh .bancapts{
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    z-index: 2;
}
.slbannerhh .csinner{
    max-width: 750px;
}
.slbannerhh .cstitle{
    color: #fff;
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 5px;
    transform: translateX(150px);
    opacity: 0;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.slbannerhh .cstends{
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transform: translateX(-100px);
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.slbannerhh .slick-current .cstitle{
    opacity: 1;
    transform: unset;
    transition-delay: 0.3s;
}
.slbannerhh .slick-current .cstends{
    opacity: 1;
    transform: unset;
    transition-delay: 0.6s;
}
/* <=== bannerhome ===> */

/* <=== abouthome ===> */
.abouthome{
    padding: 85px 0 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.abouthome::before{
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/abback.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    pointer-events: none;
    z-index: -1;
}
.hpabouthh .hhgrip{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin: 0 -42px;
}
.hpabouthh .hhgrip > div{
    padding: 0 42px;
}
.hpabouthh .hhgrip .mcol{
    width: calc(50% + 42px);
}
.hpabouthh .hhgrip .hcol{
    width: calc(50% - 42px);
}
.hpabouthh .hhthumb a{
    display: block;
    position: relative;
}
.hpabouthh .hhthumb a img{
    width: 100%;
}
.hpabouthh .hhthumb a .vplay{
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background-image: url("../images/abicon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}
.hpabouthh .dswrap{
    max-width: 530px;
}
.hpabouthh .dscapts{
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.hpabouthh .dstitle{
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #00aeef;
}
.hpabouthh .dstitle, .hpabouthh .dstitle h2{
    font-size: 55px;
    line-height: 65px;
    font-weight: bold;
}
.hpabouthh .dsconts{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
}
.hpabouthh .dsviews a{
    border: 2px solid #00aeef;
    border-radius: 5px;
    padding: 13px 22px 13px 25px;
    font-size: 13px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.hpabouthh .dsviews a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #00aeef;
    z-index: 0;
    width: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hpabouthh .dsviews a:hover::before{
    width: 100%;
}
.hpabouthh .dsviews a:hover{
    color: #fff;
}
.hpabouthh .dsviews a span{
    display: inline-block;
    padding-right: 42px;
    position: relative;
    z-index: 1;
}
.hpabouthh .dsviews a span::before{
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00aeef;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hpabouthh .dsviews a:hover span::before{
    color: #fff;
}
/* <=== abouthome ===> */

/* <=== activihome ===> */
.hpactiviha{
    padding: 40px 0;
}
.tpactiviha .hatitle{
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #00aeef;
}
.tpactiviha .hatitle, .tpactiviha .hatitle h2{
    font-size: 45px;
    line-height: 55px;
    font-weight: bold;
}
.tpactiviha .ctgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.tpactiviha .ctgrip > div{
    padding: 0 15px;
}
.tpactiviha .ctgrip .mcol{
    width: calc(100% - 225px);
}
.tpactiviha .ctgrip .hcol{
    width: 225px;
}
.tpactiviha .ctdecss{
    max-width: 700px;
    font-size: 16px;
    line-height: 26px;
}
.tpactiviha .ctviews a{
    border: 2px solid #00aeef;
    border-radius: 5px;
    padding: 13px 22px 13px 25px;
    font-size: 13px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    display: block;
}
.tpactiviha .ctviews a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #00aeef;
    z-index: 0;
    width: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tpactiviha .ctviews a:hover::before{
    width: 100%;
}
.tpactiviha .ctviews a:hover{
    color: #fff;
}
.tpactiviha .ctviews a span{
    display: block;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}
.tpactiviha .ctviews a span::before{
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00aeef;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tpactiviha .ctviews a:hover span::before{
    color: #fff;
}
.hpactivihb .hbgrip{
    display: flex;
}
.hpactivihb .hbgrip > div{
    width: 247px;
    min-width: 247px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hpactivihb .hbgrip > div.vactive{
    width: 100%;
}
.itactivihb{
    width: 100%;
    min-height: 650px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}
.itactivihb::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vactive .itactivihb::before{
    opacity: 0;
}
.itactivihb .dsshows{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 15%;
    padding: 20px 0;
    text-align: center;
    z-index: 2;
}
.itactivihb .decss, .itactivihb .decss a{
    color: #fff;
}
.itactivihb .dsshows .dstitle{
    margin-bottom: 15px;
}
.itactivihb .dsshows .dstitle, .itactivihb .dsshows .dstitle h3{
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
}
.itactivihb .dsshows .dstitle span{
    display: block;
}
.itactivihb .dsshows .dsmores a{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    margin: 0 auto;
}
.itactivihb .dshives{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 20px 60px 70px;
}
.itactivihb .dshives::before{
    content: '';
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    pointer-events: none;
}
.itactivihb .dshives .dstitle{
    margin-bottom: 10px;
}
.itactivihb .dshives .dstitle, .itactivihb .dshives .dstitle h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
}
.itactivihb .dshives .dsconts{
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 75px;
}
.itactivihb .dshives .dsviews{
    display: inline-block;
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
}
.itactivihb .dshives .dsviews a{
    display: block;
}
.itactivihb .dshives .dsviews span{
    display: inline-block;
    padding-right: 22px;
    position: relative;
}
.itactivihb .dshives .dsviews span::before{
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.itactivihb .dsshows{
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vactive .itactivihb .dsshows{
    opacity: 0;
    pointer-events: none;
}
.vactive .itactivihb .dsshows .dstitle{
    transform: translateY(-100px);
    opacity: 0;
}
.vactive .itactivihb .dsshows .dsmores{
    transform: translateY(100px);
    opacity: 0;
}
.itactivihb .dshives .dstitle, 
.itactivihb .dshives .dsconts,
.itactivihb .dshives .dsviews{
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.itactivihb .dshives .dstitle{
    transform: translateX(100px);
}
.itactivihb .dshives .dsconts{
    transform: translateX(-100px);
}
.itactivihb .dshives .dsviews{
    transform: translateX(100px);
}
.itactivihb .dshives{
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vactive .itactivihb .dshives{
    opacity: 1;
    pointer-events: auto;
}
.vactive .itactivihb .dshives .dstitle,
.vactive .itactivihb .dshives .dsconts,
.vactive .itactivihb .dshives .dsviews{
    opacity: 1;
    transform: unset;
}
.vactive .itactivihb .dshives .dstitle{
    transition-delay: 0.3s;
}
.vactive .itactivihb .dshives .dsconts{
    transition-delay: 0.5s;
}
.vactive .itactivihb .dshives .dsviews{
    transition-delay: 0.7s;
}
/* <=== activihome ===> */

/* <=== projecthome ===> */
.projecthome{
    padding: 60px 0 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.projecthome::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/daback.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
    pointer-events: none;
}
.hpprojectha{
    margin-bottom: 35px;
}
.tpprojectha .hatitle{
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #00aeef;
}
.tpprojectha .hatitle, .tpprojectha .hatitle h2{
    font-size: 45px;
    line-height: 55px;
    font-weight: bold;
}
.tpprojectha .ctgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.tpprojectha .ctgrip > div{
    padding: 0 15px;
}
.tpprojectha .ctgrip .mcol{
    width: calc(100% - 225px);
}
.tpprojectha .ctgrip .hcol{
    width: 225px;
}
.tpprojectha .cttends{
    max-width: 700px;
    font-size: 16px;
    line-height: 26px;
}
.tpprojectha .ctviews a{
    border: 2px solid #00aeef;
    border-radius: 5px;
    padding: 13px 22px 13px 25px;
    font-size: 13px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    display: block;
}
.tpprojectha .ctviews a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #00aeef;
    z-index: 0;
    width: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tpprojectha .ctviews a:hover::before{
    width: 100%;
}
.tpprojectha .ctviews a:hover{
    color: #fff;
}
.tpprojectha .ctviews a span{
    display: block;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}
.tpprojectha .ctviews a span::before{
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00aeef;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tpprojectha .ctviews a:hover span::before{
    color: #fff;
}
.hpprojecthb{
    padding-left: calc((100% - 1200px) / 2);
    position: relative;
    margin-left: 20px;
}
.tpprojecthb .swiper-button{
    position: absolute;
    width: 65px;
    height: 65px;
    border: 2px solid #00aeef;
    border-radius: 100%;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tpprojecthb .swiper-button.swiper-button-disabled{
    opacity: 0.35;
}
.tpprojecthb .swiper-button::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    line-height: 20px;
    color: #00aeef;
}
.tpprojecthb .swiper-button-next::before{
    content: '\f061';
}
.tpprojecthb .swiper-button-prev::before{
    content: '\f060';
}
.tpprojecthb .swiper-button-next{
    margin-left: -10px;
}
.tpprojecthb .swiper-button-prev {
    margin-left: 10px;
}
.tpprojecthb .swiper-slide{
    float: left;
    width: 100%;
}
.tpprojecthb .vchange .swiper-slide{
    transition: width .5s;
}
.tpprojecthb .swiper-container{
    padding-right: 65%;
    overflow: visible;
}
.tpprojecthb .swiper-wrapper{
    transition: transform .5s;
    height: auto;
}
.tpprojecthb .swiper-slide-active{
    width: 150%;
}
.itprojectmm .thumb{
    margin-bottom: 20px;
    position: relative;
}
.itprojectmm .thumb::before{
	top: 20px;
	left: 0;
	height: 2px;
	width: 0;
}
.itprojectmm .thumb::after{
	bottom: 20px;
	right: 0;
	height: 2px;
	width: 0;
}
.itprojectmm .timgs{
	position: relative;
}
.itprojectmm .timgs::before{
	bottom: 0;
	left: 20px;
	height: 0;
	width: 2px;
}
.itprojectmm .timgs::after{
	top: 0;
	right: 20px;
	height: 0;
	width: 2px;
}
.itprojectmm .thumb::before, .itprojectmm .thumb::after,
.itprojectmm .timgs::before, .itprojectmm .timgs::after{
	position: absolute;
	content: '';
	background-color: #fff;
	z-index: 2;
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
	pointer-events: none;
}
.itprojectmm:hover .thumb::before{
	width: calc(100% - 40px);
}
.itprojectmm:hover .thumb::after{
	width: calc(100% - 40px);
}
.itprojectmm:hover .timgs::before{
	height: calc(100% - 40px);
}
.itprojectmm:hover .timgs::after{
	height: calc(100% - 40px);
}
.itprojectmm .thumb a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00aeef;
	opacity: 0;
	z-index: 1;
	-webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.itprojectmm:hover .thumb a::before{
	opacity: 0.6;
}
.itprojectmm .tdecs{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 1;
	text-align: center;
	padding: 0 40px;
	pointer-events: none;
}
.itprojectmm .tdecs{
	overflow: hidden;
	transition-delay: 200ms;
	opacity: 0;
	transition: all 600ms ease;
}
.itprojectmm .tdecs h3{
	font-size: 20px;
    line-height: 30px;
    font-weight: 600;
	color: #fff;
	transform-origin: bottom left;
    transform: rotate(90deg);
	transition-delay: 200ms;
	transition: all 600ms ease;
    text-transform: uppercase;
}
.itprojectmm:hover .tdecs{
	opacity: 1;
}
.itprojectmm:hover .tdecs h3{
	transform: translate(0) rotate(0deg);
}
.itprojectmm .dstitle{
    text-transform: uppercase;
}
.itprojectmm .dstitle, .itprojectmm .dstitle h3{
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.itprojectmm .dstitle a{
    display: block;
    padding-right: 40px;
    position: relative;
}
.itprojectmm .dstitle a::before{
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #00aeef;
}

/* <=== projecthome ===> */

/* <=== newshome ===> */
.newshome{
    padding: 50px 0 75px;
    background-color: #f6f6f6;
}
.tpnewsha{
    margin-bottom: 50px;
}
.itnewsha .mmgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px;
}
.itnewsha .mmgrip > div{
    padding: 0 7.5px;
    width: 50%;
}
.itnewsha .thumb a{
    display: block;
    overflow: hidden;
    position: relative;
    padding-top: 65.56%;
}
.itnewsha .thumb a img{
    position: absolute;
    left: -100%;
    bottom: -100%;
    top: -100%;
    right: -100%;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
    max-width: 100%;
    object-fit: cover;
    -ms-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.itnewsha .thumb a:hover img{
    transform: scale(1.05);
}
.itnewsha .decss{
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #00aeef;
    z-index: 1;
}
.itnewsha .decss, .itnewsha .decss a{
    color: #fff;
}
.itnewsha .decss::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mmlogo.png');
    background-position: right top;
    background-size: auto;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}
.itnewsha .dswrap{
    max-width: 460px;
    width: 100%;
}
.itnewsha .dsdates{
    margin-bottom: 15px;
}
.itnewsha .vdateall span, .itnewsha .vdateall span::before{
    color: #fff;
}
.itnewsha .dstitle{
    margin-bottom: 10px;
}
.itnewsha .dstitle, .itnewsha .dstitle h3{
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
}
.itnewsha .dsconts{
    font-size: 14px;
    line-height: 25px;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}
.itnewsha .dsviews a{
    display: inline-block;
    font-size: 13px;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 22px;
    position: relative;
}
.itnewsha .dsviews a:hover{
    padding-left: 22px;
    padding-right: 0;
}
.itnewsha .dsviews a::before{
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.itnewsha .dsviews a:hover::before{
    opacity: 0;
}
.itnewsha .dsviews a::after{
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.itnewsha .dsviews a:hover::after{
    opacity: 1;
}
.tpnewshb .hblist{
    margin-bottom: 30px;
}
.tpnewshb .hbgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.tpnewshb .hbgrip > div{
    padding: 0 15px;
    width: 33.33333%;
    margin-bottom: 20px;
}
.itnewshb .vvgrip{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin: 0 -10px;
}
.itnewshb .vvgrip > div{
    padding: 0 10px;
}
.itnewshb .vvgrip .mcol{
    width: 160px;
}
.itnewshb .vvgrip .hcol{
    width: calc(100% - 160px);
}
.itnewshb .dsdates{
    margin-bottom: 5px;
}
.itnewshb .dstitle, .itnewshb .dstitle h3{
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
}
.itnewshb .dstitle a{
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* <=== newshome ===> */

/* <=== partnerhome ===> */
.partnerhome{
    padding: 50px 0 100px;
    background-color: #eeeeee;
}
.partnerhome.vbackg{
    padding: 85px 0 125px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-color: transparent;
}
.partnerhome.vbackg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}
.itpartnerhh a{
    display: block;
    padding-top: 65.56%;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}
.itpartnerhh a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #00aeef;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.itpartnerhh a:hover::before{
    opacity: 1;
}
.itpartnerhh a img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
    -ms-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slpartnerhh .swiper-pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 50px;
    cursor: pointer;
}
.slpartnerhh .swiper-pagination-bullet{
    margin-right: 25px;
    width: 10px;
    height: 10px;
    display: block;
    border: 2px solid #cccccc;
    border-radius: 100%;
}
.slpartnerhh .swiper-pagination-bullet:last-child{
    margin-right: 0;
}
.slpartnerhh .swiper-pagination-bullet-active{
    background-color: #00aeef;
    border-color: #00aeef;
}
.vbackg .slpartnerhh .swiper-pagination-bullet{
    border-color: #fff;
}
.vbackg .slpartnerhh .swiper-pagination-bullet-active{
    background-color: #fff;
    border-color: #fff;
}
/* <=== partnerhome ===> */
 
@media all and (min-width: 1600px){
    /* <=== activihome ===> */
    .itactivihb{
        min-height: 800px;
    }
    /* <=== activihome ===> */
}
@media all and (max-width: 1200px){
    .abouthome{
        padding: 40px 0 50px;
    }
    .hpabouthh .hhgrip{
        margin: 0 -20px;
    }
    .hpabouthh .hhgrip > div{
        padding: 0 20px;
    }
    .itactivihb .dshives{
        padding: 20px 20px 30px;
    }
    .swiper-button-next{
        right: 20px;
    }
    .swiper-button-prev{
        right: 70px;
    }
    .tpprojecthb .swiper-button{
        width: 40px;
        height: 40px;
    }
    .itactivihb .dsshows .dstitle, .itactivihb .dsshows .dstitle h3{
        font-size: 18px;
        line-height: 25px;
    }
    .itactivihb .dshives{
        padding: 20px;
    }
    .itactivihb .dshives .dstitle, .itactivihb .dshives .dstitle h3{
        font-size: 18px;
        line-height: 25px;
    }
    .itactivihb .dshives .dsconts{
        font-size: 14px;
        line-height: 24px;
        -webkit-line-clamp: 4;
        max-height: 96px;
        margin-bottom: 10px;
    }
    .itactivihb .dsshows .dsmores a{
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}
@media all and (max-width: 991px){
    /* <=== bannerhome ===> */
    .slbannerhh .bancapts{
        bottom: 40px;
    }
    .slbannerhh .cstitle{
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 0;
        padding-right: 10px;
    }
    .slbannerhh .cstends{
        font-size: 14px;
        line-height: 30px;
    }
    .slbannerhh .slick-dots{
        bottom: 5px;
    }
    .slbannerhh .banvdimg{
        height: auto;
        padding-top: 73.687%;
        min-height: 280px;
    }
    .slbannerhh .cstitle{
        transform: translateX(80px);
    }
    .slbannerhh .cstends{
        transform: translateX(50px);
    }
    .slbannerhh .slick-prev {
        left: 0;
    }
    .slbannerhh .slick-next {
        right: 0;
    }
    /* <=== bannerhome ===> */

    /* <=== abouthome ===> */
    .abouthome{
        padding: 20px 0 30px;
    }
    .abouthome::before{
        right: 0;
        top: -30px;
        background-image: url('../images/abbackm.png');
    }
    .hpabouthh .hhgrip{
        flex-direction: column-reverse;
    }
    .hpabouthh .hhgrip .mcol{
        width: 100%;
    }
    .hpabouthh .hhgrip .hcol{
        width: 100%;
        margin-bottom: 40px;
    }
    .hpabouthh .hhdecss{
        text-align: center;
    }
    .hpabouthh .dstitle, .hpabouthh .dstitle h2{
        font-size: 40px;
        line-height: 50px;
    }
    .hpabouthh .dsconts{
        font-size: 14px;
        line-height: 24px;
    }
    .hpabouthh .dsviews a{
        padding: 11px 22px 11px 25px;
        line-height: 24px;
    }
    .hpabouthh .hhthumb a .vplay{
        width: 55px;
        height: 55px;
    }
    .hpabouthh .dswrap{
        max-width: 100%;
    }
    /* <=== abouthome ===> */

    /* <=== activihome ===> */
    .hpactiviha{
        padding: 20px 0 30px;
    }
    .tpactiviha{
        text-align: center;
    }
    .tpactiviha .hatitle, .tpactiviha .hatitle h2{
        font-size: 25px;
        line-height: 35px;
    }
    .tpactiviha .ctgrip .mcol{
        width: 100%;
        margin-bottom: 20px;
    }
    .tpactiviha .ctgrip .hcol{
        width: 100%;
    }
    .tpactiviha .ctviews a{
        display: inline-block;
        padding: 11px 22px 11px 25px;
        line-height: 24px;
    }
    .tpactiviha .ctviews a span{
        padding-right: 70px;
    }
    .hpactivihb .hbgrip{
        flex-wrap: wrap;
    }
    .hpactivihb .hbgrip > div{
        width: 100%!important;
    }
    .itactivihb{
        min-height: auto;
        height: 80px;
    }
    .itactivihb .dsshows{
        position: relative;
        padding: 25px 20px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    .itactivihb .dsshows .dstitle span{
        display: unset;
    }
    .itactivihb .dsshows .dstitle{
        margin-bottom: 0;
        margin-right: 10px;
    }
    .vactive .itactivihb .dsshows{
        display: none;
    }
    .vactive .itactivihb .dshives{
        position: relative;
    }
    .itactivihb{
        display: flex;
        align-items: flex-end;
        align-content: flex-end;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .vactive .itactivihb{
        height: 350px;
    }
    .itactivihb .decss{
        width: 100%;
    }
    .itactivihb .dsshows .dstitle{
        height: 25px;
        overflow: hidden;
    }
    /* <=== activihome ===> */

    /* <=== projecthome ===> */
    .projecthome{
        padding: 20px 0 35px;
    }
    .hpprojectha{
        text-align: center;
    }
    .tpprojectha .ctgrip .mcol{
        width: 100%;
        margin-bottom: 15px;
    }
    .tpprojectha .ctgrip .hcol{
        width: 100%;
    }
    .tpprojectha .ctviews a{
        display: inline-block;
    }
    .tpprojectha .hatitle, .tpprojectha .hatitle h2{
        font-size: 25px;
        line-height: 35px;
    }
    .tpprojectha .cttends{
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
        text-align-last: center;
    }
    .tpprojectha .ctviews a{
        display: inline-block;
        padding: 11px 22px 11px 25px;
        line-height: 24px;
    }
    .tpprojectha .ctviews a span{
        padding-right: 70px;
    }
    .itprojectmm .dstitle, .itprojectmm .dstitle h3{
        font-size: 16px;
        line-height: 24px;
    }
    .itprojectmm .tdecs{
        display: none;
    }
    .itprojectmm .thumb::before, .itprojectmm .thumb::after, .itprojectmm .timgs::before, .itprojectmm .timgs::after{
        display: none;
    }
    .itprojectmm .thumb a::before{
        display: none;
    }
    .itprojectmm{
        width: 270px;
    }
    .slprojecthb .slick-arrow{
        border: 2px solid #00aeef;
        color: #00aeef;
        width: 50px;
        height: 50px;
    }
    .slprojecthb .slick-arrow::before{
        font-size: 12px;
    }
    /* <=== projecthome ===> */
    
    /* <=== newshome ===> */
    .newshome{
        padding: 25px 0 30px;
    }
    .itnewsha .mmgrip > div{
        width: 100%;
        margin-bottom: 10px
    }
    .itnewsha .mmgrip > div:last-child{
        margin-bottom: 0;
    }
    .itnewsha .decss{
        padding: 15px 18px;
    }
    .itnewsha .dswrap{
        max-width: 100%;
    }
    .itnewsha .dstitle, .itnewsha .dstitle h3{
        font-size: 20px;
        line-height: 30px;
    }
    .itnewsha .dsconts{
        font-size: 13px;
        line-height: 22px;
        max-height: 66px;
        margin-bottom: 10px;
    }
    .itnewsha .decss::before{
        background-size: 140px;
    }
    .tpnewsha{
        margin-bottom: 20px;
    }
    .tpnewshb .hbgrip > div{
        width: 100%;
    }
    .tpnewshb .hblist{
        margin-bottom: 10px;
    }
    /* <=== newshome ===> */

    /* <=== partnerhome ===> */
    .partnerhome{
        padding: 25px 0 35px;
    }
    .partnerhome.vbackg{
        background-attachment: unset;
        padding: 30px 0 40px;
    }
    .slpartnerhh .swiper-pagination{
        margin-top: 30px;
    }

    /* <=== partnerhome ===> */
}
@media all and (max-width: 767px){
    /* <=== projecthome ===> */
    .projecthome::before{
        background-size: 100%;
    }
    /* <=== projecthome ===> */

    /* <=== newshome ===> */
    .itnewshb .vvgrip .mcol{
        width: 140px;
    }
    .itnewshb .vvgrip .hcol{
        width: calc(100% - 140px);
    }
    .itnewshb .dstitle, .itnewshb .dstitle h3{
        font-size: 14px;
    }
    /* <=== newshome ===> */
}