﻿/* Banner */
.banner-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #061b35;
}

.banner-list {
    display: flex;
    width: 100%;
    transition: transform .5s ease;
}

.banner-item {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
}

.banner-item picture,
.banner-item img {
    display: block;
    width: 100%;
}

.banner-item img {
    height: auto;
}

/* 文字 */
.banner-text {
    position: absolute;
    left: 14.5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff;
}

.banner-text h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 8px;
}

.banner-text h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #00c8e8;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.banner-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 24px;
    letter-spacing: 1px;
}

.banner-btn {
    display: inline-block;
    min-width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient( 90deg, #00CFA9 0%, #00A4FD 100%);
    color: #fff;
    text-decoration: none;
    transition: all .25s ease;
}

.banner-btn:hover {
    background: #00aeea;
	color: #fff;
}

/* 左右按钮 */
.banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-top: -21px;
    border-radius: 50%;
    background: rgba(0, 173, 238, .7);
    color: #fff;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
    transition: all .25s ease;
}
.banner-arrow i{ line-height: 42px; font-size: 1.4rem;}
.banner-arrow:hover {
    background: rgba(0, 173, 238, 1);
}

.banner-prev {
    left: 7%;
}

.banner-next {
    right: 7%;
}

/* 圆点 */
.banner-dots {
    position: absolute;
    left: 0;
    bottom: 22px;
    z-index: 12;
    width: 100%;
    text-align: center;
}

.banner-dots span {
    display: inline-block;
    width: 22px;
    height: 4px;
    margin: 0 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: all .25s ease;
}

.banner-dots span.active {
    width: 34px;
    background: #00c8e8;
}

.banner-text h2,
.banner-text h3,
.banner-text p,
.banner-text .banner-btn {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.banner-item.active .banner-text h2,
.banner-item.active .banner-text h3,
.banner-item.active .banner-text p,
.banner-item.active .banner-text .banner-btn {
    opacity: 1;
    transform: translateY(0);
}

.banner-item.active .banner-text h2 {
    transition-delay: .12s;
}

.banner-item.active .banner-text h3 {
    transition-delay: .22s;
}

.banner-item.active .banner-text p {
    transition-delay: .32s;
}

.banner-item.active .banner-text .banner-btn {
    transition-delay: .42s;
}



.home-ad{ padding: 20px 0; line-height: 28px;}
.home-ad-left{ background: url(../images/homeear.png) no-repeat left center;}
.home-ad-left a{ color: #fff; padding-left: 25px; font-size: 1rem;}
.home-ad-left a i{ margin-left: 10px;}
.home-ad-right{ margin-left: 110px;}
.home-ad-right img{ max-width: 100%; height: auto;}

.sectionbg1 {
    width: 98%;
    padding-bottom: 50px;
    background: #1c4e88;
    border-radius: 8px;
}

.section-title {
    line-height: 40px;
    padding: 50px 0 30px 0;
    color: #fff;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
}

.section-title a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    color: #fff;
    padding: 0 20px;
    font-size: 1rem;
    background: linear-gradient(90deg, #00CFAA 0%, #00A4FD 100%);
}

.section-title a i {
    margin-left: 18px;
}

.section-title a:hover {
    background: linear-gradient(90deg, #00A4FD 0%, #00CFAA 100%);
}

/* Popular Categories */
.section-products-cat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-cat-item {
    min-height: 140px;
    background: #fff;
    border-radius: 8px;
    padding: 26px 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.products-cat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.products-cat-img {
    width: 120px;
    flex-shrink: 0;
}

.products-cat-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.products-cat-info {
    width: calc(100% - 120px);
    padding-left: 20px;
    box-sizing: border-box;
}

.products-cat-info h3 {
    min-height: 52px;
    font-size: 1.1rem;
    line-height: 1.25;
    color: #151515;
    margin-bottom: 20px;
}

.products-cat-info a {
    display: inline-flex;
    align-items: center;
    color: #111;
    font-size: 1rem;
}

.products-cat-info a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    margin-left: 45px;
    border-radius: 50%;
    border: 1px solid #1c4e88;
    transition: all .3s ease;
}

.products-cat-info a span i {
    font-size: 10px;
    background: linear-gradient(90deg, #00CFAA 0%, #00A4FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-cat-item:hover .products-cat-info a {
    color: #00A4FD;
}

.products-cat-item:hover .products-cat-info a span {
    border-color: #00A4FD;
    background: linear-gradient(90deg, #00CFAA 0%, #00A4FD 100%);
}

.products-cat-item:hover .products-cat-info a span i {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #fff;
    color: #fff;
}




.home-about-left{ width: calc(100% - 545px); padding-right: 230px; color: #fff;}
.home-about-left em{ display: block; line-height: 30px; margin-top: 15px;}
.home-about-left h2{ font-size: 3rem; line-height: 64px;}
.home-about-left p{ font-size: 1.1rem; margin-top: 25px;}
.home-about-left a{ display: inline-block; margin-top: 45px; height: 40px; line-height: 40px; color: #fff; padding: 0 30px; border-radius: 30px; background: linear-gradient( 90deg, #00CFA9 0%, #00A4FD 100%);}
.home-about-left a:hover{background: linear-gradient( 90deg, #00A4FD 0%, #00CFA9 100%);}
.home-about-right{ width: 545px; height: auto;}
.home-about-right img{ width: 100%; height: auto;}

.sectionbg3 {
    width: 98%;
    padding-bottom: 50px;
    background: #1c4e88;
    border-radius: 8px;
    margin-top: 15px;
    overflow: hidden;
}

.home-company {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    align-items: stretch;
}

/* 左侧图片 */
.home-company-left {
    width: 50%;
    background: #07152a;
}

.home-company-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧内容 */
.home-company-right {
    width: 50%;
    padding: 58px 50px 50px;
    box-sizing: border-box;
    background: #fff;
    color: #171717;
}

.home-company-right em {
    display: block;
    font-style: normal;
    color: #006ec8;
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.home-company-right h2 {
    font-size: 2rem;
    line-height: 1.25;
    color: #202020;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-company-right p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #222;
    margin-bottom: 35px;
}

.home-company-line {
    width: 100%;
    height: 1px;
    background: #dedede;
    margin-bottom: 28px;
}

.home-company-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 14px;
}

.home-company-list li {
    position: relative;
    color: #111;
    font-size: .8rem;
    line-height: 22px;
    text-transform: uppercase;
    padding-left: 22px;
    box-sizing: border-box;
}

.home-company-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #00A4FD;
    font-size: 13px;
}



.home-servicesbg {
    width: 98%;
    height: auto;
    background: url(../images/homeserbg.jpg) no-repeat center;
    border-radius: 8px;
    background-size: cover;
    padding-bottom: 50px;
    margin-top: 15px;
}

.home-services-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 卡片 */
.home-services-item {
    position: relative;
    min-height: 385px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all .35s ease;
}

.home-services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

/* 默认隐藏图片 */
.home-services-bgimg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .45s ease;
}

.home-services-bgimg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: all .6s ease;
}

/* 鼠标经过显示图片 */
.home-services-item:hover .home-services-bgimg {
    opacity: 1;
    visibility: visible;
}

.home-services-item:hover .home-services-bgimg img {
    transform: scale(1);
}

/* 图片遮罩 */
.home-services-bgimg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 42, 36, .9) 0%, rgba(0, 42, 36, .65) 100%);
}

/* 内容层 */
.home-services-con {
    position: relative;
    z-index: 3;
    min-height: 385px;
    padding: 30px 24px;
    box-sizing: border-box;
}

/* 图标 */
.home-services-icon {
    width: 58px;
    height: 58px;
    background: #00a4fd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: all .3s ease;
}

.home-services-icon img {
    display: block;
    max-width: 36px;
    max-height: 36px;
}

/* 小标题 */
.home-services-con em {
    display: block;
    font-style: normal;
    color: #00a4fd;
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 8px;
    transition: all .3s ease;
}

.home-services-item h3 {
    font-size: 1.6rem;
    line-height: 1.25;
    color: #181818;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all .3s ease;
}

.home-services-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f1f1f;
    transition: all .3s ease;
}

.home-services-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 32px 0 24px;
    transition: all .3s ease;
}

.home-services-contact a {
    display: block;
    color: #171717;
    font-size: 1rem;
    line-height: 28px;
    transition: all .3s ease;
}

.home-services-contact a i {
    color: #00a4fd;
    margin-right: 12px;
    font-size: 14px;
    transition: all .3s ease;
}

.home-services-contact a:hover {
    color: #00a4fd;
}

.home-services-more {
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 48px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    background: linear-gradient(90deg, #00CFAA 0%, #00A4FD 100%);
    transition: all .3s ease;
}

.home-services-more:hover {
    background: linear-gradient(90deg, #00A4FD 0%, #00CFAA 100%);
}

.home-services-more i {
    font-size: 15px; line-height: 24px;
}

/* hover 后文字变白 */
.home-services-item:hover .home-services-con em {
    color: #00d6be;
}

.home-services-item:hover h3,
.home-services-item:hover p,
.home-services-item:hover .home-services-contact a {
    color: #fff;
}

.home-services-item:hover .home-services-line {
    background: rgba(255, 255, 255, .35);
}

.home-services-item:hover .home-services-contact a i {
    color: #00d6be;
}

.home-services-item:hover .home-services-icon {
    background: linear-gradient(90deg, #00CFAA 0%, #00A4FD 100%);
}



.home-blog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-bottom: 50px;
}

.home-blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease;
}

.home-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.home-blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.home-blog-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.home-blog-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.home-blog-item:hover .home-blog-img img {
    transform: scale(1.08);
}

.home-blog-con {
    padding: 20px 20px 18px;
    box-sizing: border-box;
}

.home-blog-con span {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    background: #0075aa;
    color: #fff;
    border-radius: 4px;
    font-size: .9rem;
    margin-bottom: 14px;
}

.home-blog-con h3 {
    min-height: 56px;
    height: 56px; overflow:hidden;
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 28px;
}

.home-blog-con h3 a {
    color: #151515;
}

.home-blog-con h3 a:hover {
    color: #00A4FD;
}

.home-blog-con p {
    color: #777;
    height:24px; line-height:24px; overflow:hidden;

}

.home-blog-bottom {
    border-top: 1px solid #e2e2e2; margin-top:25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.home-blog-more {
    color: #111;
    font-size: 1.1rem;
    font-weight: 500;
}

.home-blog-more i {
    margin-left: 8px;
}

.home-blog-more:hover {
    color: #00A4FD;
}

.home-blog-bottom em {
    font-style: normal;
    color: #999;
    font-size: .9rem;
}






/* 移动端 */
@media screen and (max-width: 768px) {
    .banner-text {
        left: 45px;
        right: 45px;
        top: 45%;
    }

    .banner-text h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .banner-text h3 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .banner-btn {
        min-width: 88px;
        height: 30px;
        line-height: 30px;
    }

    .banner-arrow {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-top: -15px;
        font-size: 18px;
    }
.banner-arrow i{ line-height: 30px;}
    .banner-prev {
        left: 12px;
    }

    .banner-next {
        right: 12px;
    }

    .banner-dots {
        bottom: 15px;
    }
	
.home-ad{ display: none;}	
	
	
	 .sectionbg1 {
	        width: 100%;
	        padding-bottom: 30px;
	        border-radius: 0;
	    }
	
	    .section-title {
	        padding: 20px 0;
	        line-height: 34px;
	        box-sizing: border-box;
	    }
	
	    .section-title h2 {
	        font-size: 1.2rem;
	    }
	
	    .section-title a {
	        height: 34px;
	        line-height: 34px;
	        padding: 0 14px;
	        font-size: .9rem;
	    }
	
	    .section-title a i {
	        margin-left: 10px;
	    }
	
	    .section-products-cat {
	        width: 100%;
	        padding: 0 15px;
	        box-sizing: border-box;
	        grid-template-columns: repeat(2, 1fr);
	        gap: 12px;
	    }
	
	    .products-cat-item {
	        min-height: 150px;
	        padding: 18px 12px;
	        flex-direction: column;
	        align-items: flex-start;
	    }
	
	    .products-cat-img {
	        width: 72px;
	        height: 55px;
	        margin-bottom: 12px;
	    }
	
	    .products-cat-img img {
	        max-height: 55px;
	        object-fit: contain;
	    }
	
	    .products-cat-info {
	        width: 100%;
	        padding-left: 0;
	    }
	
	    .products-cat-info h3 {
	        min-height: 42px;
	        font-size: .95rem;
	        line-height: 1.25;
	        margin-bottom: 12px;
	    }
	
	    .products-cat-info a {
	        font-size: .9rem;
	    }
	
	    .products-cat-info a span {
	        width: 18px;
	        height: 18px;
	        margin-left: 12px;
	    }
	
	    .products-cat-info a span i {
	        font-size: 9px;
	    }
	
	


    .sectionbg2 .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .home-about-left {
        width: 100%;
        padding-right: 0;
        color: #fff;
        order: 2;
    }

    .home-about-left em {
        display: block;
        line-height: 24px;
        margin-top: 22px;
        font-size: 13px;
        font-style: normal;
        color: rgba(255, 255, 255, .85);
    }

    .home-about-left h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 8px;
    }

    .home-about-left p {
        font-size: .95rem;
        line-height: 1.8;
        margin-top: 16px;
        color: rgba(255, 255, 255, .9);
    }

    .home-about-left a {
        display: inline-block;
        margin-top: 24px;
        height: 38px;
        line-height: 38px;
        color: #fff;
        padding: 0 24px;
        border-radius: 30px;
        font-size: .9rem;
        background: linear-gradient(90deg, #00CFA9 0%, #00A4FD 100%);
    }

    .home-about-left a:hover {
        background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    }

    .home-about-right {
        width: 100%;
        height: auto;
        order: 1;
    }

    .home-about-right img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }	
	
.sectionbg3 {
        width: 100%;
        padding-bottom: 30px;
        border-radius: 0;
        margin-top: 12px;
    }

    .home-company {
        width: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .home-company-left {
        width: 100%;
    }

    .home-company-left img {
        width: 100%;
        height: auto;
        object-fit: initial;
    }

    .home-company-right {
        width: 100%;
        padding: 30px 18px 35px;
    }

    .home-company-right em {
        font-size: .9rem;
        line-height: 22px;
        margin-bottom: 6px;
    }

    .home-company-right h2 {
        font-size: 1.55rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .home-company-right p {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .home-company-line {
        margin-bottom: 20px;
    }

    .home-company-list {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .home-company-list li {
        font-size: .9rem;
        line-height: 22px;
        padding-left: 22px;
    }

 .home-servicesbg {
        width: 100%;
        border-radius: 0;
        padding-bottom: 30px;
        margin-top: 12px;
    }

    .home-services-box {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-services-item {
        min-height: auto;
    }

    .home-services-con {
        min-height: auto;
        padding: 24px 18px 58px;
    }

    .home-services-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }

    .home-services-icon img {
        max-width: 32px;
        max-height: 32px;
    }

    .home-services-item h3 {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .home-services-item p {
        font-size: .95rem;
        line-height: 1.65;
    }

    .home-services-line {
        margin: 22px 0 18px;
    }

    .home-services-contact a {
        font-size: .95rem;
        line-height: 28px;
    }

    .home-services-more {
        right: 18px;
        bottom: 18px;
    }	
	
	.home-blog {
	        width: 100%;
	        padding: 0 15px 30px;
	        box-sizing: border-box;
	        grid-template-columns: 1fr;
	        gap: 15px;
	    }
	
	    .home-blog-img {
	        height: 190px;
	    }
	
	    .home-blog-con {
	        padding: 18px 16px 16px;
	    }
	
	    .home-blog-con span {
	        height: 23px;
	        line-height: 23px;
	        font-size: .85rem;
	        margin-bottom: 12px;
	    }
	
	    .home-blog-con h3 {
	        min-height: auto;
	        font-size: 1.1rem;
	        line-height: 1.35;
	    }
	
	    .home-blog-con p {
	        font-size: .95rem;
	        padding-bottom: 20px;
	    }
	
	    .home-blog-bottom {
	        padding-top: 14px;
	    }
	
	    .home-blog-more {
	        font-size: 1rem;
	    }
	
	    .home-blog-bottom em {
	        font-size: .85rem;
	    }
	
	
	
}