/*common start*/
/* ::-webkit-scrollbar{
    display: none;
} */
@font-face {
    font-family: 'MiSans-Bold';
    src: url('../fonts/MiSans-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Misan-Medium';
    src: url('../fonts/MISANS-MEDIUM.TTF') format('truetype');
}

@font-face {
    font-family: 'Misan-Regular';
    src: url('../fonts/MISANS-REGULAR.TTF') format('truetype');
}

@font-face {
    font-family: 'MiSans-Light';
    src: url('../fonts/MiSans-Light.ttf') format('truetype');
}
/* Back to Top button */
.backTop {
    position: fixed;
    right: 100px;
    bottom: 100px;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background-color: #0094dc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.backTop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #fff;
    /* white upward triangle */
}

.backTop.backTop--visible {
    opacity: 1;
    pointer-events: auto;
}

html,
body {
    margin: 0;
    padding: 0;
    font-size: 0.83328vw;
    color: #000;
    text-transform: capitalize;
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    border-color: #000 !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
}

.line-clamp {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.line-clamp-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.bg-f5 {
    background: #f5f5f5;
}

.container {
    max-width: 75.591%;
    /* max-width: 1440px; */
    padding: 0;
    width: 85%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

a {
    text-decoration: none;
    color: #000;
}

button {
    outline: none !important;
}

button:focus {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    border: none !important
}

.lighter {
    font-weight: lighter;
}

.base_bg {
    background: #e9f3ff;
}

/*固定图片比例*/
.fixed-ratio {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*默认3:2*/
.fixed-ratio::before {
    content: "\0020";
    display: block;
    width: 100%;
    height: 0;
    padding: 33.33% 0;
}

/*比例4:2.5*/
.fixed-ratio.rectangle::before {
    content: "\0020";
    display: block;
    width: 100%;
    height: 0;
    padding: 31.25% 0;
}

/*比列1:2*/
.fixed-ratio.halfv::before {
    padding: 75% 0;
}

/*比列2:1*/
.fixed-ratio.half::before {
    padding: 25% 0;
}

/*比列1:1*/
.fixed-ratio.square::before {
    padding: 50% 0;
}

/*比列3:4*/
.fixed-ratio.frectangle::before {
    padding: 66.66% 0;
}

.fixed-ratio>img,
.fixed-ratio>div {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.fixed-ratio>img,
.fixed-ratio>img {
    object-fit: cover;
}

/*common end*/

header {
    background: white;
    position: fixed;
    width: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
}

.navbar {
    background: #fff;
    position: relative;
    padding: 0;
}

.header-inner {
    width: 85%;
    margin: 0 auto;
    gap: 2rem;
    padding:0;
}

.logo img {
    max-height: 2.625rem;
    display: block;
}

.navbar-collapse {
    align-items: center;
}

.primary-nav {
    gap: 5rem;
}

.navbar-nav .nav-link {
    font-size: 1.125rem;
    color: #000;
    padding: 2rem 0;
    position: relative;
    cursor: pointer;
}

.navbar-nav .nav-link.active {
    color: #0094dc;
}

.navbar-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #0094dc;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bars {
    display: inline-block;
    width: 24px;
    height: 18px;
    position: relative;
}

.toggler-bars i {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.toggler-bars i:nth-child(1) {
    top: 0;
}

.toggler-bars i:nth-child(2) {
    top: 8px;
}

.toggler-bars i:nth-child(3) {
    top: 16px;
}

.navbar-toggler[aria-expanded="true"] .toggler-bars i:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bars i:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bars i:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.lang-switch {
    margin-left: auto;
}

.lang-btn {
    gap: .375rem;
    border: none;
    background: transparent;
}

.lang-btn.dropdown-toggle::after {
    display: none;
}

.lang-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #000;
}

.has-mega {
    position: static;
}

.has-mega .mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #eaf4ff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-2rem);
    transition: all .2s ease;
    pointer-events: none;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.has-mega.mega-open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
}

.mega-inner {
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.mega-inner .mega-left {
    grid-column: span 4;
}

.mega-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}

.mega-sub {
    margin-top: .25rem;
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
}

.mega-inner .mega-links {
    grid-column: span 8
}

.mega-inner .mega-links li {
    grid-column: span 4
}

.mega-links li .send_menu {
    position: relative;
    font-size: 1.25rem;
    color: #000;
    padding-left: 2.5rem;
    text-transform: capitalize;
}
.mega-links li .three_menu a{
    text-transform: capitalize;
}
.mega-links li .send_menu:hover,
.mega-links li .three_menu a:hover {
    color: #0094dc;
}

.mega-links li .send_menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid #cee4ff;
}

.mega-links li .send_menu::after {
    content: "";
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: url(../images/icon_right_arrow.png) no-repeat center center / cover;
    left: 0.25rem;
    top: 0.4rem;
    z-index: 2;
}

.mega-links li .send_menu span {
    font-size: 0.75rem;
    color: #666;
    font-weight: normal;
}

.mega-links li .three_menu {
    padding-left: 2.5rem;
    border-top: 1px solid #cee4ff;
}

header .dropdown-menu {
    border: none;
}
.lang-switch .lang-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.lang-switch .lang-menu .dropdown-item{
    padding: 0.75rem 1rem;
}
/*header end*/

/*pagination begin*/
.pagination a{
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
}
.pagination .page-item:hover a,.pagination .page-item.active a{
    background: #0094dc;
    color: white;
    border-color: #0094dc;
}
.pagination .page-icon{
    width: 0.75rem;
}
.pagination .prev .page-icon{
    transform: rotate(180deg);
}
/*pagination end*/

/*footer*/
footer {
    background: #0094dc;
}
.site-footer { color:#fff; }
.footer-col-left{ grid-column: span 8; }
.footer-col{
     grid-column: span 4;
}
.footer-inner .icon{
    width: 1.25rem;
}
.footer-inner .text{
    flex: 1;
    width: 0;
    text-transform: none;
}
.footer-inner .text b{
    font-size: 1.25rem;
    font-weight: normal;
}
.footer-list{
    width: 46%;
}
.footer_adress{
    width: 100%;
}
.footer_adress .item{
    width: 100%;
}
.footer-legal{
    border-top: 1px solid #38b2ee;
    font-size: 0.875rem;
    color: #60c8fb;
}
.footer-legal a{
    color: #60c8fb;
}
.footer-col .pic{
    width: 8rem;
}
.footer-col .qr-caption{
    font-size: 0.875rem;
    padding: 0.25rem 0;
}
.friendship{
    color: #60c8fb;
    font-size: 0.875rem;
}
.friendship a{
    color: white;
}
.friendship a:hover{
    color: #60c8fb;
}
/*footer end*/

/*breadcrumb begin*/
.breadcrumb {
    margin: 0;
    /* border-bottom: 1px solid #cbd7e9; */
}
.breadcrumb ul,.breadcrumb li{
    list-style: none;
    margin: 0;
    padding: 0;  
}
.breadcrumb li {
    font-size: 0.75rem;
    display: flex;
    text-transform: capitalize;
    color: #666;
}
.breadcrumb li a{
    color: #666;
}

.breadcrumb li+li::before{content:">";display:inline-block;margin:0 .5rem;color:#888}

.breadcrumb .nav a{
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 4rem;
}
.breadcrumb .nav a:hover{
    background: #e9f3ff;
}
.breadcrumb .nav a.active{
    color: white;
    background: #0094dc;
}
.back_list_btn{
    font-size: 0.875rem !important;
    border: 1px solid #ddd;
}
/*breadcrumb end*/


/*base_title begin*/
.base_title .title{
    font-size: 2.625rem;
    font-weight: normal;
}
.base_title .title span{
    font-size: 1rem;
    text-transform: uppercase;
}
.base_title .title i{
    display: block;
    width: 2rem;
    height: 2px;
    background: #000;
    margin-top: 0.5rem;
}
.base_title .title.text-white i{
    background: white;
}
.base_title .more{
    border-radius: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    color: white;
    transition: all .2s ease;
}
.base_title .more .icon{
    width: 1rem;
    background: url(../images/icon_right_arrow_white.png) no-repeat center center / cover;
}
.base_title .more:hover{
    background: #e9f3ff;
    border-color: #e9f3ff;
    color: #000;
}
.base_title .more:hover .icon{
    background: url(../images/icon_right_arrow_black.png) no-repeat center center / cover;
}
.base_title .more.text-black{
    border-color: #dddddd;
}
.base_title .more.text-black .icon{
    background: url(../images/icon_right_arrow_black.png) no-repeat center center / cover;
}
.base_title .more.text-black:hover{
    background: #0094dc;
    border-color: #0094dc;
    color: white !important;
}
.base_title .more.text-black:hover .icon{
    background: url(../images/icon_right_arrow_white.png) no-repeat center center / cover;
}
.base_title .search{
    background: white;
    border-radius: 4rem;
    padding: 0.5rem 1.25rem;
    width: 30rem;
}
.base_title .search .icon{
    width: 1.25rem;
}
.base_title .search form{ 
    flex: 1 1 0;
}
.base_title .search input{
    border: none;
    outline: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    width: 100%;
}
.base_title .search input:focus {
    outline: none;
    border: none;
}
.base_title .search .btn{
    background: #e9f3ff;
    display:inline-block;
    word-break: keep-all;
    border-radius: 3rem;
    font-size: 0.875rem;
}
.base_title .search .btn:hover{
    background: #0094dc;
    color: white;
}
.base_title .sub-title{
    width: 100%;
    color: #666;
    font-size: 1.25rem;
    margin: 0;
}

.base_title .detail .icon{
    width: 1rem;
}
.base_title .detail .info{
    color: #666;
}
/*base_title end*/

.base_banner {
    width: 100%;
    height: 37.5rem;
    overflow: hidden;
    position: relative;
}
.base_banner .cite {
    font-size: 1rem;
    color: white;
    position: relative;
    z-index: 9;
    margin-bottom: 2rem;
}
.base_banner .cite span{
    font-size: 1rem;
    background: #0094dc;
    border-radius: 4rem;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}
.base_banner .title {
    font-size: 3rem;
    color: white;
    text-transform: math-auto;
    position: relative;
    z-index: 9;
}
.base_banner .sub-desc{
    font-size: 1rem;
    position: relative;
    z-index: 9;
    color: white;
    margin-bottom: 3rem;
    display: block;
}
.base_banner .sub-title {
    font-size: 1.25rem;
    color: white;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
}

.base_banner .bg {
    position: absolute;
    inset: 0;
    transform: scale(1.3);
    animation: contactZoom 5s ease-out forwards
}
.parallax-bg{
    background-position: center 0;
    will-change: background-position;
}
.search_page{
    height: auto !important;
    background: #e9f3ff;
}
.search_page .search_reslut{
    font-size: 1.25rem;
    color: #666;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
}
.search_page .search_reslut span{
    color: red;
}

/*pro_full_banner begin*/
.pro_full_banner{
    height: 88vh;
}
/*pro_full_banner end*/

/*video begin*/
.video{
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}
.video video {
    width: 100%;
    height: auto;
    display: block;
}

.video .video-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/h_video_poster.jpg) no-repeat center center;
    background-size: cover;
    z-index: 9;
}

.video .video-play-btn.is-hidden {
    display: none;
}

.video .video-play-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video .video-play-btn span:first-child {
    background: url(../images/play_btn_bg.png) no-repeat center center white;
    background-size: 1rem 1rem;
    z-index: 9;
}

.video .video-play-btn span:nth-child(2) {
    width: 4.5rem;
    height: 4.5rem;
    z-index: 8;
    opacity: 0;
    will-change: transform, opacity;
    animation: rippleLoop 2s ease-out infinite;
}

.video .video-play-btn span:nth-child(3) {
    width: 6rem;
    height: 6rem;
    z-index: 7;
    opacity: 0;
    will-change: transform, opacity;
    animation: rippleLoops 2s ease-out infinite;
    animation-delay: 1s;
}

@keyframes rippleLoop {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

@keyframes rippleLoops {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
}
/*video end*/

/*patent begin*/
.about-result .item {
    grid-column: span 4;

}

.about-result {
    gap: 2rem;
    padding: 2rem 0 3rem;
}

.about-result .result-card {
    background: #eaf4ff;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
}

.about-result .number {
    align-items: flex-end;
    display: inline-flex;
    gap: .5rem;
}

.about-result .number .count {
    font-size: 4rem;
    font-weight: 800;
    color: #0091ff;
    line-height: 1;
    font-family: 'Misan-Regular';
}

.about-result .number .unit {
    font-size: 1rem;
    color: #3a3a3a;
    padding-bottom: 0.25rem;
}

.about-result .number .plus {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0091ff;
    line-height: 1;
    margin-top: -0.25rem;
    position: relative;
}

.about-result .desc {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
    color: #0b0b0b;
}

.about-result .underline {
    width: 1.5rem;
    height: 4px;
    background: #0091ff;
    border-radius: 2px;
    margin: 1rem auto 0;
}

/*patent end*/

@keyframes contactZoom {
    from {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}


/*article begin*/
.article-cont{
	padding:4rem 6.25rem;
	border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    width: 80%;
    max-width: 1000px;
}
.article-cont img{
	margin: 2rem auto;
	display: block;
	max-width: 100%;
}
.article-cont p{
	margin-bottom: 2rem;
    line-height: 2;
    font-size: 1.25rem;
}

.base-menu{
	position: relative;
    flex: 1 1 0; 
    padding-top: 4rem;
    width: 0;
}
.base-menu .inner-menu{
	position: sticky;
	top: 180px;
	z-index: 9;
    padding: 0 20%;
}
.base-menu .inner-menu a:hover{
    text-decoration: underline;
    color: #0094dc;
}
.base-menu .inner-menu .culumn_nav{
    padding-left: 1rem;
    font-size: 1.25rem;
    position: relative;
}
.base-menu .inner-menu .culumn_nav.active::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent; /* 左侧边框透明 */
    border-bottom: 4px solid transparent; /* 右侧边框透明 */
    border-left: 6px solid #0094dc; /* 底部边框为三角形颜色 */
}
.base-menu .inner-menu .culumn_title{
    font-size: 1.5rem;
    font-weight: bold;
}
.base-menu .inner-menu .article_title{
    font-size: 1rem;
    font-weight: bold;
    color: #0094dc;
}
.base-menu .inner-menu .back_list{
    color: white;
    font-size: 0.875rem;
    background: #0094dc;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}
.base-menu .inner-menu .back_list .icon{
    width: 1rem;
    transform: rotate(180deg);
}
.base-menu .inner-menu .back_list:hover{
    background: #60cbff;
    color: white;
    text-decoration: none;
}
.base-menu .inner-menu .preNext{
    font-size: 0.875rem;
    width: 100%;
}
/*article end*/

@media (max-width: 1500px) {
    .container{
        width: 85%;
        max-width: 85%;
    }
    .mega-inner {
        width: 70%;
    }
}


@media (max-width: 1200px) {

    html,
    body {
        font-size: 16px;
    }
    .container{
        width: 90%;
        max-width: 90%;
    }
    .base_banner {
        height: 30vh;
    }
    .header-inner {
        padding: 0;
        width: 90%;
    }
    .breadcrumb .nav a{
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    .navbar-collapse {
        width: 100%;
    }

    .primary-nav {
        gap: 1rem;
    }

    .mega-title {
        font-size: 1.5rem;
    }

    .mega-inner {
        padding: 2rem 4rem;
        width: 100%;
    }

    .has-mega .mega-panel {
        position: static;
        left: auto;
        right: auto;
        width: 100%;
        top: auto;
        transform: none;
        height: 0;
    }

    .has-mega .mega-inner {
        padding: 1rem 0;
    }

    .mega-inner .mega-left {
        display: none;
    }

    .mega-inner .mega-links {
        grid-column: span 12;
        padding: 1rem;
    }

    .lang-switch .lang-menu {
        display: block;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        border: none;
        border-top: 1px solid #ddd;
        padding: 1rem 0;
        margin-top: 1rem;
    }

    .base_title .title{
        font-size: 2rem;
    }
    .base_title .title span{
        font-size: 0.875rem;
    }

    .about-result .item {
        grid-column: span 12;
    }

    .about-result .result-card {
        padding: 2rem 1rem;
    }

    .about-result .number .count {
        font-size: 3rem;
    }
    .video .video-play-btn{
        background-size: cover;
    }
    .base_title .search{
        max-width: 100%;
    }
    .search_page .search{
        width: 90%;
    }
    .article-cont{
        width: 100%;
        border: none;
        padding: 2rem 6.25rem;
    }
    .base-menu{
        padding: 0;
    }
    .base-menu .inner-menu{
        width: 100%;
        position: static;
        padding: 0 6.25rem;
    }

    .pro_full_banner{
        height: 30vh;
    }
    .footer-list,.footer_adress .item{
        width: 49%;
    }
    .footer_adress{
        width: 100%;
    }

}

@media (max-width: 768px) {
    .grid-container{
        gap: 1rem;
    }
    .logo img {
        max-height: 1.5rem;
    }

    .header-inner {
        gap: 1rem;
    }
    .base_banner {
        height: 25vh;
    }
    .base_banner .title{
        text-align: center;
        font-size: 1.75rem;
    }
    .base_banner .sub-title{
        text-align: center;
        font-size: 0.875rem;
    }
    
    .primary-nav {
        gap: 0;
    }
    .navbar{
        padding: 0.5rem 0;
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .lang-switch .lang-menu{
        margin-bottom: 2rem;
        box-shadow: none;
    }

    .mega-inner {
        gap: 0.625rem;
    }
    .mega-inner .mega-links{
        padding-left: 0;
        padding-right: 0;
    }
    .mega-inner .mega-links li {
        grid-column: span 6;
    }

    .mega-links li .send_menu {
        font-size: 1rem;
        padding: 0;
    }

    .mega-links li .send_menu::before,
    .mega-links li .send_menu::after {
        display: none;
    }

    .mega-links li .three_menu {
        padding-left: 0;
    }
    .breadcrumb .nav{
        width: 100%;
    }
    .breadcrumb .nav a{
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    .footer-inner{
        gap: 0.625rem;
    }
    .footer-col,.footer-col-left{
        grid-column: span 12;
    }
    .footer-list, .footer_adress .item{
        width: 100%;
    }
    .footer-col .text{
        font-size: 0.875rem;
    }
    .ewmCode{
        justify-content: center !important;
    }
    .footer-legal{
        font-size: 0.75rem;
    }
    .backTop{
        width: 2rem;
        height: 2rem;
        right: 1rem;
    }

    .base_title .title{
        font-size: 1.5rem;
    }
    .base_title .title span{
        font-size: 0.75rem;
    }
    .base_title .more{
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    .base_title .more .icon{
        width: 0.875rem;
    }
    .video{
        border-radius: 0.25rem;
    }

    .about-result .item {
        grid-column: span 12;
    }

    .about-result .result-card {
        padding: 2rem 1.5rem;
    }

    .about-result .number .count {
        font-size: 3rem;
    }

    .article-cont{
        padding: 1rem 0;
        border: none;
    }
    .article-cont p{
        font-size: 1rem;
    }
    .base-menu .inner-menu{
        padding: 0;
    }

    .pro_full_banner{
        height: 25vh;
    }
    .pro_full_banner .cite {
        text-align: center;
    }
    .pro_full_banner .sub-desc{
        margin: 0;
    }
    .pro_full_banner .sub-title{
        display: none;
    }

}
