/*!
 * app.css for master
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-03-05-1:59 PM
 */

/*--------------------------------------------------------------
# 加载组件样式
--------------------------------------------------------------*/
@import "navbar.css";
@import "hero.css";
@import "footer.css";

@media screen and (min-width: 1600px) {
    .container-fluid {
        --bs-gutter-x: 160px !important;
    }
}

/*--------------------------------------------------------------
# App通用
--------------------------------------------------------------*/
.btn-style {
    padding: 16px 30px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    transition: 0.3s ease-in;
    border-radius: var(--border-radius);
    text-transform: capitalize;
    --bs-btn-color: var(--surface-color);
    --bs-btn-hover-color: var(--surface-color);
    --bs-btn-active-color: var(--surface-color);
    --bs-btn-bg: var(--contrast-color);
    --bs-btn-border-color: var(--contrast-color);
    --bs-btn-hover-bg: color-mix(in srgb, var(--contrast-color), transparent 20%);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    --bs-btn-active-bg: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.btn-style-primary {
    --bs-btn-bg: var(--accent-color);
    --bs-btn-border-color: var(--accent-color);
    --bs-btn-hover-bg: color-mix(in srgb, var(--accent-color), transparent 20%);
    --bs-btn-hover-border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    --bs-btn-active-bg: color-mix(in srgb, var(--accent-color), transparent 20%);
    --bs-btn-active-border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.btn-quote {
    padding: 11px 30px;
}

.btn-arrow {
    font-size: 15px;
    display: inline-flex;
    padding: 0;
}

.btn-arrow i {
    margin-left: 10px;
    transition: 0.3s;
}

.btn-arrow:hover i {
    margin-left: 15px;
}

.email-form .btn-arrow {
    padding: 16px 30px;
    font-size: 16px;
}

/*表格中格式修正*/
table p, table ul {
    margin-bottom: 0;
}

.banner-inner {
    height: 30vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .banner-inner {
        height: calc(100vw * 9 / 16);
    }
}

.banner-inner-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    -webkit-animation: scaleAnim 5s ease forwards;
    animation: scaleAnim 5s ease forwards;
    z-index: -1;
}

.banner-inner-wrapper,
.breadcrumb, .breadcrumb a {
    color: #FFFFFF;
}

.breadcrumb-container {
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
}

.breadcrumb, .breadcrumb a {
    font-size: 14px;
    opacity: 0.6;
    transition: ease-in-out 0.3s;
}

.breadcrumb {
    margin-top: 10px;
}

.breadcrumb span.bi {
    line-height: 26px;
}

.breadcrumb a:hover {
    opacity: 1;
}

.banner-inner-wrapper h3 {
    font-size: 44px;
    letter-spacing: 1px;
}

@keyframes scaleAnim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/*--cta--*/
.cta-content-grid h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: var(--heading-color);
}

.cta-content-grid p,
p.cta-content-grid-inf a {
    color: var(--text-color-secondary);
}

.cta-content-grid form input {
    padding: 10px 20px;
    height: 56px;
    font-size: 17px;
    color: var(--text-color-secondary);
    border-radius: var(--border-radius);
    position: relative;
    background: var(--light-bg-color);
    outline: none;
    border: 1px solid var(--light-bg-color);
    margin-right: 10px;
    width: 65%;
}

.cta-content-grid form .btn {
    width: 35%;
    padding: 10px 26px;
}

.cta-content-grid form input:focus {
    border: 1px solid var(--primary-color);
    background: var(--white-color);
}


/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/
.home-about .section-title {
    margin-bottom: 1rem;
    padding-bottom: 0;

}

.home-about .section-title .title {
    font-size: 24px;
}

.home-about .summarybox {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.home-about .about-img {
    margin-top: 2rem;
    background-size: cover;
    display: grid;
    align-items: center;
    z-index: 0;
    position: relative;
}

.home-about .about-img:before {
    content: "";
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

a.popup-with-zoom-anim {
    z-index: 10;
}

span.video-play-icon {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;

}

span.video-play-icon i {
    color: var(--accent-color);
    font-size: 32px;
}

span.video-play-icon i:before {
    line-height: unset;
}

span.video-play-icon:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

/*--------------------------------------------------------------
# showcase Section
--------------------------------------------------------------*/
.home-showcase .solu-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.home-showcase .solu-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .home-showcase .solu-img {
        margin: 30px 0 0 30px;
    }

    .home-showcase .solu-img:before {
        inset: -30px 0 0 -30px;
    }
}

.home-showcase h3 {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .home-showcase h3 {
        font-size: 28px;
    }
}

.home-showcase .nav-pills {
    border-bottom: 1px solid var(--light-bg-color);
}

.home-showcase .nav-pills li {
    padding: 0 30px;
}

.home-showcase .nav-link {
    background: none;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    color: initial;
}

.home-showcase .nav-link.active {
    color: var(--primary-color);
    background: none;
    border-bottom: 3px solid var(--primary-color);
}

@media (max-width: 575px) {
    .home-showcase .nav-link {
        font-size: 16px;
    }
}

.home-showcase .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.home-showcase .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--primary-color);
}

.home-showcase .sol-pane p.txt {
    font-size: 18px;
}

.home-showcase .sol-pane p.txt br {
    margin-bottom: 10px;
}

.home-showcase .sol-pane .sol-lists p {
    margin-top: 5px;
    padding-left: 30px;
    color: var(--text-color-secondary);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.home-whyus .service-item {
    padding: 30px;
    transition: all ease-in-out 0.3s;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-whyus .service-item .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.home-whyus .service-item .icon i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);;
    font-size: 36px;
    transition: 0.3s;
}

.home-whyus .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.home-whyus .service-item h4 a {
    transition: ease-in-out 0.3s;
}

.home-whyus .service-item p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);;
}

/*.home-whyus .service-item:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0px 0 60px 0 rgba(var(--primary-color-rgb), 0.1);*/
/*}*/

.home-whyus .service-item:hover h4 a {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
.home-gallery .portfolio-navs {
    padding: 0;
    margin: 0 auto 40px auto;
    list-style: none;
    text-align: center;
}

.home-gallery .portfolio-navs li {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 0 15px;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.home-gallery .portfolio-navs li:last-child {
    margin-right: 0;
}

.home-gallery .portfolio-navs li:hover, .home-gallery .portfolio-navs li.filter-active {
    color: var(--accent-color);
}

.home-gallery .portfolio-navs li::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
}

.home-gallery .portfolio-navs li.filter-active::after,
.home-gallery .portfolio-navs li:hover::after {
    width: 100%;
}

.imgs-grids {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px 5px color-mix(in srgb, var(--default-color), transparent 95%);
    background-color: var(--surface-color);
    transition: all ease-in-out 0.3s;
}

.imgs-grids:hover {
    box-shadow: 0 0 15px 5px color-mix(in srgb, var(--default-color), transparent 90%);
}

.imgs-grids .product-pic img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-gallery h4 {
    text-align: center;
    line-height: 32px;
    margin-top: 20px;
    word-break: break-word;
}

.home-gallery h4 a {
    font-size: 18px;
    text-transform: capitalize;
}

.imgs-grids .icons-section a {
    border-radius: 50px;
    display: inline-block;
    background: rgba(29, 29, 29, 0.7);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin: 0 2px;
}

.imgs-grids .icons-section a {
    transition: all .3s ease 0s;
    background: rgba(255, 255, 255, 0.3);
}

.imgs-grids .icons-section a:hover {
    background: #FFFFFF;
}

.imgs-grids .icons-section a i.bi {
    transition: all .3s ease 0s;
    line-height: 40px;
}

.imgs-grids .icons-section a:hover i.bi {
    color: var(--primary-color)
}

.imgs-grids img {
    /*border-radius: var(--border-radius);*/
    /*padding: 15px;*/
}


.imgs-grids .text {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(73 45 123 / 40%);
    right: 0;
    transition: all 400ms ease;
    display: grid;
    align-items: center;
}

.text {
    transform: scale3d(0, 0, 1);
}

.imgs-grids:hover .text {
    opacity: 0.8;
    background-color: rgba(1, 28, 37, 0.5);
    transform: scale3d(1, 1, 1);
}

.imgs-grids:hover div.text {
    bottom: 0;
}

.imgs-grids .icons-section,
.imgs-grids h6 {
    margin-top: 0.5em;
}

.imgs-grids .caption {
    opacity: 0;
}

.imgs-grids .icons-section {
    padding: 10px;
    margin-top: 10px;
}

.imgs-grids .wthree_text p {
    margin-bottom: 0;
    word-break: break-word;
}


.imgs-grids:hover .caption {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 480ms;
}

.imgs-grids .wthree_text {
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(0) scale3d(0, 0, 1);
    transition: transform 400ms ease 280ms;
}

.imgs-grids .wthree_text h3 {
    color: #fff;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 600;
    word-break: break-word;
}

.imgs-grids .wthree_text p {
    color: #fff;
    margin-top: 5px;
    word-break: break-word;
    font-size: 14px;
}

.imgs-grids:hover .wthree_text {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 380ms;

}

.imgs-grids h4 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
}

.imgs-grids:hover .wthree_text2 {
    opacity: 0;
}

@media (max-width: 1199.98px) {
    .imgs-grids h4 a {
        font-size: 1em;
    }

    .imgs-grids .about_grids h3 {
        font-size: 22px;
    }

    .imgs-grids .about-in .card {
        padding: 1.5em .5em;
    }
}

@media (max-width: 991.98px) {
    .imgs-grids img {
        width: 100%;
    }
}

@media (max-width: 767.98px) {

    .wthree_text h3 {
        font-size: 20px;
    }

    .imgs-grids h4 {
        margin-top: 15px;
    }

    .imgs-grids h4 a {
        font-size: 20px;

    }
}

@media screen and (min-width: 769px) {
    .gslide-description {
        background: var(--light-bg-color) !important;
    }
}

.gslide-description .gdesc-inner {
    width: 100%;
}

.gslide-description .gdesc-inner .gslide-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    word-break: break-word;
}

.gslide-description .gdesc-inner .gslide-desc {
    word-break: break-word;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-box {
    background-color: var(--surface-color);
    transition: all ease-in-out 0.3s;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-box:hover {
    box-shadow: 0 0 15px 5px color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-box .postimg {
    position: relative;
}

.post-box .category-badges {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.post-box .category-badges a {
    color: #FFFFFF;
    font-size: 12px;
    padding: 4px 10px;
    font-weight: 600;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);

}

.post-box .dc {
    margin: 10px 0;
    justify-content: start;
    align-items: center;
}

.post-box .dc a {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-box .dc a:not(:last-child) {
    margin-right: 10px;
}

.post-box .summary {
    padding: 20px;
}

.post-box .summary h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.post-box .summary p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.post-box .btn-arrow {
    color: var(--accent-color);
}

.article .article-title .dc a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 20px;
}

.article-prev-next p {
    margin-bottom: 0;
}

.article-prev-next p.tit {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.article-prev-next p.tit i {
    font-weight: bold;
}

.category-title h3 {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
    .catsumm-img {
        display: flex;
        justify-content: end;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.catl {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.05);
    transition: ease-in-out 0.3s;
}

.catl:hover {
    box-shadow: 0 0 15px 5px rgba(var(--primary-color-rgb), 0.1);
}

.catl .catl-wrap {
    padding: 30px;
    height: 100%;
}

.catl .catl-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vw * 9 / 16);
}

@media screen and (min-width: 992px) {
    .catl .catl-img {
        height: 350px;
    }
}

.catl .catl-txt h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.catl .catl-txt p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.catl-btn .btn-arrow {
    color: var(--accent-color);
    margin-top: 1rem;
}

.catl:hover .catl-btn .btn-arrow i {
    margin-left: 15px;
}

.catsumm .catsumm-txt h2.tit {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.catsumm .catsumm-txt .se-tit {
    font-size: 20px;
}

.catsumm .catsumm-txt ul > li > p {
    margin: 0;
}

.catsumm .catsumm-txt .content {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.catsumm .catsumm-txt .content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.catsumm .catsumm-txt .catsumm-feature {
    font-size: 1rem;
}

.catsumm .catsumm-feature ul li {
    margin-bottom: 0.5rem;
}

.catsumm .catsumm-feature ul li .k {
    font-weight: 600;
}

.catnav-tit {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scrolllink li {
    list-style: none !important;
    padding: 0;
    margin-bottom: 0.5rem;
}

.scrolllink li a i {
    margin-left: 10px;
    transition: margin-left 0.3s;
}

.scrolllink li a:hover i {
    margin-left: 15px;
}

.section-tit__in {
    text-align: center;
}

.section-tit__in .catnav-tit {
    font-size: 32px;
}

.section-tit__in p {
    font-size: 16px;
    color: var(--text-color-secondary)
}

.wz-table {
    width: 100%;
}


.wz-table tr {
    box-sizing: border-box;
    outline: 0px;
    border-top: none;
    border-bottom: 1px solid rgb(162, 170, 173);
    height: 18px;
}

.wz-table tr td,
.wz-table tr th {
    box-sizing: border-box;
    outline: 0px;
    padding: 12px 16px;
    display: table-cell;
    border: medium;
    vertical-align: middle;
    text-align: center;
}

.tab-nav {
    border-left: 2px solid var(--border-color);
}

.tab-nav .nav-link {
    position: relative;
    color: var(--text-color-secondary);
}

.tab-nav .nav-link.active {
    background: var(--light-bg-color);
    color: var(--primary-color);
    font-weight: 600;
}

.tab-nav .nav-link.active:before {
    content: "";
    position: absolute;
    left: -2px;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: 2px solid var(--primary-color);
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--primary-color);
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    font-size: 15px;
}

.solcat-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 0 15px 5px color-mix(in srgb, var(--default-color), transparent 95%);
    transition: ease-in-out 0.3s;
}

.solcat-box:hover {
    box-shadow: 0 0 15px 5px color-mix(in srgb, var(--default-color), transparent 90%);
}

.solcat-box {
    padding: 8%;
}

.solcat-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.solcat-box .summary {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.solcat-box .summary p {
    font-size: 14px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.solcat-box .btn-arrow {
    color: var(--accent-color);
    margin-top: 20px;
}


.solcat-box:hover .btn-arrow i {
    margin-left: 15px;
}

.solcat-box__v2 {
    padding: 0;
}

.solcat-box__v2 .summary {
    padding: 20px;
}

.solcat .solcat-content img {
    max-width: 100%;
    height: auto;
}

.gallery-list {
    position: relative;
}

.gallery-list .postimg .item {
    padding: 20px;
}

.gallery-list .summary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-main .about-img {
    background-size: cover;
    display: grid;
    align-items: center;
    z-index: 0;
    position: relative;
}

.about-main .about-img:before {
    content: "";
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-box h3 span {
    color: var(--accent-color);
}

.service-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 22px;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
    color: var(--text-color-secondary);
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: var(--text-color-secondary);
}

.team .member .contact {
    margin: 10px 0;
}

.team .member .contact p {
    margin: 0;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a + a {
    margin-left: 8px;
}

.catlist-box .catlist-txt {
    margin-top: 1rem;
}

.catlist-box .catlist-txt h3 {
    font-size: 24px;
    font-weight: bold;
}

.catlist-box .catlist-txt p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.catlist-box .btn-arrow {
    color: var(--accent-color);
}

.company-logos img {
    padding: 0 18px;
    border-radius: var(--border-radius);
}

.company-logos img:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .company-logos img {
        padding: 0 12px;
    }
}

@media (max-width: 415px) {
    .company-logos img {
        padding: 0 8px;
    }
}

@media (max-width: 384px) {
    .company-logos img {
        padding: 0 2px;
    }
}

.img-grid {
    overflow: hidden;
    position: relative;
}

.img-grid-pos {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(73 45 123 / 40%);
    right: 0;
    transition: all 400ms ease;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    display: grid;
    align-items: center;
}

.img-grid-pos {
    transform: scale3d(0, 0, 1);
}

.img-grid:hover .img-grid-pos {
    opacity: 0.8;
    background-color: rgba(1, 28, 37, 0.5);
    transform: scale3d(1, 1, 1);
}

.img-grid:hover .img-grid-text {
    opacity: 1;
    color: #fff;
    transform: translateY(0) scale3d(1, 1, 1);
    transition: transform 400ms ease 380ms;
}

.img-grid .img-grid-text {
    text-align: center;
    opacity: 0;
    transform: translateY(0) scale3d(0, 0, 1);
    transition: transform 400ms ease 280ms;
}

.img-grid-text h3 {
    color: #fff;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
}

.img-grid-text p {
    color: #eee;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .guides {
        margin-bottom: 60px;
    }
}

.contact .cont-tit h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.contact .cont-tit h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.contact-main p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact-main strong {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 18px;
}

.get-in-touch section {
    padding: 0;
}

.get-in-touch .section-title__v2 .title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.list-indu .indu-content .article-title h2 {
    font-size: 34px;
    margin-bottom: 1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.cnc-processing .tit {
    font-size: 22px;
    font-weight: 600;
}

.post-box__img.equipment .post-txt .tit {
    margin: 1rem 0;
    font-size: 22px;
    font-weight: 600;
}

.post-box__img.equipment .post-txt .cont p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-color-secondary);
}

@media (max-width: 767.98px) {
    .cnc-processing .tit,
    .post-box__img.equipment .post-txt .tit {
        font-size: 18px;
    }

    .cnc-processing .summ, .post-box__img.equipment .post-txt .cont p {
        font-size: 14px;
        line-height: 1.2;
    }
}

.wechat-lists {
    background: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.wechat-lists ul {
    display: inline-block;

}

.wechat-lists ul > li:not(:last-child) {
    margin-right: 15px;
}

.wechat-lists img {
    width: 120px;
    height: auto;
}

.wechat-lists p {
    text-align: center;
}

.modal-content {
    border-radius: 0;
}

.contactModal .modal-title {
    font-size: 18px;
}

/*--------------------------------------------------------------
# product gallery
--------------------------------------------------------------*/
.product-gallery {
    overflow: hidden;
    position: relative;
}

.product-gallery .swiper-thumbs {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.product-gallery .swiper-gallery .swiper-slide {
    background-color: #FFFFFF;
}

.product-gallery .swiper-thumbs .swiper-slide {
    padding: 3px;
    border: 1px var(--border-color) solid;
    background-color: #FFFFFF;
}

.product-gallery .swiper-thumbs .swiper-wrapper {
    flex-wrap: wrap;
}

.product-gallery .swiper-thumbs .swiper-wrapper .swiper-slide {
    margin-bottom: 5px;
}

.product-gallery .swiper-button-next, .product-gallery .swiper-button-prev {
    top: calc(50% - 30px);
}

.product-gallery .swiper-button-next::after, .product-gallery .swiper-button-prev::after {
    font-size: 18px !important;
    color: var(--accent-color) !important
}

.product-gallery .show-big {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.product-gallery .show-big i {
    font-size: 20px;
    color: #000000;
    transition: 0.3s;
}

.product-gallery .show-big:hover i {
    color: var(--focus-color);
}

.product-gallery .swiper-slide-thumb-active {
    border-color: color-mix(in srgb, var(--accent-color), transparent 0%) !important;
}


/*--------------------------------------------------------------
# article table
--------------------------------------------------------------*/
.wz-table {
    width: 100%;
}


.wz-table tr {
    box-sizing: border-box;
    outline: 0px;
    border-top: none;
    border-bottom: 1px solid rgb(162, 170, 173);
    height: 18px;
}

.wz-table tr td,
.wz-table tr th {
    box-sizing: border-box;
    outline: 0px;
    padding: 12px 16px;
    display: table-cell;
    border: medium;
    vertical-align: middle;
    text-align: center;
}

.wz-table tr td p,
.wz-table tr th p {
    margin-bottom: 0;
}

.wz-table tr.firstRow p {
    font-weight: 600;
}

.wz-table tr.firstRow td, .wz-table tr.firstRow th {
    background-color: color-mix(in srgb, var(--default-color), transparent 15%);
    border-color: color-mix(in srgb, var(--default-color), transparent 0%);
    color: var(--surface-color);
}

/*--------------------------------------------------------------
# article
--------------------------------------------------------------*/
.article-intro .article-title h1,
.article .article-title h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.article-intro .article-summary {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.article-intro .article-feature ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.article-intro .article-feature ul li {
    width: 100%;
    margin-bottom: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.article-intro .article-feature ul li .k {
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .article-intro .article-feature ul li {
        width: 100%;
    }
}

.article-prev-next,
.article-prev-next p {
    margin-bottom: 0;
    font-weight: 600;
}

.article-prev-next .prev, .article-prev-next .next {
    min-width: 50%;
}

.article-container .article-header .title,
.article-container .article-summary .title,
.photo-container .article-summary .title {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    position: relative;
}

.article-container .article-header .title:after {
    content: "";
    position: absolute;
    background-color: var(--accent-color);
    width: 50px;
    height: 3px;
    bottom: -10px;
    left: 0;
}

.article-product .article-header {
    margin-bottom: 2rem;
}

.article-container .article-summary .article-meta a,
.article-container .article-header .article-meta a {
    display: inline-block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}


.article-container .article-body img {
    max-width: 100%;
    height: auto !important;
}


@media (min-width: 1200px) {
    .article-container.article-single .article-body img {
        max-width: 1000px;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .article-body img {
        max-width: 100%;
        height: auto;
    }
}

.swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next, .swiper-button-prev {
    top: calc(50% - 28px);
}

.swiper-navigation .swiper-button-prev:after,
.swiper-navigation .swiper-button-next:after {
    font-size: 22px;
    color: var(--accent-color);
}

.partners-container .partners-slider .swiper-button-next,
.partners-container .partners-slider .swiper-button-prev {
    top: calc(50% - 28px);
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 120px;
    overflow: hidden;
}

.client-item img {
    object-fit: cover;
    height: 100%;
    width: auto;
}

.client-item:hover {
    transform: translateY(-3px);
}

.post-box__v2 {
    position: relative;
    display: block;
}

.post-box__v2 .post-box__text h3 {
    font-size: 24px;
    color: var(--heading-color);
    font-weight: 600;
    text-transform: uppercase;
}

.post-box__v2 .post-box__text p {
    font-size: 1rem;
    color: var(--accent-color);
}

.float-text {
    position: absolute;
    padding: 30px;
    z-index: 10;
}

.float-text.float-top-left {
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.related .solcat-box .category-title {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.article-footer .tags a,
.article-footer .keywords a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.article-footer .tags a:hover,
.article-footer .keywords a:hover {
    text-decoration: underline;
}

.article-footer .tags a + a, .article-footer .keywords a + a {
    margin: 0 2px;
}
