<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
2025 - Unified Typography System with Enhanced Left Column Styling
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&amp;family=Open+Sans:wght@400;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
}

a {
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #008938;
    text-decoration: none;
}

a:hover {
    color: #f2b700;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Section Headers (e.g., Product, News) */
.product_head h2, .news_head h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    color: #2C3E50;
    margin-top: 50px;
}

/* Highlight and Accent Text */
.highlight, .about_h3, .case_title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #008938;
}

/* Body Text */
p, .product_title a, .news_title a, .about_p, .case_title a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

/* Buttons */
#search_submit, .about_btn, .page-btn, .download_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    background-color: #008938;
    border-radius: 4px;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

#search_submit:hover, .about_btn:hover, .page-btn:hover, .download_btn:hover {
    background-color: #f2b700;
}

/* Price Tag */
.price-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #E74C3C;
}

/* Navigation */
.navbar-default .navbar-nav &gt; li &gt; a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background-color: #008938;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-default .navbar-nav &gt; li &gt; a:hover,
.navbar-default .navbar-nav &gt; li &gt; a:focus,
.navbar-default .navbar-nav &gt; li &gt; a.active,
.navbar-default .navbar-nav &gt; .active &gt; a,
.navbar-default .navbar-nav &gt; .active &gt; a:hover,
.navbar-default .navbar-nav &gt; .open &gt; a,
.navbar-default .navbar-nav &gt; .open &gt; a:hover,
.navbar-default .navbar-nav &gt; .open &gt; a:focus {
    color: #ffffff;
    background-color: #f2b700;
}

.left_column ul.left_nav_ul &gt; li &gt; a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    background-color: #f2f2f2;
}

.left_column ul.left_nav_ul &gt; li &gt; a:hover,
.left_column ul.left_nav_ul li a.left_active {
    color: #ffffff;
    background-color: #008938;
}

/* Left Column Header */
.left_column h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* è¶…ç²—ä½“å¢žå¼ºçªå‡ºæ€§ */
    font-size: 22px; /* å¢žå¤§å­—ä½“ä»¥æå‡è§†è§‰æƒé‡ */
    color: #008938;
    text-transform: uppercase;
    padding: 15px 20px;
    background: linear-gradient(to right, #008938, #00a84a); /* ç»¿è‰²æ¸å˜èƒŒæ™¯ */
    color: #ffffff; /* ç™½è‰²æ–‡å­—æå‡å¯¹æ¯” */
    position: relative;
    border-radius: 6px 6px 0 0; /* é¡¶éƒ¨åœ†è§’ï¼Œä¸Ž shadow-box åè°ƒ */
    transition: transform 0.3s ease, background 0.3s ease;
}

.left_column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px); /* é€‚é… padding */
    height: 2px;
    background-color: #f2b700;
    transform: scaleX(0); /* é»˜è®¤éšè— */
    transform-origin: left;
    transition: transform 0.3s ease; /* å¹³æ»‘ä¼¸å±• */
}

.left_column h3:hover {
    transform: scale(1.02); /* è½»å¾®ç¼©æ”¾å¢žåŠ&nbsp;åŠ¨æ€æ„Ÿ */
    background: linear-gradient(to right, #f2b700, #ffcc00); /* æ‚¬åœæ—¶é»„è‰²æ¸å˜ */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* å¾®å¦™é˜´å½±å¢žå¼ºç«‹ä½“æ„Ÿ */
}

.left_column h3:hover::after {
    transform: scaleX(1); /* æ‚¬åœæ—¶é«˜å…‰çº¿ä¼¸å±• */
}

/* Responsive adjustments for .left_column h3 */
@media screen and (max-width: 768px) {
    .left_column h3 {
        font-size: 18px; /* ç§»åŠ¨ç«¯å‡å°å­—ä½“ */
        padding: 12px 15px;
    }
    .left_column h3::after {
        left: 15px;
        width: calc(100% - 30px); /* é€‚é…ç§»åŠ¨ç«¯ padding */
    }
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    body { font-size: 14px; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    h6 { font-size: 14px; }
    .product_head h2, .news_head h2 { font-size: 28px; }
    .product_title a, .news_title a, .case_title a { font-size: 14px; }
    .navbar-default .navbar-nav &gt; li &gt; a { font-size: 14px; }
}

/* Tables */
.table tr.firstRow th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    background-color: #f7f7f7;
}

/* Top Bar */
.top_email, .top_email a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #565656;
}

.top_email a:hover {
    color: #008938;
}

/* Product Card */
.product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title a {
    color: #333333;
}

.product-title a:hover {
    color: #008938;
}

/* News */
.news_title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #444444;
}

.news_title a:hover {
    color: #008938;
}

.news_desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #7b7b7b;
}

/* Footer */
footer, .footer_menu a, .footer_sitemap {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #363f4d;
}

.footer_menu_first {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.footer_sitemap:hover {
    color: #008938;
}

/* Links and Tags */
.link_box a, .tags_box a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #363f4d;
}

.link_box a:hover, .tags_box a:hover {
    color: #008938;
}

/* General Styles (Non-Typography) */
ul {
    list-style: none;
}

.clear {
    clear: both;
}

.img-thumbnail {
    transition: opacity 0.7s;
}

.img-thumbnail:hover,
.opacity_img:hover {
    opacity: 0.75;
}

/* Top Bar */
.top_bg {
    color: #777777;
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #e4e4e4;
}

.top_email {
    padding-top: 6px;
}

/* Slideshow */
.flash img {
    width: 100%;
}

.flash ul.bxslider {
    list-style: none;
}

.flash div.bx-pager {
    bottom: 4%;
}

.flash div.bx-controls-direction {
    display: none;
}

/* Search */
.search_group {
    float: right;
    height: 40px;
    background-color: #f2f2f2;
    margin: 32px 0px 0px 0px;
}

.search_group input.form-control {
    border-radius: 0px;
    box-shadow: none;
    color: #585A5A;
    padding: 0px 0px 0px 15px;
    height: 40px;
    background: transparent;
    border: none;
}

.search_group input.form-control:focus {
    box-shadow: none;
}

#search_submit {
    border-radius: 0px;
    border: none;
}

/* Products */
.product_head span {
    display: block;
    margin-top: 16px;
    height: 24px;
    background: url(../images/divider.png) center center no-repeat;
}

.product_list {
    clear: both;
    padding: 25px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.product_list2 {
    padding-top: 10px;
}

.product_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 370px;
}

.product_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product_list2 div.product_img {
    min-height: 350px;
    margin-bottom: 10px;
}

.product-item {
    padding: 15px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

/* About Section */
.about_bg {
    background-color: #f5f5f5;
}

.about_img {
    max-width: 414px;
    margin: 50px 0px 30px 15px;
}

.about_h3 {
    font-size: 19px;
    margin-top: 60px;
}

.about_p {
    font-size: 15px;
    font-style: italic;
    margin-top: 20px;
}

.about_content {
    font-size: 13px;
    line-height: 26px;
    color: #555555;
    margin-top: 20px;
}

.about_btn {
    display: block;
    text-align: center;
    width: 150px;
    margin: 20px 0px 50px 0px;
}

/* News Section */
.news_head {
    margin-bottom: 20px;
}

.news_head span {
    display: block;
    margin-top: 16px;
    height: 24px;
    background: url(../images/divider.png) center center no-repeat;
}

.news_list {
    clear: both;
    padding: 5px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.news_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 340px;
}

.news_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.news_time {
    float: right;
}

/* Shadow Box */
.shadow-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    transition: box-shadow 0.3s ease;
}

.shadow-box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Left Navigation */
.left_column ul.left_nav_ul {
    padding: 0;
    margin-top: 20px;
}

.left_column ul.left_nav_ul &gt; li {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.left_column ul.left_nav_ul &gt; li &gt; a {
    display: block;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.left_column ul.left_snav_ul {
    padding: 0;
    margin-top: 10px;
}

.left_column ul.left_snav_ul &gt; li {
    margin-bottom: 8px;
}

.left_column ul.left_snav_ul &gt; li &gt; a {
    display: block;
    padding: 8px 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555555;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.left_column ul.left_snav_ul &gt; li &gt; a:hover {
    background-color: #008938;
    color: #ffffff;
}

/* Left News */
.left_news {
    clear: both;
    margin: 0;
    padding: 0;
}

.left_news li {
    color: #545455;
    border-bottom: 1px dotted #dddddd;
    background: url(../images/li.png) no-repeat left 15px;
    line-height: 21px;
    padding: 10px 0px;
    padding-left: 14px;
}

.left_news li a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2F2F2F;
}

.left_news li a:hover {
    color: #008938;
}

/* Left Contact */
.left_contact {
    margin: 30px 0px 35px 0px;
}

.left_contact p {
    clear: both;
    line-height: 24px;
}

/* Page Banner */
.page_bg {
    height: 229px;
    margin-bottom: 0px;
}

/* Breadcrumbs */
.bread_bg {
    background-color: #f3f3f3;
}

.bread_nav {
    padding: 10px 0px;
}

.bread_nav span {
    color: #008938;
    padding-right: 6px;
}

.bread_nav a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2F2F2F;
}

.bread_nav a:hover {
    color: #008938;
}

/* Right Column */
.right_head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #2C3E50;
    line-height: 1.4;
    padding: 15px 0 10px;
    position: relative;
    border-bottom: 2px solid #008938;
    transition: color 0.3s ease;
    cursor: pointer;
}

.right_head h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f2b700;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.right_head h2:hover {
    color: #00682a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.right_head h2:hover::after {
    transform: scaleX(1);
}

.right_head h2 span {
    color: #008938;
    transition: color 0.3s ease;
}

.right_head h2:hover span {
    color: #f2b700;
}

.right_contents {
    clear: both;
    padding: 15px 0px;
    line-height: 28px;
    overflow: auto;
}

.right_contents_h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #434343;
    text-align: center;
    padding: 10px 0px;
}

.right_contents img {
    max-width: 840px;
}

/* Right News */
.right_new {
    clear: both;
    margin: 0;
    padding: 0px 0px 20px 0px;
}

.right_new li {
    color: #898989;
    background: url(../images/li.png) no-repeat left 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 12px 0px;
    padding-left: 13px;
    border-bottom: 1px dashed #e3e2e2;
}

.right_new li a {
    color: #2F2F2F;
}

.right_new li a:hover {
    color: #008938;
}

.right_new_time {
    float: right;
}

.relevant_new ul.right_new li {
    font-size: 14px;
}

/* Case Studies */
.case_list {
    clear: both;
    padding: 25px 0px 0px 0px;
    margin-right: -15px;
    margin-left: -15px;
}

.case_list2 {
    padding-top: 20px;
}

.case_img {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 270px;
}

.case_img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-height: 270px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.case_list2 div.case_img {
    min-height: 220px;
}

.case_title {
    text-align: center;
    height: 40px;
}

/* Pagination */
.page {
    clear: both;
    margin: 20px 0px;
    text-align: center;
}

.page a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border: #dbdbdb 1px solid;
    padding: 4px 9px;
    margin: 2px;
    margin-bottom: 5px;
    color: #31363c;
}

.page a:hover {
    border: #008938 1px solid;
    color: #ffffff;
    background-color: #008938;
}

.page .current {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border: #008938 1px solid;
    padding: 5px 9px;
    color: #ffffff;
    margin: 2px;
    background-color: #008938;
}

/* Product Detail */
.showpic_box, .proinfo_box {
    margin: 30px 0px 20px 0px;
}

.product_h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #cccccc;
}

.product_info {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.product_info p {
    line-height: 28px;
}

.product_btn {
    margin-top: 25px;
}

#pic-page {
    text-align: center;
    margin-top: 10px;
}

#pic-page a {
    margin: 0 2px;
}

#pic-page a img {
    width: 40px;
    padding: 2px;
    border: solid #ccc 1px;
    margin-bottom: 5px;
}

#pic-page a:hover img,
#pic-page a.active img {
    border: solid #008938 1px;
}

.product_con, .photo_con {
    clear: both;
    border-top: 1px dotted #a9a9a9;
    margin: 10px 0px 20px 0px;
    padding: 20px 0px 0px 0px;
    line-height: 26px;
    overflow: auto;
}

.product_con img, .photo_con img {
    max-width: 840px;
}

.list_related {
    margin-top: 50px;
}

.list_related div.product_img {
    min-height: 280px;
}

/* Buttons */
.grey-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0px;
    border: none;
    background-color: #E8E8E8;
}

.grey-btn:hover {
    background-color: #cccccc;
}

/* Feedback Form */
.feedback {
    margin-top: 50px;
}

.form-horizontal .form-group {
    margin-right: -10px;
    margin-left: -10px;
}

.codeimg {
    margin: 0px 0px -10px -18px;
}

/* Previous/Next */
.point {
    clear: both;
    margin: 20px 0px 40px 0px;
    padding-bottom: 40px;
    line-height: 22px;
}

.point span.to_prev, .point span.to_next {
    text-align: center;
}

.point span.to_prev a, .point span.to_next a {
    color: #008938;
}

.point span.to_prev a:hover, .point span.to_next a:hover {
    color: #ea042b;
}

/* Tags */
.tags {
    margin: 18px 0px 10px 0px;
}

.tags a {
    margin: 0px 5px 8px 0px;
}

.tags_list {
    padding: 5px 10px 100px 10px;
}

.tags_ul {
    margin-top: 0px;
}

.tags_ul li {
    line-height: 28px;
    margin-bottom: 8px;
    padding-bottom: 10px;
}

.tags_ul h3 {
    font-size: 14px;
    padding: 0;
    margin: 0;
    line-height: 20px;
}

.tags_ul p {
    font-size: 13px;
    padding: 0;
    margin: 0;
    color: #777777;
    line-height: 20px;
    padding-top: 8px;
}

/* Sitemap */
ul.ul_sitemap {
    margin: 30px 0px 40px 30px;
}

ul.ul_sitemap li {
    line-height: 26px;
    clear: both;
}

ul.ul_sitemap li a {
    color: #7d7d7d;
}

li.small_li_sitemap {
    clear: both;
    padding-left: 12px;
}

li.small_li2_sitemap {
    float: left;
    padding-left: 20px;
}

/* Footer Links */
.link_box {
    background-color: #ebebeb;
    padding: 20px 0px 10px 0px;
    text-align: center;
}

.link_box a {
    padding: 0px 0px 0px 10px;
}

.link_box a:last-child {
    border-right: 0px;
}

.link_box button {
    display: none;
}

.link_title {
    font-size: 13px;
    margin-right: -6px;
}

.link_title:after {
    content: "ï¼š";
}

/* Footer Tags */
.tags_box {
    background-color: #ebebeb;
    padding: 5px 0px 20px 0px;
    text-align: center;
}

.tags_box a {
    padding: 0px 2px 0px 8px;
}

.tags_box a:last-child {
    border-right: 0px;
}

.tags_box button {
    display: none;
}

.tags_title {
    font-size: 13px;
    margin-right: -6px;
}

.tags_title a {
    padding: 0px;
}

.tags_title:after {
    content: "ï¼š";
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 50px 0px 40px 0px;
    background-color: #f5f5f5;
}

.footer_contact {
    line-height: 28px;
}

.footer_icon {
    padding-top: 10px;
}

.footer_icon a:hover {
    text-decoration: none;
}

.footer_icon img {
    width: 40px;
    height: 40px;
    margin: 0px 8px 8px 0px;
}

/* Translate */
.translate {
    background-color: #005188;
}

.translate_btn {
    width: 130px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Tables */
table {
    margin-bottom: 10px;
    border-collapse: collapse;
    display: table;
}

td, th {
    padding: 5px 10px;
    border: 1px solid #DDD;
}

caption {
    border: 1px dashed #DDD;
    border-bottom: 0;
    padding: 3px;
    text-align: center;
}

th {
    border-top: 1px solid #BBB;
    background-color: #F7F7F7;
}

table tr.firstRow th {
    border-top-width: 2px;
}

.ue-table-interlace-color-single {
    background-color: #fcfcfc;
}

.ue-table-interlace-color-double {
    background-color: #f7faff;
}

td p {
    margin: 0;
    padding: 0;
}

/* Large Screens */
@media screen and (min-width: 769px) {
    .logo {
        margin-top: 20px;
        margin-bottom: 5px;
        max-width: 700px;
    }

    .navbar {
        margin: 0px;
        margin-top: 14px;
        border: none;
        background-color: #008938;
        min-height: 50px;
    }

    .navbar-nav &gt; li &gt; a {
        text-align: center;
        padding: 15px 30px;
    }

    .navbar-default .navbar-nav &gt; li &gt; .dropdown-menu {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .nav_small {
        background: #008938;
        padding: 10px 0;
        border-radius: 0;
        border: none;
    }

    .snav_small {
        top: 0;
        left: 100%;
        position: absolute;
        background: #008938;
        padding: 8px 0;
        border-radius: 0;
        border: none;
    }

    .snav_small &gt; li &gt; a {
        line-height: 26px;
        color: #ffffff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 13px;
    }

    .snav_small &gt; li &gt; a:hover {
        color: #ffffff;
        background-color: #f2b700;
    }

    .nav_small &gt; li:hover &gt; ul {
        z-index: 999;
        display: block;
    }

    .nav_small &gt; li &gt; a {
        line-height: 26px;
        color: #ffffff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 13px;
    }

    .nav_small &gt; li &gt; a:hover {
        color: #ffffff;
        background-color: #f2b700;
    }

    .dropdown-menu2 {
        position: absolute;
        left: 100%;
        top: 0;
        z-index: 22;
        display: none;
        width: 100%;
        background-color: #f2b700;
        padding-left: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu2 li {
        height: 37px;
        line-height: 37px;
        padding: 0 10px;
    }

    .dropdown-menu2 li a {
        color: #ffffff;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 13px;
        display: block;
    }

    .dropdown-menu2 li:hover {
        background-color: #008938;
    }

    .dropdown-menu2 li:hover a {
        color: #ffffff;
    }

    .dropdown-menu li.dropdown:hover .dropdown-menu2 {
        display: block !important;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-fixed-top ul.navbar-nav &gt; li &gt; a {
        padding: 15px 30px;
    }

    #app_menudown, #search_btn {
        display: none;
    }

    .mfoot_box {
        display: none;
    }
}

/* Small Screens */
@media screen and (max-width: 768px) {
    .logo {
        display: block;
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 20px;
        max-width: 550px;
    }

    #searchform {
        display: none;
    }

    .search_group {
        margin: 15px 0px;
    }

    #search_btn {
        float: right;
        margin-top: 7px;
        padding: 8px 13px;
        font-size: 17px;
        border-radius: 4px;
        color: #ffffff;
        background-color: #008938;
    }

    #search_btn:hover {
        background-color: #f2b700;
    }

    .navbar {
        margin: 0px;
        border: 0px;
        min-height: 50px;
        background-color: #008938;
    }

    .navbar-default .navbar-brand {
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 16px;
    }

    .navbar-default .navbar-brand:hover {
        color: #ffffff;
    }

    .navbar-toggle {
        border: none;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border: none;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #f2b700;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .navbar-default .navbar-nav &gt; li:last-child {
        border: none;
    }

    .navbar-default .navbar-nav &gt; li &gt; a,
    .navbar-default .navbar-nav .open .dropdown-menu &gt; li &gt; a {
        color: #ffffff;
        background-color: #008938;
        padding: 12px 20px;
    }

    .navbar-default .navbar-nav &gt; li &gt; a:hover,
    .navbar-default .navbar-nav &gt; li &gt; a:focus,
    .navbar-default .navbar-nav &gt; .active &gt; a,
    .navbar-default .navbar-nav &gt; .active &gt; a:hover,
    .navbar-default .navbar-nav &gt; .active &gt; a:focus,
    .navbar-default .navbar-nav &gt; .open &gt; a,
    .navbar-default .navbar-nav &gt; .open &gt; a:hover,
    .navbar-default .navbar-nav &gt; .open &gt; a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu &gt; li &gt; a:hover {
        background-color: #f2b700;
        color: #ffffff;
    }

    #app_menudown {
        position: absolute;
        top: 0px;
        right: 0px;
        font-size: 16px;
        color: #ffffff;
        background-color: #008938;
    }

    #app_menudown:hover {
        background-color: #f2b700;
    }

    .navbar-fixed-top {
        margin-top: 0px;
        opacity: 0.9;
    }

    .product_head h2 {
        margin-top: 30px;
        font-size: 25px;
    }

    .product_img,
    .product_list2 div.product_img,
    .related_list div.product_img {
        min-height: 250px;
    }

    .case_list2 div.case_img {
        min-height: 200px;
    }

    .about_img {
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .about_h3 {
        text-align: center;
        line-height: 28px;
        margin-top: 20px;
    }

    .about_p, .about_content {
        text-align: center;
    }

    .about_btn {
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 45px;
    }

    .news_head h2 {
        font-size: 25px;
        margin-top: 30px;
    }

    .news_img {
        min-height: 250px;
        margin-bottom: 20px;
    }

    .news_title, .news_desc {
        text-align: center;
    }

    .right_new_time, .news_time {
        display: none;
    }

    .page_bg {
        display: none;
    }

    .right_contents img,
    .product_con img,
    .photo_con img {
        max-width: 100%;
    }

    .right_contents_h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .feedback {
        margin-top: 20px;
    }

    .proinfo_box {
        margin-bottom: 80px;
    }

    #pic-page a img {
        width: 35px;
    }

    #cmsFloatPanel {
        display: none;
    }

    .point span.to_prev,
    .point span.to_next {
        text-align: left;
        padding-bottom: 8px;
    }

    footer {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .footer_contact {
        margin-bottom: 30px;
    }

    .footer_menu {
        margin-bottom: 20px;
    }

    .footer_menu_first {
        margin-bottom: 8px;
    }

    .link_box {
        padding-left: 7px;
    }

    .link_box a {
        display: block;
        border-right: 0px;
        padding: 4px 0px;
    }

    .link_title {
        display: block;
    }

    .link_title:after {
        content: "";
    }

    .link_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .link_box button:hover {
        color: #008938;
    }

    .link_list {
        display: none;
        padding-top: 7px;
    }

    .tags_box {
        padding-left: 7px;
        margin-bottom: 50px;
    }

    .tags_box a {
        display: block;
        border-right: 0px;
        padding: 4px 0px;
    }

    .tags_title {
        display: block;
    }

    .tags_title:after {
        content: "";
    }

    .tags_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .tags_box button:hover {
        color: #008938;
    }

    .tags_rows {
        display: none;
        padding-top: 7px;
    }

    .mfoot_box {
        background-color: #fafafa;
    }

    .mfoot_nav {
        width: 25%;
        float: left;
        background-color: #fafafa;
        text-align: center;
        color: #898989;
    }

    .mfoot_nav:hover {
        background-color: #e4e4e4;
        cursor: pointer;
    }

    .mfoot_nav a {
        color: #898989;
        display: block;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 12px;
    }

    .mfoot_nav a:hover {
        text-decoration: none;
    }

    .mfoot_nav span {
        display: block;
        padding: 3px 0px 0px 0px;
    }

    .mfoot_share {
        width: 200px;
        padding: 5px;
    }
}

@media screen and (max-width: 767px) {
    .copyright_p {
        display: none;
    }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .col-mm-1, .col-mm-2, .col-mm-3, .col-mm-4, .col-mm-5, .col-mm-6,
    .col-mm-7, .col-mm-8, .col-mm-9, .col-mm-10, .col-mm-11, .col-mm-12 {
        float: left;
    }

    .col-mm-12 { width: 100%; }
    .col-mm-11 { width: 91.66666667%; }
    .col-mm-10 { width: 83.33333333%; }
    .col-mm-9 { width: 75%; }
    .col-mm-8 { width: 66.66666667%; }
    .col-mm-7 { width: 58.33333333%; }
    .col-mm-6 { width: 50%; }
    .col-mm-5 { width: 41.66666667%; }
    .col-mm-4 { width: 33.33333333%; }
    .col-mm-3 { width: 25%; }
    .col-mm-2 { width: 16.66666667%; }
    .col-mm-1 { width: 8.33333333%; }
}</pre></body></html>