/*------------ container ------------*/
.sect .container {
    padding: 0 15px;
    max-width: 1390px;
}
/*------------ more ------------*/
.sect .more {
    font-size: 15px;
    color: #103C9B;
    letter-spacing: 0;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    z-index: 0;
    transition: all .3s ease;
    padding-right: 7px;
    font-weight: bold;
}
.sect .more:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #103C9B;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
    transition: all .3s ease;
}
.sect .more:hover:before {
    width: 100%;
}
.sect .more:hover {
    color: #FFF;
}
.sect .more i {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background: #103C9B;
    border-radius: 50%;
    position: relative;
    margin: 0 6px 2px 0;
}
.sect .more i:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 6px;
    left: 8px;
}
/*------------ banner ------------*/
.banner .container {
    max-width: 1440px;
    padding: 0;
}
.banner .slick-list {
    overflow: visible;
}
.banner .slider:before {
    left: -100%;
}
.banner .slider:after {
    right: -100%;
}
.banner .slider:before,
.banner .slider:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.banner-pages .slick-dots {
    text-align: center;
    margin: 0px 0 -27px;
    padding: 0;
    position: relative;
    top: -35px;
}
.banner-pages .slick-dots li {
    padding: 0;
    margin: 0 8px;
    list-style: none;
    height: 5px;
    overflow: hidden;
    display: inline-block;
}
.banner-pages .slick-dots li button {
    width: 40px;
    height: 5px;
    background: #E2DED8;
    color: transparent;
    border: 0;
    cursor: pointer;
}
.banner-pages .slick-dots li.slick-active button {
    background: #05BACA;
}
.banner .slick-arrow {
    border: 0;
    color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #FFFFFF;
    position: absolute;
    right: 0;
    border-radius: 50%;
    top: calc(50% - 25px);
    z-index: 15;
    transition: all .3s ease;
    cursor: pointer;
}
.banner .slick-arrow:hover {
    background: #05BACA;
    transition: all .3s ease;
}
.banner .slick-prev {
    left: -60px;
}
.banner .slick-next {
    right: -60px;
}
.banner .slick-arrow:before {
    content: "";
    color: #2CC5D2;
    font-size: 30px;
    position: absolute;
    top: -1px;
    left: 50%;
    margin: 0 0 0 -7px;
    font-family: 'icon-font' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .3s ease;
}
.banner .slick-prev:before {
    content: "\f104";
}
.banner .slick-next:before {
    content: "\f105";
    margin: 0 0 0 -3px;
}
.banner .slick-arrow:hover:before {
    color: #FFF;
}
/*------------ sect01 ------------*/
.sect1 {
    padding: 58px 0 60px;
    background: url('../../images/common/index/index-sect1-bg.png') repeat;
    background-position: 50px -50px
}
.sect1 .sect1-row{
    display: flex;
}
.sect1 .sect1-col{
    width: 50%;
    box-sizing: border-box;
}
.sect1 .sect1-col:nth-child(1){
    padding-right: 10px;
}
.sect1 .sect1-col:nth-child(2){
    padding-left: 10px;
    display: flex;
    justify-content: flex-end;
}
/*---- news ----*/
.news-box {
    /* width: 48%; */
    /* float: left; */
    /* margin: 0 5% 0 0; */
    background: #FFF;
    border: 1px solid #DCDCDC;
    border-top: 5px solid #0062D0; 

}
.news-box .title {
    font-size: 36px;
    font-weight: normal;
    color: #0062D0;
    line-height: 1.2;
    border-bottom: 1px solid #EEEEEE;
    letter-spacing: 0px;
    padding: 10px 0 8px 25px;
    margin: 0 0 10px 0;
}
.news-box .title span {
    font-size: 18px;
    font-weight: bold;
    color: #05B9CA;
    letter-spacing: 1px;
}
.news-box .title .more {
    float: right;
    margin: 10px 10px 0 0;
}
.news-list{
    padding: 0 20px;
    padding-bottom: 31px;
}
.news-list li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(204, 204, 204, .5);
}
.news-list li .date {
    font-size: 12px;
    width: 136px;
    line-height: 20px;
    text-align: left;
    color: #007AB8;;
    display: inline-block;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
}
.news-list li .name {
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: middle;
    width: calc(100% - 153px);
    color: #1F1F1F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
    font-size: 15px;
    position: relative;
    z-index: 0;
    transition: all .3s ease;
    line-height: 20px;
    text-align: left;
}
.news-list li .name:before {
    content: "";
    background: #E6F8FA;
    width: 0px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s ease;
    z-index: -1;
}
.news-list li .box:hover .name:before {
    width: 100%;
}
.news-list li .box:hover .name {
    color: #007AB8;
}
.news-list .box{
    position: relative;
}
.news-list .cover {
    font-size: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}
/*---- about + service ----*/
.about-box {
    position: relative;
    width: 320px;
}
.service-box {
    position: relative;
    width: 320px;
    margin-left: 22px;
}
.about-box .cover,
.service-box .cover {
    font-size: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%; 
}
.about-box .pic,
.service-box .pic {
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.about-box .cover,
.service-box .cover {
    font-size: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}
.about-box .box,
.service-box .box {
    padding: 8px;
    border: 1px solid #DCDCDC;
    border-top: 5px solid #0062D0;
    border-bottom: none;
    background: #FFF;
}
.about-box .pic p,
.service-box .pic p {
    line-height: 31px;
    font-size: 36px;
    color: #0061D0;
    margin: 0;
    padding: 13px 0;
    padding-top: 22px;
}
.about-box .pic p b,
.service-box .pic p b {
    font-size: 18px;
    font-weight: bold;
    display: block;
    color: #05B9CA;
    font-family: 'Roboto Mono', monospace;
}
.about-box .txt,
.service-box .txt {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 15px;
}
.sect1-col .page-portfolio{
    position: relative;
}
.sect1-col .page-portfolio img{ 
    min-height: 241px;
    object-fit: cover;
}
.sect1-col .pic:hover .portfolio-overlay {
    opacity: 1;
    z-index: 1;
}
.sect1-col .page-portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 124, 186, 0.80);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    pointer-events: none;
}
.sect1-col .page-portfolio .portfolio-overlay span{
    border-radius: 300px;
    transition: all 0.27s ease-in;
    -webkit-transition: all 0.27s ease-in;
    -o-transition: all 0.27s ease-in;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(1) {
    display: block;
    width: 3px;
    background:#fff;
    position: absolute;
    left: 0px;
    top: 0px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(1) {
    height: 22px;
    left: 20px;
    top:20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(2) {
    display: block;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 3px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(2) {
    width: 22px;
    left: 20px;
    top:20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(3) {
    display: block;
    width: 3px;
    background:#fff;
    position: absolute;
    right: 0;
    top:0;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(3) {
    height: 22px;
    right: 20px;
    top: 20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(4) {
    display: block;
    background:#fff;
    position: absolute;
    height: 3px;
    right: 0;
    top:0;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(4) {
    width: 22px;
    right: 20px;
    top: 20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(5) {
    display: block;
    width: 3px;
    height: 0;
    background:#fff;
    position: absolute;
    left: 0px;
    bottom:  0px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(5) {
    height: 22px;
    left: 20px;
    bottom:  20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(6) {
    display: block;
    background:#fff;
    position: absolute;
    left: 0px;
    bottom:  0px;
    width: 0px;
    height: 3px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(6) {
    width: 22px;
    left: 20px;
    bottom:  20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(7) {
    display: block;
    width: 3px;
    height: 0;
    background:#fff;
    position: absolute;
    right: 0px;
    bottom:  0px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(7) {
    height: 22px;
    right: 20px;
    bottom:  20px;
}
.sect1-col .page-portfolio .portfolio-overlay span:nth-child(8) {
    display: block;
    background:#fff;
    position: absolute;
    right: 0px;
    bottom:  0px;
    width: 0px;
    height: 3px;
}
.sect1-col .pic:hover .portfolio-overlay span:nth-child(8) {
    width: 22px;
    right: 20px;
    bottom:  20px;
}
.sect1-col .page-portfolio .overlay-text{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: column;
    opacity: 0;
    transition: all .3s ease;
}
.sect1-col .page-portfolio .overlay-text p{
    color: #FFF;
    font-size: 24px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    margin-bottom: 1px;
    padding: 0;
    letter-spacing: -1px;
}
.sect1-col .page-portfolio .overlay-text div{
    width: 83px;
    height: 4px;
    background: #FFFFFF;
    margin-top: 1px;
}
.sect1-col .pic:hover .overlay-text {
    opacity: 1;
}
/*------------ products ------------*/
.products-sect {
    background: url('../../images/common/index/index-products-bg.jpg') no-repeat center top;
    background-size: cover;
    padding:157px 0 100px 0;
}
.products-sect .title {
    line-height: 1.2;
    color: #FFF;
    font-size: 36px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 30px;
}
.products-sect .title span{
    color: #05BACA;
    font-size: 18px;
    font-family: 'Roboto Mono', monospace;
    display: block;
    font-weight: bold;
}
.products-sect .more{
    float: right;
    color: #FFF;
    position: relative;
    top: -30px;
}
.products-sect .more:before {
    background: #FFF;
}
.products-sect .more i {
    background: #FFF;
}
.products-sect .more i:before {
    border-color: transparent transparent transparent #103C9B;
}
.products-sect .more:hover {
    color: #103C9B;
}
.product-list {
    margin: 0 -14px;
}
.product-list li {
    width: 25%;
    padding: 0 14px 50px;
}
.product-list li:nth-child(4n+1) {
    clear: left;
}
.product-list > li > a {
    margin: 0 auto;
    padding: 10px;
    display: inline-block;
    background: #fff;
    max-width: 320px;
    box-sizing: border-box;
}
.product-list .pic {
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
}
.product-list .text {
    text-align: center;
    margin: 0 auto;
    background: rgba(12, 36, 64, 0.9);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    transition:all .3s ease;
}
.product-list .box:hover .text  {
    bottom:-40px;
}
.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #FFF;
    margin: 0;
    line-height: 40px;
    font-weight: 400;
}
.product-list .box{
    position: relative;
    box-sizing: border-box;
    overflow:hidden;
}
.product-list .cover {
    font-size: 0;
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 130;
}
.product-list .box:before {
    content: "";
    top: 0px;
    left: 0px;
    right: 1px;
    bottom: -2px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid rgba(0, 255, 255, 0.8);
    z-index: 50;
    position: absolute;
    opacity: 0;
    transition: all .3s ease;
}
.product-list .box:hover:before  {
    opacity: 1;
}
.product-list .box:hover  {
    box-shadow: 0px 2px 10px 0px rgb(0 255 255 / 80%);
}
.product-list .page-portfolio{
    position: relative;
}
.product-list .page-portfolio img{ 
    min-height: 241px;
    object-fit: cover;
}
.product-list .box:hover .portfolio-overlay {
    opacity: 1;
    z-index: 1;
}
.product-list .page-portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 124, 186, 0.80);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    pointer-events: none;
}
.product-list .page-portfolio .portfolio-overlay span{
    border-radius: 300px;
    transition: all 0.27s ease-in;
    -webkit-transition: all 0.27s ease-in;
    -o-transition: all 0.27s ease-in;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(1) {
    display: block;
    width: 3px;
    background:#fff;
    position: absolute;
    left: 0px;
    top: 0px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(1) {
    height: 22px;
    left: 20px;
    top:20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(2) {
    display: block;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 3px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(2) {
    width: 22px;
    left: 20px;
    top:20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(3) {
    display: block;
    width: 3px;
    background:#fff;
    position: absolute;
    right: 0;
    top:0;
}
.product-list .box:hover .portfolio-overlay span:nth-child(3) {
    height: 22px;
    right: 20px;
    top: 20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(4) {
    display: block;
    background:#fff;
    position: absolute;
    height: 3px;
    right: 0;
    top:0;
}
.product-list .box:hover .portfolio-overlay span:nth-child(4) {
    width: 22px;
    right: 20px;
    top: 20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(5) {
    display: block;
    width: 3px;
    height: 0;
    background:#fff;
    position: absolute;
    left: 0px;
    bottom:  0px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(5) {
    height: 22px;
    left: 20px;
    bottom:  20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(6) {
    display: block;
    background:#fff;
    position: absolute;
    left: 0px;
    bottom:  0px;
    width: 0px;
    height: 3px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(6) {
    width: 22px;
    left: 20px;
    bottom:  20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(7) {
    display: block;
    width: 3px;
    height: 0;
    background:#fff;
    position: absolute;
    right: 0px;
    bottom:  0px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(7) {
    height: 22px;
    right: 20px;
    bottom:  20px;
}
.product-list .page-portfolio .portfolio-overlay span:nth-child(8) {
    display: block;
    background:#fff;
    position: absolute;
    right: 0px;
    bottom:  0px;
    width: 0px;
    height: 3px;
}
.product-list .box:hover .portfolio-overlay span:nth-child(8) {
    width: 22px;
    right: 20px;
    bottom:  20px;
}
.product-list .page-portfolio .overlay-text{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: column;
    opacity: 0;
    transition: all .3s ease;
}
.product-list .page-portfolio .overlay-text p{
    color: #FFF;
    font-size: 24px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    margin-bottom: 1px;
    padding: 0;
    letter-spacing: -1px;
    margin: 0;
}
.product-list .page-portfolio .overlay-text div{
    width: 83px;
    height: 4px;
    background: #FFFFFF;
    margin-top: 1px;
}
.product-list .box:hover .overlay-text {
    opacity: 1;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1600px) {
    .banner .slick-prev {
        left: 10px;
    }
    .banner .slick-next {
        right: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .banner .slick-arrow {
        display: none !important;
    }
    .banner-pages .slick-dots {
        text-align: center;
        margin: 0px 0 -26px;
        padding: 0;
    }
    .sect1 {
        padding-top: 50px;
        padding-bottom: 50px;
        text-align: center;
    }
    .sect1 .sect1-row {
        flex-direction: column;
    }
    .sect1 .sect1-col {
        width: 100%;
    }
    .sect1 .sect1-col:nth-child(1) {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .sect1 .sect1-col:nth-child(2) {
        padding-left: 0;
        display: flex;
        justify-content: center;
    }
    .news-box .title {
        font-size: 26px;
        padding-left: 0;
        padding-top: 15px;
    }
    .news-box .title .more {
        float: unset;
        display: block;
        width: 109px;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .about-box .pic p, .service-box .pic p {
        line-height: 26px;
        font-size: 26px;
        padding: 6px 0;
        padding-top: 12px;
    }
    .about-box .pic, .service-box .pic {
        max-width: unset;
    }
    .about-box,
    .service-box {
        width: 50%;
    }
    .page-portfolio img {
        width: 100%;
    }
    .products-sect {
        padding: 50px 0 0px 0;
        position: relative;
    }
    .products-sect:before{
        content:'';
        display:block;
        width:100%;
        height:100%;
        background:#0f5d9f;
        position:absolute;
        left:0;
        right:0;
        top:0;
        bottom:0;
        z-index:0;
        opacity:0.8;
    }
    .products-sect .title {
        font-size: 26px;
    }
    .products-sect .more {
        float: unset;
        display: block;
        width: 109px;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 10px;
        top: 0;
    }

    .product-list {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    .product-list li {
        width: 50%;
    }
    .product-list li:nth-child(4n+1) {
        clear: none;
    }
    .product-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 600px) {
    .product-list li {
        width: 100%;
        padding: 0 0 50px;
    }
    .about-box,
    .service-box {
        width: 100%;
    }
    .service-box {
        margin-left: 0px;
        margin-top: 20px;
    }
    .sect1 .sect1-col:nth-child(2) {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 480px) {
    .news-list li {
        padding: 8px 0;
    }
    .news-list li .name {
        display: block;
        margin: 5px 0 0 0;
        width: auto;
    }
}
