@charset "utf-8";
html{
    width:100%;
    /*user-select: none;*/
    font-size: 16px;
}


body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    background: #ffffff;
}

@media screen and (max-width: 1600px) {
    html {
        font-size: 14px;
    }
}

:root {
    --comcolor: #0063d1;
    --subcolor: #0a8df9;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* :before, * :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


a { text-decoration:none;cursor:pointer; color: #333;}
a:focus{outline:0;}
li{list-style:none;}
.clear{ clear:both; height:0; line-height:0; font-size:0;}
.clearfix:after{ content:""; clear:both; height:0; visibility:hidden; display:block;}
.clearfix{*zoom:1}
p{ word-spacing:-1.5px;}
.tr { text-align:right;}
.tl { text-align:left;}
.center { text-align:center;}
.fl { float:left;}
.fr { float:right;}
h1,h2,h3,h4 {line-height: 2;}
input {
    border: none;
    outline: none;
}
em,i{font-style: normal;}
img {
    max-width:100%;
    height: auto;
}
::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#E3E3E3}
::-webkit-scrollbar-thumb:vertical{background-color:#555;border-radius:30px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}




.w_95{max-width: 1400px;width: 95%;margin: 0 auto;}
.hide { display:none; }

.more-bth {
    display: inline-block;
    background:var(--comcolor);
    color:#ffffff;
    padding: 0.6rem 1.5rem;
}
.more-bth:hover {
    background:var(--subcolor);
}

.top-section {width:100%;color:#ffffff;position: relative;min-height: 30rem;}
.top-section:after {content: '';width: 100%;height:100%;background: #00000047;position: absolute;left:0;top:0;}

.top-section .breadcrumb {
    margin-bottom:1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:1rem;
    color:#ffffff;
}
.breadcrumb a {color:#ffffff;}

.top-section .section-title {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.top-section .tit { font-size: 2rem;margin-bottom: 1rem; font-weight: 600; }
.top-section .sub-tit { font-size: 1.5rem;}

@media (max-width: 1000px) {
    .top-section {min-height: 30vh;}
    .top-section .tit { font-size: 1.2rem;margin-bottom: 1rem;}
    .top-section .sub-tit { font-size: 1.2rem;}
}

#container {}


header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}

header.hide {transform: translateY(-100%);}


.main-header {
    width: 100%;
    background: #b1b1b18a;
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
}
.main-header.active {margin-top:0;backdrop-filter: blur(24px);}
.main-header .main-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    height:5rem;
}
.main-header .logo {
}
.main-header .logo img {
    height: 4rem;
}


.main-header .nav-menu {
    display: flex;
    gap: 1.5rem;
}
.main-header .nav-item {
    position: relative;
}
.main-header .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}
.main-header .nav-item:hover > .nav-link,
.main-header .nav-item.active > .nav-link {
    background-color: var(--comcolor);
    color: #fff;
    border-radius: 0.3rem;
}


.main-header .submenu-1 {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--comcolor);
    min-width: 20rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    margin-top: 0;
    padding: 0;
}
.main-header .submenu-1 li {
    list-style: none;
    position: relative;
    padding:0.2rem 0;
}
.main-header .submenu-1 li:not(:last-child) {border-bottom: 1px solid #cdcdcd;}
.main-header .submenu-1 a {
    display: block;
    padding: 0.6rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}
.main-header .submenu-1 a:hover {
    color: var(--subcolor);
}


.main-header .nav-item .lx {display: flex;align-items:center;color:#ffffff;gap:0.3rem;margin-left: 1rem;}
.main-header .nav-item .lx a {color:#ffffff;}


.main-header .submenu-1 .oneli:not(:last-child),
.main-header .submenu-1 .twoli:not(:last-child),
.main-header .submenu-1 .threeli:not(:last-child),
.main-header .submenu-1 .oneli:first-child,
.main-header .submenu-1 .twoli:first-child,
.main-header .submenu-1 .threeli:first-child
{border-bottom: 1px dotted #cdcdcd;}

.main-header .submenu-1 .tits {
    padding: 0 1.25rem;
    width: 100%;
    color: #fff;
    height: 3rem;
    line-height: 1.2;
    margin-right: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.main-header .submenu-1 .tits {font-size: 0.9rem;}
.main-header .submenu-1 .two-li {
    position: absolute;
    width: 20rem;
    background-color: var(--comcolor);
    min-height: 100%;
    left: 20rem;
    top: 0;
    border-left: 1px solid rgb(198, 198, 198);
    display: none;
    max-height: 80vh;
}
.main-header .submenu-1 .twoli .tits { font-size: 0.8rem; }
.main-header .submenu-1 .three-li {
    position: absolute;
    width: 20rem;
    background-color: var(--comcolor);
    min-height: 100%;
    left: 20rem;
    top: 0;
    border-left: 1px solid rgb(198, 198, 198);
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}
.main-header .submenu-1 .threeli .tits { font-size: 0.8rem; }
.main-header .submenu-1 a:hover {
    color: var(--subcolor);
}



.main-header .submenu-1 .has-submenu > a::after {
    content: "›";
    float: right;
}


.main-header .menu-btn {
    position: relative;
    width: 2.2rem;
    z-index: 2;
    height: 1.5rem;
    display: none;
}
.main-header .menu-btn i {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: var(--comcolor);
    display: block;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s
}
.main-header .menu-btn i.ie1 {
    margin-top: -0.8rem
}
.main-header .menu-btn i.ie3 {
    margin-top: 0.8rem
}
.main-header .menu-btn.active i {
    margin: 0 !important;
}
.main-header .menu-btn.active i.ie1{
    transform: rotate(45deg);
}
.main-header .menu-btn.active i.ie2 {
    opacity: 0;
}
.main-header .menu-btn.active i.ie3 {
    transform: rotate(-45deg);
}

@media (min-width: 1000px) {
    .top-bar {
        position: absolute;
        left:0;top:0;
        width: 100%;
    }
    .main-header .nav-menu {
        height: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .main-header .nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .main-header .has-dropdown .nav-link::after
    {
        display: none;
        content: "◆";
        position: absolute;
        font-size: 1rem;
        left: 50%;
        bottom: 0;
        transform: translate(-50%,50%);
        color: var(--comcolor);
    }
    .main-header .has-dropdown:hover .nav-link::after
    {
        display: block;
    }

    .main-header .nav-item.has-dropdown:hover > .submenu-1 {
        display: block;
    }
    .main-header .submenu-1 .has-submenu:hover > .submenu-2 {
        display: block;
    }

    .main-header .submenu-1 .oneli:hover > .two-li{display: block}
    .main-header .submenu-1 .twoli:hover > .three-li{display: block}
}
@media (max-width: 1000px) {
    #container {
        margin-top: 5rem;
        background: #ffffff;
    }
    .main-header {margin-top: 0;background: #ffffff;}
    .main-header .nav-menu {
        position: fixed;
        left:0;
        top:0;
        width:80%;
        height:100vh;
        background:#fff;
        flex-direction:column;
        padding:3.5rem 1rem;
        box-shadow:2px 0 10px #0002;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        z-index:9999;
    }
    .main-header .nav-link {
        color: #333333;
    }
    .main-header .nav-menu.mobile-open {
        transform: translateX(0);
    }
    .main-header .menu-btn {
        display: block;
    }
    .main-header .submenu-1{
        position: static;
        box-shadow:none;
        display:none;
        height:auto;
        background: #f5f5f5;
    }
    .main-header .submenu-1 a{
        color: #333;
    }
    .main-header .nav-item.has-dropdown.active-mob > .submenu-1{
        display:block;
    }
    .main-header .nav-item.has-dropdown > .nav-link::after {
        display:none !important;
    }

    .main-header .submenu-1 .tits {
        color: #454545;
    }

    .main-header .submenu-1 .two-li {
        display: none;
    }

    header .search-btn {display: none;}
    .main-header .nav-item .lx {color: #444444;margin-left: 0;}
    .main-header .nav-item .lx a {color:#444444;}
}




header .search-btn {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow-y: hidden;
}

header .search-btn.active i:nth-child(1) {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
header .search-btn.active i.search-close {
    top: 0;
    opacity: 1;
    visibility: visible;
}
header .search-btn:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    border-color: var(--subcolor);
}
header .search-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--subcolor);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: 0.4s;
}
header .search-btn i {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 2.5rem;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}
header .search-btn i.search-close {
    position: absolute;
    left: 0;
    top: 100%;
}


.search-down {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #096ac9;
    opacity: 0;
    visibility: hidden;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: 0.8s;
}
.search-down.active {
    opacity: 1;
    visibility: visible;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    pointer-events: visible;
}
.search-down .search-text {
    position: absolute;
    left: 50%;
    margin-left: -315px;
    top: 50%;
    transform: translateY(-50%);
    width: 630px;
}
.search-down .search-tops {
    text-align: center;
}
.search-down .search-tops h4 {
    margin-bottom: 2.5rem;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    font-weight: normal;
}
.search-down .product-class {
    padding-top: 2rem;
}
.search-down .product-class p {
    color: #fff;
    font-size: 1.5rem;
}
.search-down .product-class-li {
    margin-top: 1.5rem;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.search-down .product-class-li li {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.search-down .product-class-li li a {
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding:0.5rem 1rem;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
}
.search-down .el-input {
    position: relative;
    display: inline-block;
    width: 100%;
}
.search-down .el-input__inner {
    -webkit-appearance: none;
    background-color: #FFF;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 4rem;
    line-height: 4rem;
    outline: 0;
    padding: 0 5rem 0 1rem;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%;
}
.search-down .searchForm {
    width:100%;
    margin: 0 auto;
    position: relative;
}

.search-down .searchForm .btn {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.search-down .searchForm .btn i {font-size: 1.5rem;}











/*尾部导航*/
.main-footer{
    position: relative;
    background: #222831;
    color:#fff;
    padding:3rem 0 2rem;
    z-index: 9999;
}
.main-footer .foot-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.main-footer .foot-item{
    width: 20%;
}
.main-footer .foot-item:nth-child(1) {
    width: 40%;
    padding-right: 2rem;
}
.main-footer .foot-item .logo {
    margin-bottom: 2rem;
    width: 50%;
}
.main-footer .foot-item h4{
    font-size: 1.2rem;
    padding-left:0.6rem;
    border-left:3px solid var(--subcolor);
}
.main-footer .foot-item p{
    color:#ccc;
    line-height:1.8;
}
.main-footer .foot-item ul{
    list-style:none;
    margin: 2rem 0;
}
.main-footer .foot-item ul li{
    margin-bottom: 1rem;
}
.main-footer .foot-item ul li span {flex-shrink: 0;}
.main-footer .foot-item ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}
.main-footer .foot-item ul li a:hover{
    color: var(--subcolor);
    padding-left:0.5rem;
}
.main-footer .foot-contact li{
    display:flex;
    align-items:center;
    gap:0.5rem;
    color:#ccc;
}
.main-footer .foot-contact li i{
    color: var(--subcolor);
    font-size:1.5rem;
}
.main-footer .foot-contact li i,.main-footer .foot-contact span,.main-footer .foot-contact li a {
    vertical-align: middle;
}
.main-footer .foot-copyright{
    margin-top:2.5rem;
    padding-top:1.25rem;
    border-top:1px solid #393e46;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    color:#999;
}
.main-footer .foot-copyright a{
    color:#999;
    text-decoration:none;
    margin-left:1rem;
}
.main-footer .foot-copyright a:hover{
    color:var(--subcolor);
}

.main-footer .footer-contact {display: none; z-index:99999;position: fixed;bottom:0;right:0;width:100%;height:4rem;background: #f5f5f5; }
.main-footer .footer-contact .item {width: 50%;}
.main-footer .footer-contact .item a {display: flex;flex-direction: column;justify-content: center;align-items: center;}
.main-footer .footer-contact .item a i {font-size: 1.5rem;}

.main-footer .foot-qrcode {display: flex;gap:2rem;margin-bottom: 2rem;}
.main-footer .foot-qrcode .foot-wechat {text-align: center;}
.main-footer .foot-qrcode .foot-wechat .qrcode-img {
    width: 10rem;
    height:10rem;
    border: 1px solid #eee;
    padding: 0.5rem;
    background: #fff;
    margin-bottom: 0.5rem;
    display: flex;
}
.main-footer .foot-qrcode img {width: 10rem;}

@media (max-width:1000px){
    .main-footer .foot-item{
        width: 33.33%;
    }
    .main-footer .foot-item:nth-child(1) {
        width: 100%;
    }
    .main-footer .foot-copyright{
        flex-direction:column;
        gap:0.6rem;
        text-align:center;
        margin-top: 0;
    }
}
@media (max-width:765px){
    .main-footer .foot-item{
        width: 100%;
        padding-right: 0;
    }
    .main-footer .foot-item:nth-child(1) {
        width: 100%;
        padding-right: 0;
    }
    .main-footer .foot-copyright{
        flex-direction:column;
        gap:0.6rem;
        text-align:center;
    }
    .main-footer {padding-bottom: 5rem;}
    .main-footer .footer-contact {display: flex;align-items: center;}

    .main-footer .foot-item:not(:first-child) ul {display: flex;flex-wrap: wrap;gap:1rem;}
    .main-footer .foot-item:not(:first-child) ul li { flex: 0 0 calc(50% - 1rem); }

}






.floatFns {
    position: fixed;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
}
.floatFns .kefu {
    margin-bottom: 0.8rem;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:3rem;
    height:3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
    -webkit-animation: diffuse 1.5s ease-out 75ms infinite;
    animation: diffuse 1.5s ease-out 75ms infinite;
}
@keyframes diffuse {
    0% {
        opacity: .3;
    }
    50% {
        opacity: .5;
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #73d51d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
    }
    100% {
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #73d51d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
        transform: scale(1.5);
        opacity: 0;
    }

}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: #3fe45c;
}
.floatFns .kefu.email .box,.floatFns .kefu.email .info {
    background: #f3ab23;
}
.floatFns .kefu.weixin .box,.floatFns .kefu.weixin .info {
    background: #04BE02;
}
.floatFns .kefu.message .box{
    background: #FF5722;
}
.floatFns .kefu.top .box {
    background: #a7a7a7;
}
.floatFns .kefu.top {
    display: none;
}
.floatFns .kefu .box a{
    display: inline-flex;
}
.floatFns .kefu .box i{
    font-size: 1.4rem;
    color:#fff;
}
.floatFns .kefu .info {
    position: absolute;
    right: 3rem;
    top:50%;
    padding:10px;
    color:#fff;
    border-radius: 5px;
    transform: translateY(-50%) scale(0);
    transition: 0.5s;
    font-size: 18px;
    white-space: nowrap;
    min-width:100px;
}
.floatFns .kefu .info img{
    max-width: none;
    width:10rem;
    height:10rem;
}
.floatFns .kefu .info a {color:#fff;}
.floatFns .kefu:hover .info {
    transform: translateY(-50%) scale(1);
}

.floatFns .kefu.tel i {
    animation: yyhh 1.5s linear infinite;
}
@keyframes yyhh {
    0%,90%,100% {
        transform: rotate(0) scale(1);
    }
    20%,40% {
        transform: rotate(-15deg) scale(1.1);
    }
    30%,50% {
        transform: rotate(15deg) scale(1.1);
    }
}

@media (max-width: 768px) {
    .floatFns {
        display: none;
    }
}





.pagination {
    text-align: center;
    padding: 2rem 0;
}
.pagination li {
    display: inline-block;
    margin: 0 5px;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 300;
    height: 2.5rem;
    padding: 0 1.25rem;
    line-height: 2.5rem;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
    border-radius: 2.5rem;
}
.pagination .active a{
    background: #004898;
    color: #FFF;
}




.pro-bg-color { background: #ffffff;position: relative;}
.pro-bg-color::after {
    content: '';
    background: url('../images/watermark.png');
    position: absolute;
    top:0;
    left:0;
    width: 100%;height:100%;
    background-size: cover;
}




.contact-us-block {
    background-color: var(--comcolor);
    border-radius: 0.8rem;
    padding: 2rem 10%;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    color:#ffffff;
}
.contact-us-block .cta-content {
    flex: 1 1 50%;
}
.contact-us-block .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--subcolor);
}
.contact-us-block .cta-text {
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.contact-us-block .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.contact-us-block .btn {
    padding: 1rem 1.5rem;
    border-radius: 0.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-us-block .btn-primary {
    background-color: #94ca67;
    color: white;
}
.contact-us-block .btn-primary:hover {
    background-color: var(--subcolor);;
    transform: translateY(-2px);
}
.contact-us-block .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.contact-us-block .btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}
.contact-us-block .whatsapp-box {
    flex: 0 0 auto;
    text-align: center;
}
.contact-us-block .whatsapp-box img {width: 8rem;}
.contact-us-block .whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
}
.contact-us-block .whatsapp-btn:hover {
    background-color: #1DA851;
}
.contact-us-block .qrcode-note {
    margin-top: 0.8rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .contact-us-block {
        padding: 2rem 1rem;
        text-align: center;
    }
    .contact-us-block .btn {padding:0.8rem 0.5rem;}
    .contact-us-block .cta-buttons {
        justify-content: center;
    }
    .contact-us-block .whatsapp-box {
        margin: 0 auto;
    }
}









.quote-section {
    background-color: var(--comcolor);
    overflow: hidden;
    position: relative;
    z-index: 9;
}
.quote-section .quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    color: #ffffff;
}
.quote-section .quote-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}
.quote-section .quote-header {
    text-align: center;
    margin-bottom: 1rem;
}
.quote-section .quote-header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.quote-section .quote-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}
.quote-section .quote-text p:nth-child(1) {
    margin-bottom: 1rem;
}


@media (max-width: 850px) {
    .quote-section .quote-header h1 {
        font-size: 1.5rem;
    }
    .quote-section .quote-content {
        grid-template-columns: 1fr;
    }
}







.feedback {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feedback .form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}
.feedback .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feedback .input-wrap {display: flex;align-items: center;}
.feedback .input-wrap .input-label {
    width: 5rem;
    padding-right: 1rem;
    text-align: right;
}
.feedback .input-wrap .input-label span {color:red;margin-right: 3px;vertical-align: middle;}
.feedback .form-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
}
.feedback .form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--subcolor);
}
.feedback .form-input::placeholder {
    color: #999;
}
.feedback .form-textarea {
    resize: vertical;
    min-height: 10rem;
    padding-top: 1rem;
}
.feedback .submit-btn {
    width: fit-content;
    align-self: center;
    padding: 1rem 2rem;
    background-color: var(--subcolor);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.feedback .submit-btn:hover {
    background-color: #70b4ff;
}
.feedback .form-notes {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #c5cbd5;
    align-self: flex-start;
}
.feedback .form-notes span::before {
    content: "✓ ";
    color: #4cd964;
    font-weight: bold;
}
.feedback input.check::placeholder {
    color: red;
}

#feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: 80%;
    max-width: 1400px;
    background: #ffffff;
    padding:2rem;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}
#feedback .quote-form input,
#feedback .quote-form textarea {
    border:1px solid #ebebeb;
}
#feedback .close {
    position: absolute;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: var(--comcolor);
    display: flex;
    align-items: center;
    justify-content: center;
}
#feedback .close i {
    color:#ffffff;
}

@media (max-width: 1000px) {
    #feedback {
        width: 90%;
        padding:1rem;
    }
    .feedback .quote-form {gap:1rem;}
    .feedback .form-input {padding:0.8rem 1rem;}
    .feedback .form-textarea {
        min-height: 8rem;
    }
    .feedback .submit-btn {padding: 0.5rem 2rem;}
}







.second_top_nav {position: relative;z-index: 99}
.second_top_nav .nav_box{position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);background: linear-gradient(rgba(255,255,255,0.8), #ffffff);
    width: 100%;height:4rem;transition:all 0.5s;
}
.second_top_nav .nav_box.on{position: fixed;top: 80px;width: 100%;height:3.75rem;background-color:#fff;border-bottom:1px solid rgba(0,0,0,0.08);}
.second_top_nav .nav {position: relative;display: flex;height:100%;}
.second_top_nav .nav li{width: 100%;text-align: center;height:100%;font-size: 1rem;position: relative;transition:all 0.5s;display: flex;
    align-items: center;
    justify-content: center;}
.second_top_nav .nav li::before{content: "";position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 1px;height: 1rem;background-color: #949494;}
.second_top_nav .nav li:last-child::after{content: "";position: absolute;right: 0;top: 50%;transform: translateY(-50%);width: 1px;height: 18px;background-color: #949494;}
.second_top_nav .nav li a{color: #333333;}
.second_top_nav .nav li.act a{color: var(--comcolor);}
.second_top_nav .nav li:hover a{color: var(--comcolor);}
.second_top_nav .nav li i{
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left:20%;
    background: var(--comcolor);
    transition: 0.5s;
}
.second_top_nav .nav li.act i{
    width: 60%;
}