* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
   

}

.header-top {
    color: #fff;
    /* padding: 8px 0; */
    background: #1a472a;
}

.header-top .container {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.welcome-text {
    font-size: 14px;
    font-weight: 500;
}

.header-middle-desktop {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-middle-desktop .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-middle-left {
    display: flex;
    align-items: center;
}

.middle-logo {
    height: 100px;
    width: auto;
}

.header-middle-right {
    display: flex;
    align-items: center;
}

.contact-info {
    /* display: flex; */
    font-size: 14px;
    color: #333;
}

.contact-label, .contact-phone, .contact-mobile {
    white-space: nowrap;
    font-weight: bold;
    color: #1a472a;
    font-size: 26px;
}

.navbar-desktop {
    background: #1a472a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-desktop .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 20px;
}

.mobile-header {
    display: none;
}

.mobile-banner {
    position: relative;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.banner-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
}

.banner-subtitle {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 2px 1px;
    background: #fff;
}

.nav-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.nav-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 3px #46a367;
  background: linear-gradient(135deg, #46a367, #46a367); 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.3);
}

.nav-icon-circle .nav-icon {
    font-size: 14px;
}

.nav-text {
    font-size: 12px;
    text-align: center;
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #116406);
    justify-content: space-around;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    flex: 1;
}

/* .bottom-bar-item:first-child {
    background: #00BFFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    top: -20px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
} */

/* .bottom-bar-item:first-child .bottom-icon {
    font-size: 24px;
}

.bottom-bar-item:first-child .bottom-text {
    display: none;
} */

.bottom-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bottom-text {
    font-size: 11px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    color: #1a472a;
}

.company-slogan {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu .active a {
    color: #1a472a;
    background: #fff;
}

.nav-menu li {
    position: relative;
}

.nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a472a;
}

.navbar-right {
    display: flex;
    align-items: center;
}

/* .hotline {
    text-align: right;
} */

.hotline-label {
    font-size: 12px;
    color: #666;
    display: block;
}

.hotline-phone {
    font-size: 18px;
    font-weight: bold;
    color: #1a472a;
    display: block;
}

.hotline-mobile {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 2px;
}


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

.touch-active {
    transform: scale(0.97);
    opacity: 0.85;
}

@media (max-width: 600px) {
    .mobile-btn {
        font-size: 24px;
        padding: 8px;
    }
    
    .nav-menu {
        padding-top: 140px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 14px 18px;
    }
}

.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=modern%20textile%20factory%20interior%20machinery%20industrial&image_size=landscape_16_9');
    background-size: cover;
    background-position: center;
    /* padding: 120px 0; */
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    background-color: #1a472a;
}

.btn-primary {
    background: #1a472a;
    color: #fff;
}

.btn-primary:hover {
    background: #0d2e1a;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2c3e50;
}



.features {
    padding: 40px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #059418
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

.about-video {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-video-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #1a472a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.video-container {
    flex: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 20px;
    color: #1a472a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 12px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #1a472a;
}

.company-intro {
    /* padding: 60px 0; */
    background: #f8f9fa;
}

.company-intro .container {
    display: flex;
    gap: 40px;
}

.intro-left {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.intro-left h2 {
    /* font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a472a; */
    display: inline-block;
}

.intro-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.feature-item:last-child {
    border-bottom: none;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #1a472a;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.intro-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .company-intro .container {
        flex-direction: column;
    }
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-right img {
        height: 300px;
    }
}

.products-preview, .cases-preview {
    /* padding: 20px 0; */
}

.products-preview h2, .cases-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.products-page {
    padding: 30px 0;
}

.products-layout {
    display: flex;
    gap: 30px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-section h3 {
    background: #1a472a;
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
}

.mobile-category-bar {
    display: none;
    margin-bottom: 20px;
}

.mobile-category-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 15px;
}

.mobile-category-item {
    flex: 0 0 33.33%;
    text-align: center;
    padding: 10px 5px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
    box-sizing: border-box;
}

.mobile-category-item.active {
    background: #1a472a;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
}


.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
    color: #333;
}

.category-item:hover {
    background: #f5f5f5;
}

.category-item.active {
    background: #e8f5e9;
    color: #1a472a;
    font-weight: 500;
}

.category-item .arrow {
    color: #999;
    font-size: 18px;
}

.category-item.active .arrow {
    color: #1a472a;
}

.contact-section {
    padding-bottom: 20px;
}

.contact-banner {
    padding: 10px;
}

.contact-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.contact-details {
    padding: 0 20px;
}

.hotline {
    margin-bottom: 15px;
}

.hotline-label {
    font-size: 14px;
    color: #666;
}

.hotline-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #1a472a;
    margin-top: 5px;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.products-content {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.products-content .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-info p {
    color: #666;
    font-size: 14px;
}

.cases-page {
    padding: 30px 0;
}

.cases-layout {
    display: flex;
    gap: 30px;
}

.cases-content {
    flex: 1;
}


.cases-content .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    position: relative;
     height: 180px; 
    border-radius: 10px;
    overflow: hidden;
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 10px 10px;
    color: #fff;
    font-size: 12px;
}

.case-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.index-case-card {
    position: relative;
     height: 220px; 
    border-radius: 10px;
    overflow: hidden;
}

.index-case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.case-info p {
    font-size: 14px;
    opacity: 0.8;
}

.news-page {
    padding: 30px 0;
}

.news-layout {
    display: flex;
    gap: 30px;
}

.news-content {
    flex: 1;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.news-image {
    width: 255px;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content-inner h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-content-inner h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.news-content-inner h2 a:hover {
    color: #1a472a;
}

.news-content-inner p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 12px;
    color: #999;
}

.news-meta span {
    margin-right: 20px;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

.factory-page {
    padding: 30px 0;
}

.factory-layout {
    display: flex;
    gap: 30px;
}

.factory-content {
    flex: 1;
}

.factory-intro {
    margin-bottom: 30px;
}

.factory-intro h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.factory-intro p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.factory-gallery {
    margin-bottom: 30px;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 20px 15px 15px;
    font-size: 14px;
}

.factory-features {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.factory-features h3 {
    text-align: center;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f8f2;
    border-radius: 10px;
}

.feature-info h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 13px;
    color: #666;
}

.home-showcase {
    padding: 40px 0;
    background: #f8f9fa;
}

.showcase-section {
    margin-bottom: 40px;
}

.showcase-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1a472a;
}

.section-header h2 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0;
}

.more-link {
    color: #1a472a;
    text-decoration: none;
    font-size: 14px;
}

.more-link:hover {
    text-decoration: underline;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.showcase-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    text-align: center;
}

.ios-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.ios-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.ios-item img {
    width: 175px;
    object-fit: cover;
}



@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



.honor-page {
    padding: 30px 0;
}

.honor-layout {
    display: flex;
    gap: 30px;
}

.honor-content {
    flex: 1;
}

.honor-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.honor-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.certificates-section {
    margin-bottom: 40px;
}

.certificates-grid-new {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cert-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}


.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cert-item img {
    /* width: 90%; */
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

.cert-name {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #333;

}

.cert-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.cert-popup img {
    max-width: 600px;
    max-height: 500px;
    display: block;
}

@media (max-width: 992px) {
    .certificates-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.float-buttons {
    position: fixed;
    right: 2px;
    bottom: 40%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
     background: #3e7a53; 
    /* color: #fff; */
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    position: relative;
}

.float-btn:hover {
    background: #2d6b4a;
    transform: scale(1.1);
}

.float-icon {
    font-size: 22px;
}
.float-icon img {
padding-top:5px 2px;
    width: 30px;
    height: 30px;
}

.float-label {
    font-size: 10px;
    margin-top: 2px;
}

.float-qrcode {
    display: none;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.float-qrcode img {
    width: 120px;
    height: 120px;
    display: block;
}

.float-qrcode span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.float-wechat:hover .float-qrcode {
    display: block;
}


.production-capacity {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.capacity-left {
    flex: 1;
}

.capacity-left h2 {
    font-size: 24px;
    color: #077910;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1a472a;
}

.capacity-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.capacity-item {
    text-align: center;
}

.capacity-value {
    font-size: 36px;
    font-weight: bold;
    color: #1a472a;
}

.capacity-unit {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.capacity-label {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.capacity-desc p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.capacity-right {
    flex: 1;
}

.capacity-right img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .production-capacity {
        flex-direction: column;
    }
    .capacity-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.production-scale {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
}

.scale-left {
    flex: 1;
}

.scale-images {
    display: flex;
    gap: 15px;
}

.scale-images img {
    width: calc(50% - 10px);
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.scale-right {
    flex: 1;
}

.scale-right h2 {
    font-size: 24px;
    color: #077910;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1a472a;
}

.scale-right p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .production-scale {
        flex-direction: column;
    }
    
  
}

.contact-layout {
    display: flex;
    gap: 30px;
}

.contact-map {
    flex: 1;
}

.contact-map h2, .contact-details h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-address {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.map-address p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.map-link {
    display: inline-block;

    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.map-link:hover {
    background: #2d6b4a;
}

.contact-details {
    flex: 1;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: #f0f8f2;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.contact-card-info h3 {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.contact-card-info p {
    margin: 0;
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }
    .contact-map iframe {
        height: 300px;
    }
}

.footer {
    background: #1a472a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #1a472a;
}

.footer-links .footer-icons {
    display: flex;
    /* flex-direction: column; */
    gap: 15px;
}

.footer-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #2d6b4a;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-icon-btn:hover {
    background: #3d8a5a;
    transform: scale(1.05);
}


.footer-icon-btn .label {
    font-size: 11px;
    color: #fff;
}

.footer-icon-btn .icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.qrcode-wrapper {
    position: relative;
}

.qrcode-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    z-index: 100;
}

.qrcode-wrapper:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
}

.qrcode-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

.qrcode-label {
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.qrcode-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 992px) {
    .features-grid,  .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-menu {
        gap: 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .cases-layout, .news-layout {
        flex-direction: column;
    }
    .news-item {
        flex-direction: column;
    }
    .news-image {
        width: 100%;
    }
    .about-video-content {
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .factory-layout {
        flex-direction: column;
    }
    .honor-layout {
        flex-direction: column;
    }
    .products-layout {
        flex-direction: column;
    }
    .news-layout {
               flex-direction: column;
    }
}

.page-title {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-title h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-title p {
    color: #666;
    font-size: 14px;
}

.product-categories, .case-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn, .case-category {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover, .case-category:hover,
.category-btn.active, .case-category.active {
    background: #1a472a;
    border-color: #1a472a;
    color: #fff;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    flex-shrink: 0;
}

.news-image img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content h2 {
    margin-bottom: 15px;
}

.news-content h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.news-content h2 a:hover {
    color: #1a472a;
}

.news-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 14px;
    color: #999;
}

.news-meta span {
    margin-right: 20px;
}

.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
}

.about-image img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

 .about-image video {
        width: 600px;
        height: auto;
        margin-top: 60px;
    }

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #1a472a, #0d2e1a);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.company-values h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.8;
}

.honor-intro {
    text-align: center;
    margin-bottom: 40px;
}

.honor-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.honor-intro p {
    color: #666;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.certificate-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.certificate-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.certificate-card p {
    color: #666;
    font-size: 14px;
}

.honors-list h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.honor-badge {
    font-size: 36px;
}

.honor-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.honor-content p {
    color: #666;
    font-size: 14px;
}

.contact-page {
    padding: 30px 0;
}
.contact-info{
    width: 200px;
}

.contact-info h2, .contact-form-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    font-size: 36px;
}

.contact-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .features-grid,  .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 32px;
    }
    .about-intro {
        flex-direction: column;
    }
    .about-image img {
        width: 100%;
        height: auto;
    }
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid, .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: right;
    }
    .products-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: auto;
        min-height: 100%;
    }
    body {
        padding-bottom: 60px;
    }

    .honor-page , .products-page ,.news-page ,.cases-page,.factory-page{
    padding: 0 0;
}
    .header-top {
        display: none;
    }
    .header-middle-desktop {
        display: none;
    }
    .navbar-desktop {
        display: none;
    }
    .mobile-header {
        display: block;
    }
    .mobile-bottom-bar {
        display: flex;
    }
    .hero {
        display: none;
    }
    .contact-page {
    padding: 0 0;
}
    .contact-section {
        display: none;
    }
    .contact-map{
display: none;
    }
    .category-sidebar {
        display: none;
    }
    .mobile-category-bar {
        display: block;
    }
    .cases-layout .sidebar {
        display: none;
    }
    .news-layout .sidebar {
        display: none;
    }
.products-layout .sidebar {
        display: none;
    }


    .honor-layout .sidebar {
        display: none;
    }
    .product-info h3 {
    font-size: 14px;
  
}
    .float-buttons {
        display: none;
    }
    .features {
        padding: 15px 0;
        overflow-x: auto;
    }
    .features-grid {
        display: flex;
        grid-template-columns: none;
        gap: 10px;
        overflow-x: auto;
        padding: 5px 0;
    }
    .feature-card {
        flex: 0 0 auto;
        width: 23%;
        padding: 12px;
    }
    .feature-card h3 {
        font-size: 14px;
    }
    .feature-card p {
        font-size: 11px;
    }
    .products-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
 .intro-stats {
        grid-template-columns: 1fr;
    }

    .features-grid, .products-grid,  .footer-content {
         grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .news-item {
        flex-direction: row;
    }
        .news-image {
        width: 30%;
    }
    .news-image img {
        width: 100%;
        height: auto;
    }
    .company-stats {
        grid-template-columns:  repeat(4, 1fr);
        margin-bottom: 10px;
    }
    .values-grid, .certificates-grid, .honors-grid {
        grid-template-columns: 1fr;
    }
    .news-detail-layout {
        flex-direction: column;
    }
    .news-detail-nav {
        flex-direction: column;
        gap: 10px;
    }
    .main-content {
        padding-bottom: 80px;
    }
   .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .certificates-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cert-item img {
    width: 90%;
}
.cert-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20em;
}
    .ios-item img {
        width: 100%;
        height: auto;
        padding: 2px;
        padding-bottom: 0px;
    }
.cases-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
   .index-case-card {
       width: 96%;
       margin:0 2%;
       height: auto;
    }
      
 .float-buttons {
        right: 10px;
        gap: 8px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-icon {
        font-size: 18px;
    }
    .float-label {
        font-size: 9px;
    }

    .about-image video {
        width: 100%;
        height: auto;
        margin-top: 10px;
    }

    .footer {
        padding-bottom: calc(30px + env(safe-area-inset-bottom) + 60px);
    }
}

.news-detail-page {
    padding: 40px 0;
}

.news-detail-layout {
    display: flex;
    gap: 30px;
}

.news-detail-content {
    flex: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #1a472a;
}

.breadcrumb span {
    color: #999;
}

.news-detail-article {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.news-detail-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #999;
}

.news-detail-image {
    margin-bottom: 30px;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-detail-body {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.news-detail-body p {
    margin-bottom: 20px;
}

.news-detail-body h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 30px 0 15px;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-detail-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.news-detail-nav a:hover {
    color: #1a472a;
}

@media (max-width: 992px) {
    .news-detail-layout {
        flex-direction: column;
    }
    .news-detail-article {
        padding: 30px;
    }
    .news-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px 15px;
    }
    
    .header-top {
        display: none;
    }
    
    .header-middle .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .middle-logo {
        height: 60px !important;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-label {
        display: none;
    }
    
    .contact-phone {
        font-size: 20px !important;
        display: block;
    }
    
    .contact-mobile {
        font-size: 16px !important;
        display: block;
        margin-top: 5px;
    }
    
    .navbar .container {
        padding: 10px 15px;
    }
    
    .nav-menu a {
        font-size: 16px !important;
        padding: 12px 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .features {
        padding: 10px 0;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .company-intro {
        padding: 10px 0;
    }
    
    .intro-left {
        padding: 20px;
    }
    
    .feature-item span:last-child {
        font-size: 13px;
    }
    
    .intro-desc {
        font-size: 13px;
    }
    
    .intro-right img {
        min-height: 200px;
    }
    
    .products-preview, .cases-preview {
        padding: 20px 0;
    }
    
    .products-preview h2, .cases-preview h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card img {
        height: 180px;
    }

 
    
    .home-showcase {
        padding: 20px 0;
    }
    
    .showcase-section {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .showcase-item img {
        height: 120px;
    }
    
    .ios-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    

    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p, .footer-section ul li a {
        font-size: 13px;
    }
    
    .float-buttons {
        right: 5px;
        bottom: 30%;
        gap: 6px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
    }
    
    
    .float-label {
        font-size: 8px;
    }
    
    .page-title {
        padding: 20px 0;
    }
    
    .page-title h1 {
        font-size: 22px;
    }
    
    .page-title p {
        font-size: 13px;
    }
    
    .contact-card {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-card-info h3 {
        font-size: 13px;
    }
    
    .contact-card-info p {
        font-size: 14px;
    }
    .cert-item{
        padding: 10px;
        gap: 10px;
    }
    
    .production-capacity, .production-scale {
        padding: 20px;
        margin-top: 25px;
    }
    
    .capacity-value {
        font-size: 28px;
    }
    
    .news-item {
        padding: 15px;
    }
    
    .news-image img {
        height: 120px;
    }
    
    .news-content-inner h2 {
        font-size: 16px;
    }
    
    .news-content-inner p {
        font-size: 13px;
    }
    
    .about-intro {
        gap: 20px;
    }
    
    .about-content h2 {
        font-size: 22px;
    }
    
    .about-content p {
        font-size: 13px;
    }
    
    .company-stats {
        padding: 25px;
        gap: 15px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .values-grid {
        gap: 15px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group input, .form-group textarea {
        padding: 10px 12px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .view-more {
        margin-top: 25px;
    }
}

@media (max-width: 400px) {
 
    .showcase-grid {
        grid-template-columns: 1fr !important;
    }
    
    .ios-grid {
        grid-template-columns: 1fr !important;
    }
     .feature-card  {
        flex: 0 0 auto;
        width: 80px;
        padding: 6px;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .navbar .container {
        padding: 8px 12px;
    }
    
    .nav-menu a {
        font-size: 15px !important;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus, textarea:focus {
    outline: none;
}

button {
    touch-action: manipulation;
}

a, button, .float-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}