/* 全局样式 */
:root {
    --primary: #0061a9;
    --secondary-blue: #004499;
    --accent-green: #4CAF50;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}
@font-face {
    font-family: 'D-DIN';
    src: local('D-DIN'),
        url('../dist/fonts/D-DIN.woff2') format('woff2'),
        url('../dist/fonts/D-DIN.woff') format('woff'),
        url('../dist/fonts/D-DIN.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: local('D-DIN Bold'), local('D-DIN-Bold'),
        url('../dist/fonts/D-DIN-Bold.woff2') format('woff2'),
        url('../dist/fonts/D-DIN-Bold.woff') format('woff'),
        url('../dist/fonts/D-DIN-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: "D-DIN", 'Microsoft YaHei', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    font-size: 16px;
}
a:hover {
    text-decoration: none;
}
.container {
    max-width: 1600px
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-family: "D-DIN";
    font-size: 14px;
    line-height: 56px;
    padding: 0 42px;
    border-radius: 56px;
    font-weight: bold;
}
.text-primary {
    color: var(--primary) !important
}
/* 导航栏样式 */
.navbar {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    /*padding: 30px 50px;*/
    height: 125px
}
@media (max-width: 1199px) {
    .navbar {
        height: 80px;
    }
}
.navbar.on,
.navbar.fixed {
    background: rgba(255, 255, 255, 1);
    padding-top: 5px;
    padding-bottom: 5px;
    /*backdrop-filter: blur(10px);*/
    height: 80px;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, .1);
}
.navbar.on,
.navbar.fixed .nav-item a,
.navbar.on,
.navbar.fixed .nav-link {
    color: #000 !important;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .container {
    max-width: 100%;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 20px;
    color: var(--white) !important;
    font-weight: 900;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

/* 英雄区域样式 */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../img/banner.webp') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: "D-DIN";
    position: relative;
}
.hero-section .video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}
.xs-banner {
    display: none;
}
@media (max-width: 1199px) {
    .hero-section .video {
        display: none;
    }
    .xs-banner {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.hero-section .play {
    display: none;
}
@media (max-width: 1199px) {
    .hero-section .play {
        display: block;
        font-size: 60px;
        line-height: 1;
        color: #ffffff;
        margin-top: 30px;
    }
}
.fancybox-slide--iframe .fancybox-content {
    width: 733px !important;
    max-width: 80%;
    height: 500px !important;
    max-height: 50% !important;
    margin: 0;
}
.fancybox-caption {
    font-size: 16px;

    text-align: center;

    border: none;
}
.hero-section:after {
    content: '';
    display: block;
    width: 517px;
    height: 579px;
    background: url(../img/banner_img.webp) no-repeat center center;
    position: absolute;
    bottom: 35px;
    right: 35px;
    z-index: 10
}
.hero-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section2 {
    height: 663px;
    justify-content: center;
}
.fs60 {
    font-size: 60px;
    line-height: 1.1
}
.fs20 {
    font-size: 20px;
}
.f-c {
    display: flex;
    align-items: center;
    grid-gap: 5px
}
.f-c>i:before {
    display: block;
}
.hero-content {
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-btn {
    background: var(--primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.hero-graphic {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.page {
    padding: 75px 0
}
.page1_bg {
    background: url(../img/bg1.webp) no-repeat left bottom #fff
}
.about-img {
    display: flex;
    justify-content: flex-end
}
.about-img img {
    max-width: 95%;
}
.bg-blue {
    background: #f0f6ff
}
/* 关于部分样式 */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.text-muted {
    font-weight: bold;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4) !important
}
.fs30 {
    font-size: 30px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.page-text p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 30px
}
.text-primary2 {
    color: #0061a9;
}
.section-title {
    color: var(--primary);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle-2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.learn-more-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--secondary-blue);
    text-decoration: none;
    transform: translateX(5px);
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 400px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

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

/* PHI部分样式 */
.phi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
}

.col-lg-54 {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
}
.phi-circle {
    text-align: center;
    width: 28vw;
    height: 28vw;
    margin: 0 5.5vw;
    position: relative;
    z-index: 1;
}
.phi-circle .f-c {
    justify-content: center;
}
.phi-circle .circle {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phi-circle .circle:after {
    content: '';
    display: block;
}
.phi-circle .circle1 {
    transform: rotate(90deg)
}
.phi-circle .circle1:after {
    max-width: 616px;
    max-height: 616px;
    width: 100%;
    height: 100%;
    background: url(../img/b2.webp) no-repeat center center;
    background-size: cover;
    animation: rotate 70s infinite linear
}
.phi-circle .circle2:after {
    max-width: 616px;
    max-height: 616px;
    width: 100%;
    height: 100%;
    background: url(../img/b2.webp) no-repeat center center;
    background-size: cover;
    animation: rotate 30s infinite linear
}
.phi-circle .circle3:after {
    max-width: 413px;
    max-height: 413px;
    width: 80%;
    height: 80%;
    background: url(../img/b1.webp) no-repeat center center;
    background-size: cover;
    animation: rotate 50s infinite linear
}
.phi-circle .circle4:after {
    width: 50%;
    height: 50%;
    background: #e5efff;
    border-radius: 100%;
}
.phi-circle .img {
    margin: 0 auto;
    margin-top: 40px;
}
.phi-circle h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #0061a9;
    margin: 20px 0
}
.phi-circle i {
    font-size: 50px;
    margin: 0 10px;
    color: #000
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {}

@-webkit-keyframes rotate {}

.phi-list {
    width: 230px;
}
ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}
.phi-list li {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #0061a9;
    font-size: 16px;
    height: 120px;
    position: relative;
    z-index: 1;
}
.phi-list li:after {
    transition: all 0.3s;
    content: '';
    transform: scale(0);
    display: block;
    width: 173px;
    height: 173px;
    border-radius: 100%;
    background: #0061a9;
    position: absolute;
    z-index: -1;
    top: -35px;
    left: -20px;
}
.phi-list li.on {
    color: #fff;
}
.phi-list li.on:after {
    transform: scale(1);
}
.phi-list i {
    font-size: 50px;
    margin-right: 15px;
}
.phi-list h3 {
    font-size: 24px;
    margin-bottom: 0
}
.phi-list li.on h3 {
    width: 60px;
    word-break: break-word;
    line-height: 1
}

.phi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.phi-content {
    position: relative;
    z-index: 2;
}
.phi-content .text-muted {
    color: rgba(0, 97, 169, 0.4) !important
}
.phi-diagram {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-droplet {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #81c784, #4caf50);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.center-droplet::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.stress-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stress-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stress-icon.top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.stress-icon.right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.stress-icon.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* About页面样式 */
.bold {
    font-weight: bold;
}
.text-primary2 {
    color: #1e3a8a !important;
}
.page-bg6 {
    background: url(../img/image21.webp) no-repeat top left #fff;
}

.mission-positioning .card-body {
    height: 285px;
    color: #fff;
    padding: 70px;
    background-size: cover
}
.fs18 {
    font-size: 18px;
}
.f-c-sb {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}
.text-primary3 {
    text-transform: uppercase;
    color: #0061a9;
    line-height: 1.2
}
.f-c-sb .text-primary3 {
    text-align: right;
}
.stress-categories {
    display: flex;
    grid-gap: 14px
}
.stress-categories .item {
    overflow: hidden;
    flex: 0 0 188px;
    height: 495px;
    background: url(../img/img11-1.webp) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}
.stress-categories .item:nth-child(1) {
    background-image: url(../img/img11-1.webp)
}
.stress-categories .item:nth-child(2) {
    background-image: url(../img/img11-2.webp)
}
.stress-categories .item:nth-child(3) {
    background-image: url(../img/img11-3.webp)
}
.stress-categories .item:nth-child(4) {
    background-image: url(../img/img11-4.webp)
}
.stress-categories .item:nth-child(5) {
    background-image: url(../img/img11-5.webp)
}

.stress-categories .item.on:after {
    background: #0061a9;
    opacity: 0.7
}
.stress-categories .item.on:nth-child(1) {
    background-image: url(../img/img11-1-1.webp)
}
.stress-categories .item.on:nth-child(2) {
    background-image: url(../img/img11-2-1.webp)
}
.stress-categories .item.on:nth-child(3) {
    background-image: url(../img/img11-3-1.webp)
}
.stress-categories .item.on:nth-child(4) {
    background-image: url(../img/img11-4-1.webp)
}
.stress-categories .item.on:nth-child(5) {
    background-image: url(../img/img11-5-1.webp)
}
.stress-categories .item:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    background: #000;
    opacity: 0.6
}
.stress-categories .item.on {
    flex: 1;
}
.stress-categories * {
    transition: all 0.5s
}
.stress-card {
    padding-top: 110px;
    height: 100%;
    position: relative;
}
.stress-card:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon2.webp) no-repeat center center;
    margin: 0 auto;
    position: absolute;
    top: 80%;
    left: 0;
    right: 0
}
.stress-card i {
    margin-bottom: 15px;
    display: block;
}
.stress-card.card2 {
    opacity: 0
}
.stress-card.card2:after {
    display: none;
}
.stress-categories .item.on .stress-card {
    transform: translateY(-30px);
    opacity: 0
}
.stress-categories .item.on .stress-card.card2 {
    opacity: 1;
    transform: translateY(-100%)
}
.stress-card.card2 {
    padding: 80px 50px 0px;
}
.stress-card .head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    grid-gap: 10px;
    margin-bottom: 30px;
    text-align: left;
}
.stress-card .head h4 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 0
}
.stress-card .head h5 {
    font-size: 36px;
    text-transform: uppercase;
}

.flex {
    display: flex
}
.stress-card .des {
    /*padding-left: 70px;*/
    text-align: left;
}
.stress-card .des h4 {
    margin-bottom: 30px;
    width: 50%;
}
.stress-card .des i {
    margin-right: 15px;
}
.stress-card .img {
    position: absolute;
    bottom: 20px;
    right: 50px
}

.stress-text {
    padding-top: 70px;
    color: #fff;
}
.stress-text .row {
    margin: 0;
}
.stress-text h2 {
    margin-bottom: 20px;
}
.stress-text .col-lg-6 {
    padding: 70px 50px;
    background: #003d90;
    min-height: 390px;
    display: flex;
    align-items: center;
}
.stress-text p {
    margin-bottom: 0;
    font-size: 18px;
}
.stress-text .col-lg-6:first-child {
    background: #0061a9
}

.page-history {
    background: url(../img/line-bg.webp) repeat-x bottom center;
    margin-bottom: 1px;
    padding-bottom: 0
}
.history-year span {
    color: #1e3a8a;
}
.history-year {
    position: relative;
    padding-left: 30px;
    margin-left: 20px;
}
.history-year:before {
    content: '';
    display: block;
    width: 1px;
    top: 10px;
    bottom: 0;
    background: #0061a9;
    position: absolute;
    left: 0
}
.history-year:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: -6px;
    background: #0061a9;
    border-radius: 100%;
}
.history-icon {
    margin-top: 10px;
}
.swiper4 {
    margin-top: 50px;
}
.history-item {
    display: flex;
    height: 220px;
}
.history-item .lead {
    font-size: 18px;
    line-height: 1.5
}
.swiper-pagination.pagination4 {
    position: initial;
    margin: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination.pagination4 .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #0061a9;
    opacity: 0.3
}
.swiper-pagination.pagination4 .swiper-pagination-bullet-active {
    width: 21px;
    height: 21px;
    opacity: 1;
}
.f-j-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-bg8 {
    background: url(../img/bg8.webp) no-repeat center center;
    background-size: cover
}

.factory-tabs {
    display: flex;
    align-items: center;
}
.factory-tabs .tag {
    padding: 0 18px;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 52px;
    color: #fff;
    position: relative;
    cursor: pointer;
    position: relative;
}
.factory-tabs .tag.on {
    background: #fff;
    color: #0061a9;
}
.factory-tabs .tag.on:after {
    content: '';
    display: block;
    width: 13px;
    height: 11px;
    background: url(../img/icon3.webp);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.factory-carousel {
    margin-top: 50px;
}
.factory-carousel p {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
}
.factory-image {
    position: relative;
}
.factory-image img {
    width: 100%;
}
.factory-image,
.factory-image:before {
    transition: all 0.3s
}
.factory-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
}
.factory-image:hover:before {
    border: 3px solid #d5d5d5
}
.factory-image:hover {
    box-shadow: 0 20px 16px rgba(0, 52, 90, 0.32)
}

.certificate-item {
    cursor: pointer;
    margin: 18px;
}
.certificate-item .img {
    border: 1px solid #d5d5d5;
    padding: 3px;
    margin-bottom: 15px;
}
.certificate-item p {
    font-size: 18px;
}
.certificate-item .img img {
    width: 100%;
    display: block;
}
.certificate-item:hover .img {
    border-color: #fff;
    box-shadow: 0 20px 16px rgba(191, 191, 191, .34)
}
.img {
    transition: all 0.3s
}
.container {
    position: relative;
}
.swiper5-btn {
    display: flex;
    align-items: center;
    grid-gap: 26px;
    position: absolute;
    bottom: 20px;
    left: 0
}
.swiper-btn i {
    font-size: 30px;
    display: block;
    height: 30px;
    line-height: 30px;
}
.swiper-prev i {
    transform: rotate(180deg)
}
* {
    outline: none;
}
.swiper-btn div {
    cursor: pointer;
    width: 59px;
    height: 59px;
    background: #f1f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0061a9;
}
.swiper-btn div:hover {
    background: #0061a9;
    color: #fff;
}
.pagination-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d7d7d7;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dots .dot.active {
    background-color: #1e3a8a;
}

.pagination-dots .dot:hover {
    background-color: #1e3a8a;
}
.page {
    position: relative;
    z-index: 1;
}
.page-bg9:after {
    content: '';
    display: block;
    width: 100%;
    height: 320px;
    background: #0061a9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}
/* 响应式设计 */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .factory-tabs {
        flex-direction: column;
    }

    .factory-tabs .btn {
        margin-bottom: 10px;
    }
}

.stress-icon.bottom-left {
    bottom: 20px;
    left: 20px;
}
.stress-icon.left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.stress-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.stress-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

/* 产品部分样式 */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.product-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background: rgba(0, 0, 0, 0.25)
}
.product-card1:hover::before {
    background: url(../img/bg6.webp) no-repeat bottom center;
    background-size: cover
}
.product-card2:hover::before {
    background: url(../img/bg6-1.webp) no-repeat bottom center;
    background-size: cover
}
.product-btm {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
    padding: 0 60px;
}
.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.product-content {
    height: 100%;
    padding: 50px;
    position: absolute;
    z-index: 101;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s
}
.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.fs48 {
    font-size: 48px;
}
.product-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}
.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.list-unstyled {
    flex: 1;
}
.product-content.btm {
    transform: translateY(100px);
    opacity: 0
}
.product-content.center {
    align-items: center;
    justify-content: center;
}
.product-card:hover .product-content.center {
    transform: translateY(-100px);
    opacity: 0
}
.product-card:hover .product-content.btm {
    transform: translateY(0px);
    opacity: 1
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}
.opt04 {
    opacity: 0.4
}
.product-icon {
    width: 351px;
    height: 305px;
    background: url(../img/icon1.webp) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
}
.ht100 {
    height: 100px;
}
.product-icon i {
    font-size: 150px;
    color: var(--white);
    height: 220px;
}
.research-content .page-text {
    min-height: 195px;
}

.bg-2 {
    background: url(../img/bg2.webp) no-repeat center center #125fae;
    background-size: cover
}
.opt08 {
    opacity: 0.8
}
/* 科研合作部分样式 */
.bg7 {
    background: url(../img/bg7.webp) no-repeat center center;
    background-size: cover
}
.page-title {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0061a9
}
.page-title h3 {
    font-size: 48px;
    font-weight: normal;
}
.research-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary));
    color: var(--white);
    position: relative;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" text-anchor="middle" dy=".35em" font-size="8" fill="rgba(255,255,255,0.1)">H₂O + CO₂ → C₆H₁₂O₆ + O₂</text></svg>');
    background-size: 200px 200px;
    opacity: 0.1;
}

.research-content {
    position: relative;
    z-index: 2;
}

.research-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.research-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.research-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.social-icons {
    font-size: 25px;
}
.foot_b i {
    display: flex;
    align-items: center;
    color: rgb(0, 146, 254);
}
/* 生产供应部分样式 */
.production-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.production-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 102, 204, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

.production-nav {
    list-style: none;
    margin-bottom: 30px;
    font-size: 24px;
    max-width: 440px;
}
.fs16 {
    font-size: 16px;
}
.production-nav ul {
    margin-bottom: 80px;
}
.production-nav li {
    padding: 25px 0;
    position: relative;
}
.production-nav li:after {
    content: '';
    display: block;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 1px;
    background: #d8d8d8;
    position: absolute;
}
.production-nav li.active a {
    color: #0061a9
}
.production-nav li.active:after {
    background: #0061a9
}
.production-nav li a {
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
    padding-right: 15px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.production-nav li span {
    display: block;
    max-width: 80%;
    line-height: 35px;
}
.f-r {
    display: flex;
    justify-content: flex-end
}
.production-card {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
}

.production-card h4 {
    margin-bottom: 20px;
    font-weight: bold;
}

.production-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
.img_box {
    width: 672px;
    height: 665px;
    position: relative;
}
.text_box {
    position: absolute;
    width: 90%;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.text_box .swiper2 {
    background: url(../img/bg3.webp) no-repeat left center #0061a9;
}
.swiper2 .swiper-slide {
    padding: 0 100px;
    color: #fff;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text_box:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}
.swiper1 .swiper-slide {
    position: relative;
}
.swiper1:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 62, 147, 1) 20%, rgba(0, 62, 147, 0));
    z-index: 1;
}
.swiper-container {
    overflow: hidden;
}
/* 新闻部分样式 */
.news-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 102, 204, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.news-carousel {
    position: relative;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-headline {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.news-date {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-date i {
    margin-right: 8px;
    color: var(--primary);
}

.news-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
    color: var(--white);
    text-decoration: none;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    margin: 0 5px;
}

.news-card2 {
    display: block;
    color: #000;
    padding: 18px;
    background: #fff;
    position: relative;
}
.news-card2 .card-body {
    padding-left: 0;
    padding-right: 0;
}
.news-card2 .card-title {
    font-weight: bold;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-card2 .text-muted {
    color: #0061a9 !important;
    display: flex;
    grid-gap: 5px;
    align-items: center;
}
.news-card2 .btm i {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card2 .btm {
    position: absolute;
    bottom: -10px;
    right: 16px;
    width: 74px;
    height: 74px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    align-items: center;
    color: #7f7f7f;
    transition: all 0.5s;
}
.news-card2 .btm:after {
    content: '';
    display: block;
    position: absolute;
    width: 106px;
    height: 106px;
    top: 50%;
    left: 50%;
    margin-top: -53px;
    margin-left: -53px;
    opacity: 0.3;
    border-radius: 100%;
}
.news-card2:hover .btm {
    background: #0061a9;
    color: #fff;
    right: 26px;
    bottom: -36px;
    font-size: 30px;
    z-index: 1;
}
.swiper3 .swiper-slide {
    padding-bottom: 100px;
}
.swiper3 .swiper-pagination {
    text-align: left;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.swiper3 .swiper-pagination-bullet {
    background: #0061a9;
    opacity: 0.3;
    width: 11px;
    height: 11px;
}
.swiper3 .swiper-pagination-bullet-active {
    width: 21px;
    height: 21px;
    opacity: 1
}
.swiper-container {
    position: relative;
}
.news-card2:hover .btm:after {
    background: #0061a9;
    animation: s_scale 1.5s;
    z-index: -1
}
.page.bg7 {
    padding-bottom: 10px;
}

@keyframes s_scale {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    80% {
        transform: scale(1.5);
        opacity: 0
    }
    100% {
        opacity: 0;
        display: none;
    }
}
/* 页脚样式 */
.footer {
    background: url(../img/foot_bg.webp) no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}
.foot_b {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    border-right: 0;
    padding: 30px 0;
    font-size: 18px;
    margin-bottom: 20px;
}
.foot_b img {
    margin-right: 10px;
}
.foot_b .col-6 {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 0;
    border-bottom: 0
}
.foot_b p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-content {
    position: relative;
    z-index: 2;
}
.text-white1 {
    color: rgba(255, 255, 255, 0.5)
}
.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-green);
    text-decoration: none;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
    color: var(--white);
    text-decoration: none;
}

.footer-nav {
    list-style: none;
    margin-bottom: 30px;
}

.footer-nav li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-green);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar-collapse .navbar-nav:last-child {
        flex-direction: row
    }
    .fs60 {
        font-size: 3em
    }
    .about-img img {
        margin: 0 auto;
    }
    .col-lg-54 {
        flex: 0 0 100%;
    }
    .product-img img {
        width: 100%;
    }
    .phi-circle {
        width: 50vw;
        height: 50vw;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .phi-diagram {
        height: 300px;
    }

    .center-droplet {
        width: 150px;
        height: 150px;
    }

    .stress-icon {
        width: 60px;
        height: 60px;
    }

    .stress-icon i {
        font-size: 1.5rem;
    }

    .research-content .page-text {
        min-height: 100px;
        max-width: 60vw
    }
    .production-nav {
        max-width: 100%;
    }
    .production-nav ul {
        margin-bottom: 20px;
    }
    .fs48 {
        font-size: 30px;
    }
    .research-content h2 br {
        display: none;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-title {
        margin-bottom: 20px;
    }

    .foot_b .row {
        flex-wrap: wrap;
    }
    .foot_b .row>div {
        flex: 0 0 100%;
        text-align: center !important
    }
    .img_box {
        width: 90%;
        height: auto;
    }
    .swiper2 .swiper-slide {
        padding: 0 20px;
        height: 250px;
    }
    .swiper2 .fs30 {
        margin-bottom: 10px !important
    }
    .text_box:after {
        padding: 20px 0
    }
    .swiper1 img {
        width: 100%;
    }
    .text_box:after {
        top: -10px;
        right: -10px;
    }
    .text_box {
        right: 10%;
        width: 100%;
    }
    .footer .nav-link {
        padding: 0 5px
    }
    .footer .text-right {
        text-align: left !important
    }
    .footer p {
        margin-bottom: 0
    }
    .page,
    .footer {
        padding: 30px 0
    }
    .page-title h3 {
        font-size: 30px;
    }
    .page-title {
        margin-bottom: 20px;
    }
    .research-content .page-text {
        width: 100%;
        max-width: 100%;
    }
    .bg-2 {
        background-position: left center
    }
}

.page {
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .phi-circle {
        width: 80vw;
        height: 80vw
    }
    .phi-list {
        width: 100%;
        padding: 0 20px;
        margin-top: 30px;
    }
    .phi-list li:after {
        display: none;
    }
    .phi-list li.on {
        color: #0061a9
    }
    .phi-list li {
        flex: 0 0 50%
    }
    .phi-list ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .fs60 {
        font-size: 4em
    }
    .phi-circle {
        margin: 0 10vw
    }
    .phi-circle .img {
        margin-top: 0;
        width: 30vw
    }
    .phi-circle .img img {
        width: 100%
    }
    .phi-circle h3 {
        font-size: 20px;
        margin: 10px 0
    }
    .phi-list ul {
        flex-wrap: nowrap;
    }
    .phi-list {
        overflow-x: auto;
    }
    .phi-list li {
        flex: auto;
        margin-right: 30px;
    }
    .production-nav li {
        padding: 15px 0
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .footer-nav li {
        display: block;
        margin-bottom: 10px;
    }

    .phi-circle {
        width: 98vw;
        height: 98vw;
        margin: 0 1vw
    }
    .phi-circle .img {
        margin-top: 30px;
    }
    .product-content {
        padding: 30px;
    }
    .hero-section:after {
        width: 60%;
        background-size: 100% auto;
        background-position: bottom right;
        bottom: 0;
        right: 0
    }
    .footer .mx-2 {
        margin: 0 3px !important
    }
    .social-icons {
        text-align: right;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.swiper6 {
    margin-top: 85px;
}
.swiper6 .swiper-slide {
    width: 728px;
    position: relative;
}
.swiper6 p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    text-align: center;
    color: #fff;
    z-index: 2;
    font-size: 18px;
}
.swiper6 .swiper-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
    z-index: 1;
}
.swiper6 .swiper-slide:after {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 97, 169, 0), rgba(0, 97, 169, 1) 80%);
    content: '';
    z-index: 1;
    opacity: 0
}
.align-center {
    text-align: center;
}
.swiper6-btn {
    position: absolute;
    width: 800px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 0;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.swiper6 .swiper-slide-active:before {
    opacity: 0
}
.swiper6 .swiper-slide-active:after {
    opacity: 1;
}
.breadcrumb {
    padding-left: 0;
    grid-gap: 5px;
    align-items: center;
}
.breadcrumb img {
    display: block;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '|'
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0
}
.breadcrumb-item.active {
    color: #000
}
.text-000 {
    color: #000 !important
}
.blog-info {
    height: 59px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    color: #2f3f99
}
.blog-info p {
    flex: 1;
    margin-bottom: 0;
    font-size: 16px;
}
.blog-content {
    font-size: 18px;
    margin: 50px 0;
}
.blog-cur {
    display: flex;
    align-items: center;
    grid-gap: 19px;
}
.blog-cur a {
    transition: all 0.3s;
    display: block;
    width: 68px;
    height: 68px;
    background: url(../img/icon4.webp) no-repeat center center #f2f2f2
}
.blog-cur a.next {
    transform: rotate(180deg)
}
.blog-cur a.back {
    background-image: url(../img/icon5.webp)
}
.blog-cur a:hover {
    background-color: #ccc
}
.flex1 {
    flex: 1;
}
.blog-post {
    margin-bottom: 100px;
}

.blog-title {
    border-bottom: 1px solid #2c4193;
    line-height: 60px;
    font-size: 24px;
    color: #2c4193;
    font-weight: bold;
    position: relative;
    margin-bottom: 60px;
}
.blog-title:after {
    content: '';
    display: block;
    width: 180px;
    height: 6px;
    background: url(../img/icon6.webp) no-repeat left center #fff;
    position: absolute;
    bottom: -3px;
    left: 0
}

.product-items {
    display: flex;
    margin: -38px
}
.product-items .item {
    flex: 0 0 50%;
    padding: 38px
}
.product-items img {
    width: 100%;
}
.product-items .img {
    position: relative;
}
.product-items .date {
    font-size: 16px;
    position: absolute;
    bottom: -30px;
    left: 32px;
    background: #2f3f99;
    width: 80px;
    color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container2 {
    max-width: 1200px;
    position: relative;
    width: 96%;
    margin: 0 auto;
}
.fs36 {
    font-size: 36px;
    line-height: 1;
}
.product-items .card-body {
    margin-top: 60px;
    padding: 0
}
.product-items h5 {
    color: #000;
    font-size: 24px;
    margin-bottom: 15px
}
.product-items h5:hover {
    color: #0061a9
}
.product-items {
    margin-bottom: 100px;
    font-size: 16px;
}
.more-btm {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2f3f99;
    color: #2f3f99;
    font-weight: bold;
}
.more-btm i {
    font-size: 20px;
}

.hero-section3 {
    margin-bottom: 30px;
    height: 126px;
    background: #033666
}
.container3 {
    max-width: 1300px;
    width: 96%;
    margin: 0 auto;
    position: relative;
}
.page-bg10 {
    padding: 0px 0 80px;
    position: relative;
}
.page-bg10:after {
    content: '';
    display: block;
    width: 540px;
    height: 604px;
    background: url(../img/bg10.webp) no-repeat center center;
    position: absolute;
    bottom: 20px;
    right: 0
}
.page-tit3 {
    margin-top: 20px;
    margin-bottom: 26px;
}
.page-tit3 h2 {
    font-size: 36px;
    font-weight: bold;
    color: #0061a9
}
.page10-flex {
    margin-top: 46px;
    display: flex;
}
.page-tit3 a {
    display: inline-block;
    padding: 0 20px;
    line-height: 42px;
    color: #fff;
    background: #0061a9;
    font-size: 24px;
}
.pro-img {
    width: 395px;
    height: 395px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}
.pro-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover
}
.pro-info {
    flex: 1;
    height: 395px;
    display: flex;
    flex-direction: column;
}
.pro-info .page-text {
    flex: 1;
}
.pro-info h3 {
    text-transform: uppercase;
    color: #0061a9
}

.pro-btm {
    display: flex;
    align-items: center;
}
.pro-btm label {
    margin: 0 5px;
    padding: 0 20px;
    line-height: 42px;
    margin: 0;
    color: #0061a9;
    font-size: 14px;
    text-transform: uppercase;
}
.pro-btm label.on {
    background: #0061a9;
    color: #fff;
}
.pro-btm .share a {
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
}
.uppercase {
    text-transform: uppercase;
}
.page-bg11 {
    background: url(../img/bg11.webp) no-repeat center center;
    background-size: cover
}
.page11-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px
}
.page11-list li {
    flex: 0 0 25%;
    padding: 20px;
}
.page11-list p {
    max-width: 200px;
}
.page11-list h3 {
    font-size: 24px;
    color: #0061a9
}
.page-list li {
    padding-left: 25px;
    background: url(../img/icon7.webp) no-repeat left 9px;
    font-size: 18px;
    line-height: 36px;
}
.ht50 {
    height: 50px;
}
.max-80 {
    max-width: 80%;
}
.max-90 {
    max-width: 90%;
}
.form-box .textarea,
.form-box .input {
    width: 100%;
    border: 0;
    height: 65px;
    line-height: 65px;
    margin: 10px 0;
    padding: 0 20px
}
.form-box .textarea {
    padding: 10px 20px;
    line-height: 30px;
    height: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.submit {
    width: 128px;
    line-height: 42px;
    border: 0;
    background: #0061a9;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.com-list {
    margin-left: -26px;
    margin-right: -26px
}
.com-list .col-lg-4 {
    padding: 0 26px;
    margin-bottom: 30px;
}
.com-list .info {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.com-list .info:after {
    transition: all 0.3s;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: #0061a9;
    height: 1px;
}
.com-list .info .mask {
    display: flex;
    width: fit-content;
    padding: 5px 20px;
    line-height: 24px;
    background-color: #0061a9;
    color: #ffffff;
    font-size: 18px;
}
.com-list .info h4 {
    font-size: 18px;
    flex: 1;
    margin-top: 10px;
}
.com-list a {
    color: #0061a9
}
.com-list .info i {
    font-size: 20px;
    width: 100%;
}
.com-list a:hover .info:after {
    width: 100%;
}

.page-tit4 h2 {
    font-weight: bold;
    color: #0061a9;
    font-size: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}
.page-tit4 h2:after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: #b2cfe5;
    margin-left: 70px;
}

.page-12 {
    padding-top: 148px;
    background: url(../img/bg12.webp) no-repeat top left;
}
.h2-tit {
    line-height: 1;
    color: #0061a9;
    text-transform: uppercase;
}
.page-tit5 {
    text-align: center;
}
.page-tit5 h3 {
    margin-bottom: 0;
    color: #0061a9;
    text-transform: uppercase;
}
.page-tit5 h5 {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: .8em
}
.page-tit5 p {
    margin-bottom: 0;
    line-height: 30px;
    font-size: 18px;
}

.swiper7 {
    margin-top: 40px
}
.swiper7 .swiper-slide {
    display: flex;
    align-items: center;
    background: #0061a9
}
.swiper7 .swiper-button-next {
    right: 20px;
}
.swiper7 .swiper-button-prev {
    left: 20px;
}
.swiper7 .swiper-button-next:after,
.swiper7 .swiper-button-prev:after {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}
.swiper7 .page-text {
    flex: 1;
    padding: 0 5%
}

.rd-items {
    display: flex;
    flex-wrap: wrap;
}
.rd-items .item:not(.item1) {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
}
.rd-items .item1 {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.rd-items .item1 .txt {
    flex: 1;
}
.rd-items .item p {
    max-width: 80%;
}
.rd-items .item {
    margin-top: 90px;
}
.rd-items .item h2 {
    font-size: 48px;
    color: #0061a9;
    font-weight: bold;
}

.page-13 {
    background: url(../img/bg13.webp) no-repeat top center;
    background-size: 100% auto;
}

.process-box {
    padding: 90px;
    background: #fff;
}
.process-box2 .box {
    background: #f8f8f8;
    padding: 16px
}
.process-box2 .box img {
    width: 100%;
}
.process-box2 .box .img {
    margin-bottom: 15px
}
.process-box2 .page-text {
    padding-bottom: 20px;
    min-height: 180px;
}

.rd-box {
    display: flex;
}
.rd-box .img {
    flex: 0 0 50%;
}
.rd-box .flex1 {
    padding-left: 60px;
    padding-top: 60px
}
.rd-box h2 {
    margin-bottom: 70px
}
.rd-box .text {
    margin-left: -106px;
    padding: 50px;
    background: #fff;
    box-shadow: 0 20px 16px rgba(191, 191, 191, 0.34);
    font-size: 18px;
    line-height: 26px;
    min-height: 350px;
    display: flex;
    align-items: center;
}
.rd-box .text li {
    display: flex;
    margin-top: 10px;
}
.rd-box .text li:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #0061a9;
    margin-right: 13px;
    margin-top: 10px;
    min-width: 7px;
}
.rd-swiper {
    position: relative;
    padding: 0 70px;
    padding-bottom: 5px;
}
.rd-swiper:after {
    content: '';
    display: block;
    width: 100%;
    left: 0;
    bottom: 15px;
    height: 1px;
    background: #0061a9;
    position: absolute;
}
.rd-swiper .swiper-slide,
.rd-swiper h3 {
    width: auto;
    display: inline-block
}
.rd-swiper .swiper-slide {
    position: relative;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 30px;
}
.rd-swiper .swiper-slide:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-radius: 19px;
    background: #0061a9;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}
.rd-swiper .swiper-slide.on {
    color: #0061a9
}
.rd-swiper .swiper-slide.on:after {
    width: 19px;
    height: 19px;
}
.rd-swiper .swiper-rd-next,
.rd-swiper .swiper-rd-prev {
    background: url(../img/left-arrow.webp) no-repeat center center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
}
.rd-swiper .swiper-rd-next {
    right: 0;
    transform: rotate(180deg)
}
.rd-swiper .swiper-rd-prev {
    left: 0
}
.max-100 {
    max-width: 100%;
}
.pd-5 {
    padding: 50px
}
.f-j-sb {
    justify-content: space-between;
}
.row-reverse {
    flex-direction: row-reverse
}
.wd50 {
    width: 50px;
}
.f-end {
    display: flex;
    justify-content: flex-end
}
.btn-more {
    cursor: pointer;
    display: inline-block;
    padding: 0 30px;
    line-height: 56px;
    color: #fff;
    background: #0061a9;
    font-size: 18px;
}
img {
    max-width: 100%;
}
.btn-more:hover {
    background: #003f6e;
    color: #fff;
}
.rd-list2 .box {
    padding: 48px 30px;
    background: #f8f8f8;
    height: 438px;
}
.rd-list2 .col-lg-3:nth-child(2n+1) {
    margin-top: 70px;
}
.rd-list2 h2 {
    color: #0061a9
}
.rd-list2 .col-lg-3:hover .box {
    background: #0061a9;
    color: #fff
}
.rd-list2 .page-text p {
    line-height: 24px;
}
.rd-list2 .col-lg-3:hover h2 {
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .page {
        padding: 5vw 0
    }
    .hero-section2 {
        height: 60vw
    }
    .fs48 {
        font-size: 5vw
    }
    .rd-box .text {
        padding: 20px;
        min-height: initial;
        margin: 0
    }
    .rd-box .img {
        flex: 0 0 100%
    }
    .rd-box .flex1 {
        flex: 0 0 100%;
        padding: 0;
        margin-top: 30px;
    }
    .rd-box h2 {
        margin-bottom: 0px;
    }
    .rd-box {
        flex-wrap: wrap;
    }
    .rd-list .col-lg-4 {
        margin-bottom: 20px;
    }
    .rd-list img {
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    body {
        font-size: 16px;
    }
    .rd-swiper h3 {
        font-size: 18px;
    }
    .rd-swiper {
        padding: 0 30px;
    }
    .mt-5,
    .my-5 {
        margin-top: 20px !important
    }
    .rd-swiper .swiper-rd-next,
    .rd-swiper .swiper-rd-prev {
        margin-top: -25px;
    }
    .rd-list .col-lg-4 {
        margin-bottom: 10px;
    }
    .rd-swiper .swiper-slide.on:after {
        bottom: 10px;
        width: 10px;
        height: 10px;
    }
    .hero-section2 {
        height: 80vw
    }
    .hero-section2 .fs60 {
        margin-bottom: 0;
        transform: translateY(30px)
    }
    .fs48 {
        font-size: 7.5vw
    }
    .page-text p {
        line-height: 24px;
    }
    .wd50 {
        height: 20px;
    }
    .mb-4,
    .my-4 {
        margin-bottom: 10px !important;
    }
    .col-wap-t4 {
        margin-top: 20px
    }
    .max-90 {
        max-width: 100%
    }
    .rd-list2 .col-lg-3:nth-child(2n+1) {
        margin-top: 0
    }
    .rd-list2 .col-lg-3 {
        margin-top: 10px !important;
    }
    .rd-list2 .box {
        padding: 20px;
        height: auto;
    }
    .navbar {
        padding-top: 10px;
    }
    .h2-tit br {
        display: none;
    }
    .mb-5,
    .my-5 {
        margin-bottom: 20px !important;
    }
    .page-12 .col-lg-6.page-text {
        margin-top: 20px;
    }
    .rd-items .item:not(.item1) {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%
    }
    .rd-items .item p {
        max-width: 100%;
    }
    .process-box {
        padding: 20px;
    }
    .process-box2 .page-text {
        padding-bottom: 0
    }
    .swiper7 .swiper-slide {
        display: block;
    }
    .swiper7 .page-text {
        margin: 0;
        padding: 20px;
    }
    .rd-items .item {
        margin-top: 20px;
        display: block;
    }
    .swiper3 .swiper-slide {
        padding-bottom: 50px;
    }
    .breadcrumb {
        font-size: 16px;
    }
    .hero-section3 {
        margin-bottom: 20px;
        height: 91px
    }
    .navbar {
        padding: 15px;
        box-sizing: border-box;
        width: 100%;
    }
    .navbar.on,
    .navbar.fixed {}
    .page10-flex {
        display: block;
        margin-top: 20px;
    }
    .pro-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .pro-btm {
        flex-wrap: wrap;
        margin-top: 15px;
    }
    .pro-btm .share {
        width: 100%;
        margin-top: 20px;
    }
    .page-bg10 {
        padding-bottom: 50px;
    }
    .page-bg11 {
        padding: 30px 0 !important
    }
    .page-list li {
        line-height: 24px;
        margin-bottom: 10px;
        background-position: left 5px
    }
    .page-tit3 h2 {
        margin-bottom: 0
    }
    .page11-list ul {
        margin: 0
    }
    .page11-list li {
        padding: 10px;
        box-sizing: border-box;
        flex: auto;
        width: 33.3%;
        min-width: 33.3%;
        max-height: 33.3%;
    }
    .page-tit3 h2 {
        font-size: 26px;
    }
    .form-box .textarea,
    .form-box .input {
        height: 45px;
        margin: 5px 0
    }
    .form-box .textarea {
        height: 150px;
    }
    .page-tit3 {
        margin-bottom: 15px;
    }
    .page-tit4 h2 {
        margin-bottom: 20px;
    }
    .page.pt-2 {
        padding-top: 0 !important
    }
    .page-tit4 h2:after {
        margin-left: 20px
    }
    .com-list .info {
        padding-bottom: 0
    }
    .product-items {
        display: block;
        margin: 0
    }
    .product-items .item {
        padding: 10px;
    }
    .product-items .card-body {
        margin-top: 50px;
    }
    .blog-title {
        margin-bottom: 20px;
    }
    .blog-post {
        margin-bottom: 20px;
    }
    .blog-cur a {
        width: 40px;
        height: 40px;
    }

    .breadcrumb {
        padding: 0
    }
    .mission-positioning .card-body {
        padding: 30px;
        height: auto;
    }
    .f-c-sb {
        display: block;
    }
    .f-c-sb .text-primary3 {
        text-align: left;
    }
    .fs30 {
        font-size: 24px;
    }
    .stress-categories {
        display: block;
    }
    .stress-categories .item {
        height: 100px;
        margin-top: 10px;
    }
    .stress-categories .item.on {
        height: 300px;
    }
    .stress-card {
        grid-gap: 10px;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 30px;
    }
    .stress-card:after {
        top: 50%;
        right: 15px;
        margin: 0;
        left: auto;
        margin-top: -15px;
    }
    .stress-card i {
        margin-right: 20px;
    }
    .stress-card.card2 {
        display: block;
        padding: 20px;
    }
    .stress-card.card2 .txt {
        display: flex;
        align-items: center;
        grid-gap: 10px
    }
    .stress-card .head h4 {
        font-size: 30px;
    }
    .stress-card i {
        margin-bottom: 0;
        font-size: 40px;
    }
    .stress-card .img {
        width: 30%;
        right: 20px;
    }
    .stress-card .des {
        padding-left: 0
    }
    .stress-card .head h5 {
        font-size: 26px;
    }
    .stress-card .head h5 {
        margin-bottom: 0
    }
    .stress-text .col-lg-6 {
        padding: 20px 30px;
    }
    .page-bg8 .factory-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
    }
    .factory-tabs .tag {
        line-height: 45px;
    }
    .factory-carousel {
        margin-top: 20px;
    }
    .factory-carousel .col-lg-3 {
        margin-bottom: 10px;
    }
    .factory-carousel p {
        margin-top: 10px !important
    }
    .swiper5-btn {
        bottom: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 1;
        padding: 0 10px;
    }
    .swiper6 .swiper-slide {
        width: 80vw
    }
    .swiper6 {
        margin-top: 20px;
    }
    .swiper6-btn {
        width: 100%
    }
    .swiper-btn div {
        width: 40px;
        height: 40px;
    }
    .swiper-btn i {
        font-size: 20px;
    }
    .hero-section .fs60 {
        font-size: 20px;
    }
}

.phi-circle-box .phi-circle:not(:first-child) {
    display: none;
}
.page-rd {
    padding: 0
}
.page-rd .container {
    height: 533px;
    display: flex;
    align-items: center;
}
.rd-img {
    position: absolute;
    right: 0;
    top: 0;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 1000px) {
    .rd-img {
        opacity: 0
    }
    .page-rd {
        padding: 5vw 0
    }
    .page-rd .container {
        height: auto;
    }
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    .product-content.btm ul li {
        line-height: 20px;
    }
    .product-content.btm .btn-primary {
        line-height: 40px;
    }
}

.nav-drop {
    transition: all 0.3s
}
.navbar-collapse .nav-link {
    position: relative;
    line-height: 125px;
}
.navbar-collapse .nav-link:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    bottom: 0;
    display: none;
}
.navbar.fixed .nav-link,
.navbar.on .nav-link {
    height: 80px;
    line-height: 80px;
    padding-bottom: 0
}
.nav-drop {
    position: absolute;
    width: 230px;
    top: 100%;
    display: none;
}
.navbar.fixed .nav-drop.drop-pro,
.navbar.on .nav-drop.drop-pro {
    top: 80px;
}
.nav-drop.drop-pro {
    position: fixed;
    top: 130px;
    left: 0;
    width: 100vw;
    padding-top: 0;
    line-height: 1;
}
.nav-drop.drop-pro .drop-box {
    grid-gap: 10vw;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 174px;
    box-shadow: 0 11px 11px rgba(0, 0, 0, 0.33);
}
.nav-drop ul {
    box-shadow: 0 11px 11px rgba(0, 0, 0, 0.33);
    background: #fff;
    padding: 25px;
    line-height: 45px;
}
.nav-drop ul a {
    color: #333;
    font-size: 18px;
    display: block;
    position: relative;
}
.nav-drop ul a:before,
.nav-drop ul a:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e1e1e1
}
.nav-drop ul a:before {
    width: 0;
    background: #0061a9;
    z-index: 1;
    transition: all 0.3s
}
.nav-drop ul li:last-child a:after {
    display: none;
}
.nav-drop ul li:hover a:before {
    width: 100%;
}
.nav-drop ul li:hover a {
    font-weight: bold;
    color: #0061a9
}
.nav-link:hover .nav-drop,
.nav-link:hover:after,
.nav-item:hover .nav-drop,
.nav-item:hover .nav-link:after {
    display: block;
}
.drop-pro .box {
    display: flex;
    align-items: center;
}
.drop-pro .box i {
    font-size: 70px;
    color: #ccc;
    margin-right: 20px;
}
.drop-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    color: #0061a9;
    font-weight: bold;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
    grid-gap: 20px;
    align-items: center;
}
.drop-box h3:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #0061a9;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}
.drop-box p {
    color: #000;
    margin: 0;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1;
    font-weight: bold;
}
.nav-drop.drop-pro li a:after,
.nav-drop.drop-pro a:before {
    display: none
}
.nav-drop.drop-pro li:hover p {
    color: #07c5f2
}
.nav-link .nav-drop:not(.drop-pro) {
    left: 50%;
    transform: translateX(-50%)
}
.navbar-nav .nav-drop:not(.drop-pro) {
    width: auto;
    min-width: 150px;
}
.navbar-nav:last-child .nav-drop ul {
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px
}
.navbar-nav .nav-drop ul li {
    color: #333 !important;
    white-space: nowrap
}
.nav-drop.drop-pro .drop-box.search-box {
    color: #000;
    min-height: initial;
    grid-gap: 10px;
}
.search-box .input {
    width: 50vw;
    height: 40px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #f9f9f9
}
.search-box .input input {
    width: 100%;
    border: 0;
    background: none;
}
.search-box .s-btn {
    width: 40px;
    height: 40px;
    background: #0061a9;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.navbar.on:after {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 8);
    backdrop-filter: blur(10px);
    z-index: -1
}

@media only screen and (max-width: 750px) {
    .navbar-collapse {
        height: calc(100vh - 61px);
        overflow-y: auto;
        padding-bottom: 30px;
    }
    .nav-drop {
        position: initial;
    }
    .nav-drop ul {
        padding: 10px;
        background: rgba(0, 0, 0, 0.3)
    }
    .nav-drop ul a:after {
        background: rgba(255, 255, 255, 0.2)
    }
    .navbar-collapse .nav-link:after {
        display: none !important;
    }
    .nav-drop ul a {
        color: #fff
    }
    .navbar.fixed .nav-link,
    .navbar.on .nav-link {
        line-height: 40px;
        height: 40px;
    }
    .drop-box li:not(:last-child) {
        margin-bottom: 15px;
    }
    .nav-drop.drop-pro .drop-box {
        box-shadow: none;
        display: block;
    }
    .nav-item .nav-drop.drop-pro {
        position: initial !important;
        height: auto !important;
        width: 100% !important;
        background: none !important;
        margin-top: 10px;
    }
    .drop-box h3 {
        font-size: 20px;
    }
    .nav-item .nav-drop .drop-box,
    .nav-drop ul {
        background: rgba(255, 255, 255, 0.08);
        min-height: initial;
    }
    .drop-pro .box i {
        font-size: 40px;
        color: #fff;
    }
    .drop-box p {
        color: #fff;
        font-size: 14px;
        margin-top: 5px;
    }

    .navbar-nav:last-child .nav-drop {
        position: absolute;
        top: auto;
        left: 0;
        transform: none;
        width: 100%;
    }
    .navbar-nav:last-child .nav-drop ul,
    .navbar-nav:last-child .nav-drop.drop-pro .drop-box {
        background: rgba(255, 255, 255, 0.08)
    }
    .navbar-nav:last-child .nav-link {
        position: initial;
    }
    .navbar.fixed .nav-drop.drop-pro,
    .navbar.on .nav-drop.drop-pro {
        top: auto;
    }
    .search-box .input {
        width: 100%;
        margin: 10px 0
    }
    .nav-drop.drop-pro .drop-box.search-box,
    .navbar-nav .nav-drop ul li {
        color: #fff !important
    }

    .page-bg8 .d-flex {
        display: block !important;
    }
}

.swiper4-btn {
    display: flex;
    justify-content: center;
    grid-gap: 20px;
    margin-top: 20px;
}
.rd-list-swiper .swiper-container:not(:first-child),
.factory-carousel .swiper-container:not(:first-child) {
    display: none;
}
.hideh1 {
    font-size: 0;
}
.hideh1 h1 {
    font-size: 0;

    margin: 0;
}

.breadcrumb-item+.breadcrumb-item {
    color: #777 !important;
}
.breadcrumb-item+.breadcrumb-item a {
    color: #777 !important;
}

.feedbackform form ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.feedbackform form ul li {
    margin-top: 30px;
}
@media (max-width: 767px) {
    .feedbackform form ul li {
        margin-top: 20px;
    }
}
.feedbackform form .field {
    position: relative;
}
.feedbackform form .input-label {
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 10px 20px;

    cursor: text;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .18s;
    transition-duration: .18s;
    -webkit-transition-property: top, font-size;
    transition-property: top, font-size;

    color: #666;
}
@media (max-width: 991px) {
    .feedbackform form .input-label {
        font-size: 14px;
        line-height: 24px;

        padding: 10px 20px;
    }
}
.feedbackform form .input-field {
    font-size: 16px;
    line-height: 30px;

    width: 100%;
    padding: 10px 20px;

    -webkit-transition: border .28s ease-out;
    transition: border .28s ease-out;

    border: 1px solid rgba(138, 138, 138, .27);
    background: transparent;
    background-color: #fff;
}
@media (max-width: 991px) {
    .feedbackform form .input-field {
        font-size: 14px;
        line-height: 24px;

        padding: 10px 20px;
    }
}
.feedbackform form .input-field:required+.input-label:after {
    content: '*';

    color: red;
}
.feedbackform form .input-field:focus+.input-label,
.feedbackform form .input-field:not(:placeholder-shown)+.input-label {
    font-size: 14px;

    top: -36px;

    color: #999;
}
@media (max-width: 991px) {
    .feedbackform form .input-field:focus+.input-label,
    .feedbackform form .input-field:not(:placeholder-shown)+.input-label {
        font-size: 12px;

        top: -30px;
    }
}
.feedbackform form .input:hover .input-field:placeholder-shown:not(:focus) {
    border-color: #666;
}

.feedbackform form .submit {
    font-size: 16px;
    line-height: 44px;

    height: 50px;
    margin-top: 30px;
    padding: 0 40px;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    background-color: #13b2e6;
}
@media (max-width: 991px) {
    .feedbackform form .submit {
        font-size: 16px;
        line-height: 40px;

        height: 40px;
        margin-top: 30px;
    }
}
.feedbackform form .submit:hover {
    background-color: #0067be;
}
.feedbackform form .submit-field p {
    margin-top: 30px;
    margin-bottom: 0;
    color: #ffffff;
}
.hs-google-map {
    height: 600px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .hs-google-map {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .hs-google-map {
        height: 400px;
    }
}
.hs-google-map #map {
    height: 100%;
}
.hs-inner-contact {
    position: relative;
    z-index: 4;
}
.hs-inner-contact .contact {
    background: url(../img/contact_bg.webp) no-repeat center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
}

.hs-inner-contact .contact .contact-text {
    background: rgba(0, 97, 169, 0.9);
    width: 50%;
    color: #ffffff;
}
.hs-inner-contact .contact .contact-text .txt-group {
    display: flex;
    margin: 20px 0;
}
.hs-inner-contact .contact .contact-text .txt-group .icon {
    flex-shrink: 0;
    width: 40px;
}
.hs-inner-contact .contact .contact-text .txt-group .icon .flaticon {
    font-size: 24px;
}
.hs-inner-contact .contact .contact-text .txt-group .txt {
    width: calc(100% - 40px);
}
.hs-inner-contact .contact .contact-text .txt-group .txt b {
    font-size: 16px;
}
.hs-inner-contact .contact .contact-text .txt-group .txt p {
    font-size: 18px;
    line-height: 1.8;
}
.hs-inner-contact .contact .contact-text .txt-group .txt p a {
    color: inherit;
}
.hs-inner-contact .contact .contact-text .txt-group .txt p a:hover {
    text-decoration: underline;
}
.hs-inner-contact .contact .feedbackform {
    width: 50%;
    background-color: #1076c1;
}
.hs-inner-contact .contact .contact-text,
.hs-inner-contact .contact .feedbackform {
    padding: 60px;
}
.feedbackform .title-home h2 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-contact .contact .contact-text,
    .hs-inner-contact .contact .feedbackform {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .hs-inner-contact .contact .contact-text,
    .hs-inner-contact .contact .feedbackform {
        width: 100%;
        padding: 30px 15px;
    }
}

.public-faqs {
    position: relative;
    z-index: 6;
}
.public-faqs ul>li {
    margin-top: 26px;
}
.public-faqs .faqs-group {
    cursor: pointer;

    background: #fff;
}
.public-faqs .faqs-group .title-faqs {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    line-height: 1.33333333;

    position: relative;
    border-bottom: 1px solid #b2b2b2;
    padding: 20px 40px 20px 0;
    font-weight: bold;
}
@media (max-width: 767px) {
    .public-faqs .faqs-group .title-faqs {
        font-size: 16px;
    }
}
.public-faqs .faqs-group .title-faqs .flaticon {
    line-height: 30px;

    position: absolute;
    top: 20px;
    right: 10px;

    width: 30px;
    height: 30px;

    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    text-align: center;
    font-size: 12px;
    color: #828282;
}
.public-faqs .faqs-group .faqs-ques {
    /* display: none; */
    padding-top: 20px;
}
.public-faqs .faqs-group .faqs-ques p {
    color: #666;
    margin: 0;
}
.public-faqs .current .faqs-group .title-faqs {
    border-bottom-color: #0061a9;
    color: #0061a9;
}
.public-faqs .current .faqs-group .title-faqs .flaticon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #0061a9;
}
.hs-inner-faqs {
    padding-bottom: 50px;
    align-items: center;
}

.hs-inner-jobs .jobs .jobs-txt {
    width: 55%;
}

.hs-inner-jobs .jobs .img {
    width: 45%;
    padding-left: 5%;
}
.hs-inner-jobs .jobs .jobs-txt .icon {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .hs-inner-jobs .jobs .jobs-txt {
        width: 100%;
    }
    .hs-inner-jobs .jobs .img {
        width: 100%;
    }
}
.hs-inner-faqs-openings {
    padding-top: 80px;
}

.faqs-openings .faqs-group {
    background: #F9F9F9;
    padding: 0 40px;
    transition: all .2s;
    box-shadow: 0px 15px 16px 0px rgba(200, 200, 200, 0.33);
}
.faqs-openings .faqs-group .title-faqs {
    border-bottom-color: #F9F9F9;
}
.faqs-openings .faqs-group .faqs-ques {
    padding: 30px 0px 60px 0;
}
.faqs-openings .current .faqs-group {
    background: #0061A9;
    box-shadow: 0px 15px 16px 0px rgba(0, 97, 169, 0.33);
}
.faqs-openings .current .faqs-group .title-faqs {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}
.faqs-openings .current .faqs-group .title-faqs .flaticon {
    color: #ffffff;
}
.faqs-openings .current .faqs-group .faqs-ques p {
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
    .faqs-openings .faqs-group {
        padding: 0 15px;
    }
    .faqs-openings .faqs-group .faqs-ques {
        padding: 30px 0px;
    }
}
@media only screen and (max-width: 750px) {
    .hero-section2 {
        background-size: cover !important;
    }
}
@media (max-width: 1440px) {
    .container {
        padding-left: 45px;
        padding-right: 45px;
    }
}
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.customer-service {
    position: fixed;
    z-index: 9;
    top: 50%;
    right: 0;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .customer-service {
        display: none;
    }
}
.customer-service ul li {
    margin: 2px 0;
}
.customer-service a {
    position: relative;

    display: block;

    color: #fff;
    border-radius: 6px;
}
.customer-service a .flaticon {
    font-size: 24px;
    line-height: 50px;

    position: relative;
    z-index: 3;

    display: block;

    width: 50px;
    height: 50px;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;

    border-radius: 6px;
    background-color: rgba(0, 0, 0, .6);
}
@media (max-width: 1470px) {
    .customer-service a .flaticon {
        line-height: 50px;

        width: 50px;
        height: 50px;
    }
}
.customer-service a .flaticon img {
    width: 30px;
    margin: 0 auto;

    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.customer-service a p {
    font-size: 16px;
    line-height: 30px;

    position: absolute;
    top: 0;
    right: 50px;

    margin: 0;
    padding: 10px;

    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(180%);
    -ms-transform: translateX(180%);
    transform: translateX(180%);
    white-space: nowrap;

    border-radius: 6px;
    background-color: #1076c1;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.customer-service a p img {
    width: 120px;
}
.customer-service a:hover .flaticon {
    color: #fff;
    background-color: #1076c1;
}
.customer-service a:hover p {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.customer-service .service-wechat p {
    background-color: #1076c1;
}
.customer-service .service-top .flaticon:before {
    display: block;

    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.xs-customer-service {
    position: fixed;
    z-index: 9;
    bottom: 0;

    width: 100%;

    text-align: center;

    color: #fff;
    background-color: #1076c1;
}
.xs-customer-service ul {
    font-size: 0;
}
.xs-customer-service ul li {
    display: inline-block;

    width: 33.33333333%;

    vertical-align: top;
}
.xs-customer-service a {
    display: block;

    padding: 7px;
}
.xs-customer-service a .flaticon {
    font-size: 24px;
    line-height: 1;

    display: block;
}
.xs-customer-service a span {
    font-size: 12px;
    line-height: 1.5;

    display: block;
}

.index_pro li a {
    color: #fff;
}
.index_pro li a:hover {
    text-decoration: underline;
}

.rd-other-1>ul {
    margin: 0 -10px;
}
.rd-other-1>ul>li {
    margin-top: 20px;
    padding: 0 10px;
}
.rd-other-1 .rd-other-1-group {
    display: block;
    text-align: center;
}
.rd-other-1 .rd-other-1-group .img {
    overflow: hidden;
}
.rd-other-1 .rd-other-1-group .img img {
    width: 100%;
    transition: all 1s;
}
.rd-other-1 .rd-other-1-group .title-rd {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 10px;
    color: #0061a9;
}
@media (max-width: 1199px) {
    .rd-other-1 .rd-other-1-group .title-rd {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .rd-other-1 .rd-other-1-group .title-rd {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .rd-other-1 .rd-other-1-group .title-rd {
        font-size: 16px;
        line-height: 1.2;
    }
}
.rd-other-1 .rd-other-1-group:hover .img img {
    transform: scale(1.1);
}
.rd-other-2 .rd-other-txt h3,
.rd-other-3 .rd-other-txt h3 {
    font-size: 20px;
    font-weight: bold;
}
.rd-other-2 .rd-other-txt p,
.rd-other-3 .rd-other-txt p {
    margin: 0;
}
@media (max-width: 767px) {
    .rd-other-2 .rd-other-txt,
    .rd-other-3 .rd-other-txt {
        margin: 20px 0;
    }
}
.rd-page-4 {
    background-color: #f7fcff;
    padding: 80px 0;
}
.rd-page-4 .desc {
    padding-right: 3%;
}
.rd-page-4 .desc p {
    margin: 0;
}
.rd-page-4 .more {
    margin-top: 20px;
}
.rd-page-4 .more a {
    display: inline-block;
    background-color: #0061a9;
    padding: 15px 30px;
    color: #ffffff;
}
.rd-page-4 .more a:hover {
    text-decoration: underline;
}
.rd-page-4 img {
    width: 100%;
}
@media (max-width: 767px) {
    .rd-page-4 .img {
        margin-top: 30px;
    }
}

.index_raw p a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.index_raw p a:hover {
    text-decoration: underline;
}
.hs-inner-rd-show .rd-show {
    margin-top: 40px;
}
.hs-inner-rd-show .rd-show ul li {
    margin-top: 30px;
}
.hs-inner-rd-show .rd-show .rd-show-group img {
    width: 100%;
}
.hs-inner-hse-part1 {
    padding-bottom: 60px;
    overflow: hidden;
}
.hs-inner-hse-part1 .hse-part1 {
    margin-top: 40px;
}
.hs-inner-hse-part1 .hse-part1 .txt p {
    font-size: 30px;
    color: var(--primary);
}
@media (max-width: 991px) {
    .hs-inner-hse-part1 .hse-part1 .txt p {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part1 .hse-part1 .txt p {
        font-size: 20px;
    }
}
.hs-inner-hse-part3 .hse-part3-menu {
    background: #F7FFF6;
}
.hs-inner-hse-part3 .hse-part3-menu ul {
    display: flex;
}
.hs-inner-hse-part3 .hse-part3-menu ul li {
    width: 33.333333%;
    border-right: 1px solid #000000;
}
.hs-inner-hse-part3 .hse-part3-menu ul li:last-child {
    border: none;
}
.hs-inner-hse-part3 .hse-part3-menu .hse-part3-group {
    text-align: center;
    padding: 60px 20%;
    height: 100%;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}
@media (max-width: 1400px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group {
        padding: 40px 10%;
    }
}
@media (max-width: 1199px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group {
        padding: 30px 15px;
    }
}
.hs-inner-hse-part3 .hse-part3-menu .hse-part3-group:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 10px 0 10px;
    border-color: #159700 transparent transparent transparent;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .2s;
}
.hs-inner-hse-part3 .hse-part3-menu .hse-part3-group .icon {
    width: 64px;
    margin: 0 auto;
}
.hs-inner-hse-part3 .hse-part3-menu .hse-part3-group .icon img {
    width: 100%;
}
.hs-inner-hse-part3 .hse-part3-menu .hse-part3-group h3 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group h3 {
        font-size: 24px;
        margin-top: 20px;
    }
}
@media (max-width: 991px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group h3 {
        font-size: 20px;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part3 .hse-part3-menu .hse-part3-group h3 {
        font-size: 16px;
    }
}
.hs-inner-hse-part3 .hse-part3-menu .active .hse-part3-group {
    background-color: #159700;
    color: #ffffff;
}
.hs-inner-hse-part3 .hse-part3-menu .active .hse-part3-group .icon img {
    filter: brightness(0) invert(1);
}
.hs-inner-hse-part3 .hse-part3-menu .active .hse-part3-group:after {
    opacity: 1;
}
.hs-inner-hse-part3 .hse-part3-desc {
    padding: 140px 0;
    color: #ffffff;
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part3 .hse-part3-desc {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .hs-inner-hse-part3 .hse-part3-desc {
        padding: 80px 0;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part3 .hse-part3-desc {
        padding: 60px 0;
    }
}
@media (min-width: 1200px) {
    .hs-inner-hse-part3 .hse-part3-desc {
        background-attachment: fixed;
    }
}
.hs-inner-hse-part3 .hse-part3-desc h3 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: bold;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part3 .hse-part3-desc h3 {
        font-size: 30px;
    }
}
@media (max-width: 991px) {
    .hs-inner-hse-part3 .hse-part3-desc h3 {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part3 .hse-part3-desc h3 {
        font-size: 20px;
    }
}
.hs-inner-hse-part3 .hse-part3-desc p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part3 .hse-part3-desc p {
        font-size: 16px;
        line-height: 24px;
    }
}

.hs-inner-hse-part4 .hse-part4-top {
    border-bottom: 1px solid #C4C4C4;
    padding: 70px 0;
}
.hs-inner-hse-part4 .hse-part4-top .text {
    padding-left: 5%;
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4-top .text {
        padding-left: 0;
    }
}
.hs-inner-hse-part4 .hse-part4-top .text p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4-top .text p {
        font-size: 16px;
        line-height: 24px;
    }
}
.hs-inner-hse-part4 .hse-part4 {
    padding: 50px 0;
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group {
    border-bottom: 1px solid #C4C4C4;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group {
        padding: 30px 0;
    }
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left {
    width: 250px;
    height: 250px;
    border: 1px solid var(--primary);
    padding: 14px;
    border-radius: 50%;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left {
        width: 200px;
        height: 200px;
        padding: 10px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left {
        margin: 0 auto;
    }
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left .txt {
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}
.hs-inner-hse-part4 .hse-part4>ul>li:nth-child(2n) .hse-part4-group .group-left {
    border-color: #159700;
}
.hs-inner-hse-part4 .hse-part4>ul>li:nth-child(2n) .hse-part4-group .group-left .txt {
    background-color: #159700;
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left .txt .num {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left .txt h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left .txt h3 {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-left .txt h3 {
        font-size: 20px;
    }
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right {
    width: calc(100% - 250px);
    padding-left: 5%;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right {
        width: calc(100% - 200px);
        padding-left: 3%;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right {
        width: 100%;
        margin-top: 20px;
    }
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .title-hse-part4 h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: #159700;
}
.hs-inner-hse-part4 .hse-part4>ul>li:nth-child(2n) .hse-part4-group .group-right .title-hse-part4 h4 {
    color: var(--primary);
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .title-hse-part4 p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .title-hse-part4 p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .title-hse-part4 p {
        line-height: 24px;
    }
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .desc ul li {
    padding-left: 20px;
    position: relative;
    margin-top: 30px;
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .desc ul li:before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background: #67A505;
    position: absolute;
    left: 0px;
    top: 10px;
}
.hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .desc p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .desc p {
        font-size: 16px;
    }
}

.hs-inner-hse-part4 .hse-part4-txt p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part4 .hse-part4-txt p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4 .hse-part4-group .group-right .desc p {
        line-height: 24px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part4 .hse-part4-txt p {
        line-height: 24px;
    }
}
.hs-inner-hse-part5 {
    padding-top: 60px;
}
.hs-inner-hse-part5 .hse-part5-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;

}
@media (max-width: 1560px) {
    .hs-inner-hse-part5 .hse-part5-top {
        padding: 120px 0;
    }
}
@media (max-width: 1199px) {
    .hs-inner-hse-part5 .hse-part5-top {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .hs-inner-hse-part5 .hse-part5-top {
        padding: 80px 0;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part5 .hse-part5-top {
        padding: 50px 0;
    }
}
.hs-inner-hse-part5 .hse-part5-top h2 {
    color: #ffffff;
}
.hs-inner-hse-part5 .hse-part5 {
    position: relative;
    z-index: 6;
}
.hs-inner-hse-part5 .hse-part5>ul>li {
    margin-top: 40px;
}
.hs-inner-hse-part5 .hse-part5>ul>li:nth-child(1) {
    margin-top: -30px;
}
.hs-inner-hse-part5 .hse-part5>ul>li:nth-child(2n) .hse-part5-group {
    background-color: #159700;
}
.hs-inner-hse-part5 .hse-part5>ul>li:nth-child(2n) .hse-part5-group .title-hse-part5 p {
    color: #ffffff;
}
.hs-inner-hse-part5 .hse-part5 .hse-part5-group {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part5 .hse-part5 .hse-part5-group {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part5 .hse-part5 .hse-part5-group {
        padding: 30px 15px;
    }
}
.hs-inner-hse-part5 .hse-part5 .hse-part5-group .title-hse-part5 h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .hs-inner-hse-part5 .hse-part5 .hse-part5-group .title-hse-part5 h3 {
        font-size: 24px;
    }
}
.hs-inner-hse-part5 .hse-part5 .hse-part5-group .title-hse-part5 p {
    font-size: 18px;
    line-height: 1.6;
    color: #07C5F2;
    font-weight: bold;
}
.hs-inner-hse-part5 .hse-part5 .hse-part5-group .desc p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part5 .hse-part5 .hse-part5-group .desc p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part5 .hse-part5 .hse-part5-group .desc p {
        line-height: 24px;
    }
}
.hs-inner-hse-part6 {
    padding: 80px 0;
}
@media (max-width: 1560px) {
    .hs-inner-hse-part6 {
        padding: 60px 0;
    }
}
.hs-inner-hse-part6 .hse-part6 .swiper-slide {
    width: auto;
}
.hs-inner-hse-part6 .hse-part6 .img img {
    height: 360px;
}
@media (max-width: 1560px) {
    .hs-inner-hse-part6 .hse-part6 .img img {
        height: 300px;
    }
}
@media (max-width: 1199px) {
    .hs-inner-hse-part6 .hse-part6 .img img {
        height: 240px;
    }
}
.swiper-hse-part6 .swiper-pagination {
    text-align: left;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 30px;
}
.swiper-hse-part6 .swiper-pagination-bullet {
    background: #0061a9;
    opacity: 0.3;
    width: 11px;
    height: 11px;
}
.swiper-hse-part6 .swiper-pagination-bullet-active {
    width: 21px;
    height: 21px;
    opacity: 1
}
.hs-inner-hse-part2 .swiper-hse-part2 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group {
    background-size: cover;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    padding: 10vh 0;
}
@media (max-width: 991px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group,
    .hs-inner-hse-part2 .swiper-hse-part2 {
        height: 70vh;
    }
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group {
        padding: 5vh 0;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group,
    .hs-inner-hse-part2 .swiper-hse-part2 {
        height: 150vh;
    }
}
@media (max-width: 767px) {}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left {
    width: calc(100% - 170px);
}
@media (max-width: 767px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left {
        width: 100%;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 .num {
    font-size: 388px;
    opacity: .15;
    font-weight: bold;
    line-height: 1;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 .num {
        font-size: 258px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 .num {
        font-size: 158px;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 {
    position: relative;
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .title-hse-part2 h3 img {
    width: 60px;
    flex-shrink: 0;
    margin-right: 20px;
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc {
    position: relative;
    z-index: 6;
    margin-top: -100px;
    padding-left: 10px;
}
@media (max-width: 991px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc {
        margin-top: -30px;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc h3 {
    font-size: 30px;
    font-weight: bold;
}
@media (max-width: 1560px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc h3 {
        font-size: 24px;
    }
}
@media (max-width: 1199px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc h3 {
        font-size: 20px;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-left .desc p {
        line-height: 24px;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-right {
    width: 170px;
}
@media (max-width: 767px) {
    .hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-right {
        margin: 0 auto;
    }
}
.hs-inner-hse-part2 .swiper-hse-part2 .hse-part2-group .group-right img {
    width: 100%;
}
.hse-part2-button {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
@media (max-width: 767px) {
    .hse-part2-button {
        top: auto;
        transform: translateY(0);
        bottom: 19%;
        right: -50px;
    }
}
.hse-part2-button .container {
    position: relative;
}
.hs-inner-hse-part2 .swiper-hse-part2 .swiper-pagination {
    width: 14px;
    height: auto;
    right: 90px;
    top: 50%;
    opacity: 1;
}

.hs-inner-hse-part2 .swiper-hse-part2 .swiper-pagination span {
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    width: 14px;
    height: 14px;
    background: none;
    opacity: 1;
    margin: 10px 0;
}
.hs-inner-hse-part2 .swiper-hse-part2 .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}
.navbar-dark .navbar-toggler-icon {
    filter: brightness(0) invert(0);
}