<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --box-main-width: 980px;
    --menu-float-item-bg: #077D5F; /* å·¦å³æµ®åŠ¨å­èœå•é¡¹èƒŒæ™¯è‰² */
}

/* ====== ä»¥ä¸‹2é¡¹é€‚é…å…¨éƒ¨å…ƒç´&nbsp; =============== */
*::after, *::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* border-boxï¼šå…ƒç´&nbsp;çš„paddingå’Œborderè¢«åŒ…å«åœ¨å®šä¹‰çš„widthå’Œheightä¹‹å†…ï¼›é»˜è®¤å€¼content-boxåˆ™ç›¸å */
    scroll-behavior: smooth; /* æŽ§åˆ¶é¡µé¢æ»šåŠ¨çš„å¹³æ»‘åº¦ï¼Œä½¿é¡µé¢æ»šåŠ¨æ›´åŠ&nbsp;è‡ªç„¶å’Œæµç•…ã€‚ */
}
/* ========================================== */

html {
    width: 100%;
    font-size: 100px; /* å®šä¹‰1rem=100pxã€‚å…¶ä½™æ&nbsp;‡ç­¾ç”¨remå®šä¹‰font-sizeéƒ½æ˜¯htmlæ&nbsp;‡ç­¾çš„ç›¸å¯¹å•ä½ã€‚ */
}


/*@font-face {
    font-family: 'Source Han Sans CN';
    src: url('/static/font/SourceHanSansCN/SourceHanSansSC-Normal.otf') format('truetype');
}*/

body {
    width: 100%;
    color: #444;
    font-family: 'Microsoft YaHei', sans-serif;
    /*font-family: 'Source Han Sans CN', sans-serif; æ€æºé»‘ä½“*/
    /* ç¦ç”¨ç½‘é¡µå†…å®¹å¤åˆ¶
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}
/*ç¦ç”¨ç½‘é¡µå†…å®¹å¤åˆ¶
    -webkit-touch-callout: none;  iOS Safari 
    -webkit-user-select: none;  Safari 
    -khtml-user-select: none;  Konqueror HTML 
    -moz-user-select: none;  Old versions of Firefox 
    -ms-user-select: none;  Internet Explorer/Edge 
    user-select: none;  Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox 
*/


a {
    color: #444;
    text-decoration: none; /*åŽ»æŽ‰ä¸‹åˆ’çº¿*/
}

    /* æœªè®¿é—®é“¾æŽ¥ã€ å·²è®¿é—®é“¾æŽ¥*/
    a:link, a:visited {
        color: #444;
    }

    a:hover {
        color: #0391DB; /*é¼&nbsp;æ&nbsp;‡åˆ’è¿‡:æµ…è“*/
    }

    a:active {
        color: red; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹:çº¢è‰²*/
    }

hr {
    height: 1px;
    border: none;
    border-bottom: 1px dotted #ccc;
}

h1 {
    margin: 10px auto;
    line-height: 0.32rem;
    font-size: 0.22rem;
    font-weight: normal;
    color: #555;
    text-align: center;
}

h2 {
    margin: 20px auto 10px auto;
    line-height: 0.3rem;
    font-size: 0.2rem;
    font-weight: normal;
    color: #555;
}

h3 {
    margin: 15px auto 5px auto;
    line-height: 0.26rem;
    font-size: 0.16rem;
    font-weight: bold;
    color: #666;
}

h4 {
    margin: 10px auto 5px auto;
    line-height: 0.25rem;
    font-size: 0.15rem;
    font-weight: bold;
}

div, p {
    font-size: 0.15rem;
    line-height: 0.25rem;
    text-align: justify;
}
p {
    margin: 0 auto 10px auto;
}

ul small {
    margin-left: 18px;
    color: gray;
}

li {
    font-size: 0.15rem;
    line-height: 0.25rem;
    list-style: none;
}

/* liå«å¤šè¡Œæ–‡å­— */
.ul-liMultiLine li {
    text-align: justify;
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse; /*è¾¹çº¿åˆå¹¶*/
}

th {
    font-size: 0.15rem;
    line-height: 0.25rem;
    display: table-cell; /*ä¸Žä¸‹å¥å®žçŽ°åž‚ç›´å±…ä¸­*/
    vertical-align: middle; /* åž‚ç›´å±…ä¸­ */
    text-align: center; /* æ°´å¹³å±…ä¸­ */
}

td {
    padding: 0 3px;
    font-size: 0.15rem;
    line-height: 0.25rem;
    display: table-cell; /*ä¸Žä¸‹å¥å®žçŽ°åž‚ç›´å±…ä¸­*/
    vertical-align: middle; /* åž‚ç›´å±…ä¸­ */
}
/* ================================================== */


.box-main-bg {
    margin: 10px auto 0 auto;
    padding: 35px 0;
    width: 100%;
    background-color: #F9F9F9;
}

.box-main {
    margin: 0 auto;
    padding: 50px 80px;
    width: var(--box-main-width);
    background-color: #fff;
    box-shadow: 0px 0px 8px 4px #ccc;
    min-height: 450px;
}


/* ==== æ™®é€šç½‘é¡µçš„ header ï¼ŒåŒ…æ‹¬å•è¡Œèœå•ã€‚é¦–é¡µé‡å†™header ==== */
header {
    margin: 0 auto;
    width: 100%;
    height: 535px; /*èƒŒæ™¯å›¾çš„é«˜åº¦450pxï¼Œå¯¼èˆªèœå•é«˜åº¦85px*/
    background: url(/images/banner/b.jpg) no-repeat bottom; /*å›¾ç‰‡ height:450px */
    background-size: initial;
    text-align: center;
}
/* ================================================== */


/* == ç½‘ç«™ä¸»é¢˜ï¼ˆç½‘é¡µå¤´éƒ¨bannerä¸Šçš„åŠé€æ˜Žç°åº•ç™½å­—ï¼‰ == */
.box-site-title {
    margin: 0 auto;
    padding: 0;
    height: 450px;
    width: 100%;
    /* ä»¥ä¸‹è¯­å¥ï¼šå®žçŽ°å­å…ƒç´&nbsp;çºµå‘å’Œæ¨ªå‘éƒ½å±…ä¸­ */
    display: flex; /* è®¾ç½®ä¸ºå¼¹æ€§å®¹å™¨ï¼Œä¸Žä¸‹é¢2æ¡è¯­å¥å®žçŽ°å†…å®¹åž‚ç›´å’Œæ¨ªå‘å±…ä¸­ã€‚è¿™ä¼šå¯¼è‡´å­å…ƒç´&nbsp;çš„heightå’Œwidthå±žæ€§è¢«ç¦æ­¢ */
    justify-content: center; /* è®¾ç½®å¼¹æ€§ç›’å­ä¸­å…ƒç´&nbsp;åœ¨ä¸»è½´ï¼ˆæ¨ªè½´ï¼‰æ–¹å‘ä¸Šçš„å¯¹é½æ–¹å¼ */
    align-items: center; /* è®¾ç½®å¼¹æ€§ç›’å­ä¸­å…ƒç´&nbsp;åœ¨ä¾§è½´ï¼ˆçºµè½´ï¼‰æ–¹å‘ä¸Šçš„å¯¹é½æ–¹å¼ */
    /* flex-wrap: wrap;  è®¾ç½®å¼¹æ€§ç›’å­ä¸­å…ƒç´&nbsp;è¶…å‡ºçˆ¶å®¹å™¨æ—¶è‡ªåŠ¨æ¢è¡Œ */
    z-index: 0;
}

    .box-site-title div {
        margin: 0 auto;
        padding: 30px 0 20px 0;
        width: 1200px;
        max-width: 100%;
        font-weight: normal;
        text-align: center;
        background: rgba(89, 93, 94, 0.5);
        color: #fff;
    }

    .box-site-title h2 {
        margin: 0 auto;
        line-height: 0.70rem;
        font-size: 0.50rem;
        letter-spacing: 1px;
        font-weight: bold;
        color: #fff;
    }

    .box-site-title h3 { /*è‹±æ–‡æ&nbsp;‡é¢˜*/
        margin: 0 auto;
        line-height: 0.40rem;
        font-size: 0.25rem;
        font-weight: normal;
        color: #fff;
    }

    .box-site-title h4 {
        margin: 0 auto;
        line-height: 0.60rem;
        font-size: 0.40rem;
        font-weight: normal;
        letter-spacing: 1px;
        color: #fff;
    }

    .box-site-title h5 {
        margin: 0 auto;
        line-height: 0.50rem;
        font-size: 0.35rem;
        font-weight: normal;
        letter-spacing: 1px;
        color: #fff;
    }
/* ================================================== */


/* ==== ä¾›å„å­ç½‘é¡µæ&nbsp;å¤´å›¾ç‰‡ä¸‹çš„ç½‘é¡µå¯¼èˆª ============= */
.map-nav {
    margin: 10px auto;
    width: var(--box-main-width);
    height: 0.20rem;
    line-height: 0.20rem;
    font-size: 0.14rem;
    font-weight: normal;
    color: #666;
}

    .map-nav a {
        color: #666;
        text-decoration: none
    }

        .map-nav a:link, .map-nav a:visited {
            color: #666;
        }

        .map-nav a:hover { /*é¼&nbsp;æ&nbsp;‡åˆ’è¿‡:æµ…è“*/
            color: #0391DB;
        }

        .map-nav a:active {
            color: red; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹:çº¢è‰²*/
        }

    .map-nav span {
        float: right;
    }
/* ================================================= */


/*  ============= å¯¼èˆªèœå•(for pc) ================== */
.menu-main {
    margin: 0 auto;
    padding: 0;
    width: auto; /* é«˜åº¦ç”±headerå†³å®š */
    text-align: center;
    background-color: transparent;
    z-index: 9999; /* å¿…é¡»æµ®åœ¨æœ€ä¸Šå±‚  */
}
    /* menu-main ç”¨ tableï¼Œä¸éœ€è¦ä¸‹é¢2æ¡è¯­å¥ï¼Œç”¨äº†åè€Œå¯¼è‡´topæœ‰10pxå¤šç©ºç™½ */
    /* display: inline-block; ä½¿å…¶å®½åº¦æ&nbsp;¹æ®å†…å®¹è‡ªé€‚åº” */
    /* white-space: nowrap; ç¦æ­¢æ–‡æœ¬æ¢è¡Œ */

    /* logoå›¾ç‰‡å®¹å™¨ */
    .menu-main th {
        margin: 0 auto;
        padding: 0;
        width: auto;
        text-align: center;
        vertical-align: middle;
    }

    /* logo */
    .menu-main img {
        margin: 0 auto;
        height: 85px;
    }

    .menu-main td {
        margin: 0 auto;
        padding: 0 0 15px 0;
        width: auto;
        text-align: center;
        vertical-align: bottom;
    }


    /*å¯¼èˆªé“¾æŽ¥æ&nbsp;·å¼*/
    .menu-main td a {
        padding: 10px 20px;
        font-size: 15px;
        color: #333;
        text-decoration: none; /*åŽ»æŽ‰ä¸‹åˆ’çº¿*/
        /*display: inline-block;è®¾ç½®å†…è”å—çº§å…ƒç´&nbsp;*/
    }

        .menu-main td a:link, .menu-main td a:visited {
            color: #333;
        }

        .menu-main td a:hover { /*è®¾ç½®é¼&nbsp;æ&nbsp;‡åˆ’è¿‡:å‰æ™¯è‰²å’ŒèƒŒæ™¯è‰²*/
            color: #fff;
            background: rgba(102,102,102,0.8); /*##666;*/
        }

        .menu-main td a:active {
            color: #FFFF99; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹å­—ä½“é¢œè‰²:æµ…é»„*/
        }

.menu-sub { /*ç»™ä¸‹æ‹‰æ¡†è®¾ç½®å®šä½*/
    position: relative;
    width: auto;
    display: inline-block;
}
    /*å½“ä¸‹æ‹‰æŒ‰æ‰­åˆ’è¿‡æ—¶ï¼Œåˆ™ä¸‹æ‹‰å†…å®¹æ˜¾ç¤º*/
    .menu-sub:hover .menu-sub-list {
        display: block;
    }

.menu-sub-list { /*ä¸‹æ‹‰å†…å®¹è®¾ç½®å®šä½*/
    margin: 5px auto 0 auto;
    display: none;
    position: absolute;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
}

    .menu-sub-list a { /*å°†ä¸‹æ‹‰å†…å®¹æ¡†é‡Œçš„aæ&nbsp;‡ç­¾è®¾ç½®å—çº§å…ƒç´&nbsp;å’Œå­—ä½“é¢œè‰²*/
        margin: 0 auto;
        color: #000;
        text-align: center;
        border-top: solid 1px #fff;
        background: rgba(221,221,221,0.8); /*#ddd;*/
        /* ä»¥ä¸‹ä¸‰è¡Œä¿è¯æ&nbsp;¼å¼æ•´é½ç¾Žè§‚ */
        display: block;
        white-space: nowrap; /* ä¸æ¢è¡Œ */
        min-width: 130px; /* æŒ‰å·²çŸ¥æœ€é•¿çš„å­èœå•é¡¹ï¼Œç»Ÿä¸€å®½åº¦*/
    }
        /*è®¾ç½®ä¸‹æ‹‰å†…å®¹æ¡†é‡Œçš„aæ&nbsp;‡ç­¾èƒŒæ™¯*/
        .menu-sub-list a:hover {
            border: none;
        }
/* ================================================== */


/* ======= é¡µè„š ==================================== */
footer {
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
    background-color: #000;
    text-align: center;
}

    footer table {
        margin: 0 auto;
        width: auto; /*è‡ªé€‚åº”å®½åº¦*/
        text-align: center;
    }

    /* ä¼ä¸šLOGOå®¹å™¨ */
    footer th {
        height:auto;
        line-height: normal;
    }

        /* ä¼ä¸šLOGO */
        footer th img {
            max-height: 90px;
            margin-right:5px;
        }

    footer td {
        width: auto; /*è‡ªé€‚åº”å®½åº¦*/
        font-size: 13px;
        line-height: 24px;
        text-align: center;
        color: #939393;
    }
    
        /* å„ç±»å¤‡æ¡ˆç­‰å°å›¾æ&nbsp;‡ */
        footer td img {
            max-height: 18px;
            max-width: 18px;
            margin-right: 2px;
        }

        footer td a:link, footer td a:visited {
            color: #939393;
            text-decoration: none;
        }

        footer td a:hover {
            color: #0391DB;
            text-decoration: none;
        }

        footer td a:active {
            color: #939393;
            text-decoration: none;
        }

/* ================================================== */


/* ======= é¡µå°¾å¹¿å‘Š ================================= */
.adv-footer-shell {
    margin: 30px auto 0 auto;
    padding: 40px 80px;
    width: var(--box-main-width);
    background-color: #fafafa;
    box-shadow: 0 0 8px 4px #ccc;
}
    /*ç‰ˆæƒä¸Žå…è´£å£°æ˜Ž*/
    .adv-footer-shell p b {
        font-size:16px;
    }

/* ==== å†…åµŒdivä¸ºå¹¿å‘Šéƒ¨åˆ† ======================= */
/* ç”±äºŽå¹¿å‘Šæ–‡å­—ä¸Šé¢çš„ Title.html çš„ div çš„ css ç”¨idå®šä¹‰ï¼Œä¸ºé¿å…å…ƒç´&nbsp;å®šä¹‰å†²çªï¼Œå¹¿å‘Šæ®µä¹Ÿå¿…é¡»ç”¨idå®šä¹‰ */
#adv-footer p {
    margin: 10px auto;
    font-size: 0.15rem;
    line-height: 0.25rem;
}

#adv-footer h2 {
    margin: 10px auto;
    font-weight: normal;
    font-size: 0.15rem;
    line-height: 0.25rem;
}

#adv-footer a, #adv-footer a:visited {
    color: #21A3AD;
}

    #adv-footer a:hover {
        color: red;
    }
/* ================================================== */


/* ======= é¡µå†…é”šç‚¹ ================================= */
/*  é”šç‚¹å®šä¹‰ä¸å«æ–‡å­—ï¼Œä»¥å…å&nbsp;ä½æˆ–æ˜¾ç¤ºï¼Œä»…å®šä¹‰nameæˆ–idï¼ˆé¡»å”¯ä¸€æ€§ï¼‰ï¼Œ
    å¦‚ï¼š&lt;a class="page-inner-anchor" name="i-StandPrices"&gt;&lt;/a&gt; 
    é‚€è¯·å‡½ï¼šé”šç‚¹å†…ç½®åœ¨å„åŒ…å«æ–‡ä»¶ï¼Œä¾¿äºŽæµ®åŠ¨ç›®å½•èœå•å¯¼èˆªï¼›
    æ™®é€šé¡µï¼šæ¯”å¦‚è¿”å›žé¡µå¤´é¡¶éƒ¨(ToTop -&gt; PageHeader) 
*/
.page-inner-anchor {
    float: right;
    margin: -60px 0 0 0; /*ä¸å&nbsp;è¡Œé«˜ã€‚å¯æ”¾åœ¨H2æ&nbsp;‡ç­¾ä¸‹ï¼Œä¸å›&nbsp;ä¸Šæ–‡å†…å®¹æµ®åŠ¨æ€»é«˜åº¦ç”¨ display:inline-block;æŽ§åˆ¶è€Œå¯¼è‡´å®šä½ä¸å‡†ç¡®; */
    font-size: 10px;
    color: #fff;
}

    .page-inner-anchor a:link, .page-inner-anchor a:visited, .page-inner-anchor a:active {
        color: #fff;
        text-decoration: none;
    }

    .page-inner-anchor a:hover {
        color: #fff;
        text-decoration: none;
    }
/* ================================================== */


/* ===== è¿”å›žé¡µé¡¶/é¡µè„šï¼šå¯¹åº”é”šç‚¹åœ¨../include/menu.html =========== */
#toTop {
    position: fixed;
    width: 100px;
    right: 10px;
    bottom: 10px;
    text-align: center;
    background: rgba(0,0,0,0.3);
    clip-path: ellipse(42px 25px); /*æ¤­åœ†å½¢*/
    /*  padding: 17px 20px;
        clip-path:circle(0.3rem); åœ†å½¢
    */
}

    #toTop a {
        font-size:28px;
        font-weight: normal;
        color: #EFEFEF;
        display: block;
    }

        #toTop a:visited {
            color: #EFEFEF;
        }

        #toTop a:first-child {
            margin-bottom: 8px;
        }
/* ==================================================== */


/* =======å·¦ã€å³ä¾§æµ®åŠ¨çª—å£ï¼šäºŒçº§èœå•ã€‚é¦–é¡µä¹Ÿç”¨ ======== */
ul.menu-float-right, ul.menu-float-left {
    position: fixed;
    top:85px;
    bottom: auto;
    width: 150px;
    padding: 6px 8px;
    background-color: rgba(227,227,227,0.85); /*#E3E3E3;*/
    border-radius: 7px;
    text-align: center;
    z-index: 999;
}

ul.menu-float-right {
    right: 10px;
}

ul.menu-float-left {
    left: 10px;
}

ul.menu-float-right li, ul.menu-float-left li {
    list-style: none;
    margin: 6px 0;
    padding: 0;
}

ul.menu-float-right img, ul.menu-float-left img {
    margin: -3px 0;
    padding: 0;
    height: 132px;
    width: 132px;
}

ul.menu-float-right p, ul.menu-float-left p {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    /* ä»¥ä¸‹4å¥ï¼šå®žçŽ°æ–‡å­—çºµå‘å’Œæ¨ªå‘éƒ½å±…ä¸­ï¼Œä¸”æ¨ªå‘å&nbsp;æ»¡ç©ºé—´ï¼Œå›&nbsp;width:100%æ²¡ç”¨ã€‚ */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
    /* ç›®å½• æˆ– å­æ&nbsp;‡é¢˜ */
    ul.menu-float-right span, ul.menu-float-left span {
        margin: 0 auto;
        padding: 5px 0;
        font-size: 15px;
        color: #fff;
        background-color:rgba(229,128,0,0.85); /*#e58000;*/
        /* ä»¥ä¸‹4å¥ï¼šå®žçŽ°æ–‡å­—çºµå‘å’Œæ¨ªå‘éƒ½å±…ä¸­ï¼Œä¸”æ¨ªå‘å&nbsp;æ»¡ç©ºé—´ï¼Œå›&nbsp;width:100%æ²¡ç”¨ã€‚ */
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    ul.menu-float-right a, ul.menu-float-left a {
        margin: 0 auto;
        padding: 7px 0 5px 0;
        box-sizing: border-box; /* æ˜¯çš„è¾¹çº¿åœ¨æ¡†å†…ï¼Œä¸å&nbsp;å¤–ä½ */
        border-bottom: solid 2px transparent; /* é…åˆa:hover çš„æ•ˆæžœ */
        line-height: 20px;
        font-size: 14px;
        letter-spacing:1px;
        color: #fff;
        background-color: var(--menu-float-item-bg);
        opacity:0.85;
        /* ä»¥ä¸‹4å¥ï¼šå®žçŽ°æ–‡å­—çºµå‘å’Œæ¨ªå‘éƒ½å±…ä¸­ï¼Œä¸”æ¨ªå‘å&nbsp;æ»¡ç©ºé—´ï¼Œå›&nbsp;width:100%æ²¡ç”¨ã€‚ */
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        ul.menu-float-right a:link, ul.menu-float-right a:visited, ul.menu-float-left a:link, ul.menu-float-left a:visited {
            color: #fff;
        }

        ul.menu-float-right a:hover, ul.menu-float-left a:hover {
            color: #fff;
            /*background-color: rgba(0,128,0,0.8);*/
            opacity: 1;
            border-bottom: solid 2px #FFD800;
        }

        ul.menu-float-right a:active, ul.menu-float-left a:active {
            color: #FFD800; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹:æ˜Žé»„è‰²*/
        }
/* ================================================= */


/* ===== é¢„é˜²å›¾ç‰‡æ’‘ç&nbsp;´å®¹å™¨ ========================== */
.box-main img {
    max-width:100%;
    max-height:100%;
}
/* ================================================= */

/* ===== å›¾ç‰‡å±…ä¸­ ================================== */
.img-center {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

    .img-center img {
        max-width: 100%;
    }

    .img-center p {
        margin: 0;
        color: gray;
        font-size: 0.14rem;
        line-height: 0.20rem;
        text-align: center;
    }
/* ================================================== */


/* ===== å›¾ç‰‡éšå®¹å™¨è‡ªåŠ¨å®½åº¦ ========================= */
.img-auto-width {
    margin: 0 auto;
    width: 100%;
}

    .img-auto-width img {
        width: 100%;
        height: auto;
    }

    .img-auto-width p {
        margin: 0;
        font-size: 0.14rem;
        line-height: 0.20rem;
        color: gray;
        text-align: right;
    }
/* ================================================== */


/* ===== ä»…åœ¨ç§»åŠ¨ç«¯æ˜¾ç¤ºçš„å›¾ç‰‡ï¼Œéšå®¹å™¨è‡ªåŠ¨å®½åº¦ ======= */
.img-mob {
    display: none; /* é»˜è®¤PCæ®µä¸æ˜¾ç¤º */
    margin: 0 auto;
    width: 100%;
    text-align: left;
}
    .img-mob img {
        max-width: 100%;
    }
/* ================================================== */


/* ===== å›¾ç‰‡éšå®¹å™¨è‡ªåŠ¨é“ºæ»¡ ========================= */
.img-auto-fit {
    margin: 0 auto;
    width: 100%;
}

    .img-auto-fit img {
        object-fit: cover; /* CSSçš„æ–°å±žæ€§ï¼šå°†å›¾ç‰‡ç¼©æ”¾å¹¶åˆ‡å‰²ï¼Œä»¥è¾¾åˆ°ç­‰æ¯”ä¾‹çš„å¡«å……æ•ˆæžœ */
        width: 100%;
        height: 100%;
    }

    .img-auto-fit p {
        margin: 0;
        color: gray;
        font-size: 0.14rem;
        line-height: 0.20rem;
        text-align: right;
    }
/* ================================================== */


/* ===ä¸Šä¸‹é¡µå¯¼èˆªï¼ˆå±•åŽæŠ¥å‘Šã€æ–°é—»ã€èµ„è®¯ç­‰é¡µå…±ç”¨ï¼‰==== */
.ul-obj-nav {
    margin: 10px auto 0 auto;
    padding: 0;
    width: var(--box-main-width);
}
    .ul-obj-nav li {
        margin: 0 auto;
        list-style: none;
        font-size: 14px;
        line-height: 28px;
    }
    /*é“¾æŽ¥*/
    .ul-obj-nav a:link, .ul-obj-nav a:visited {
        color: #444;
        text-decoration: none;
    }
    .ul-obj-nav a:hover {
        color: #0391DB;
        text-decoration: none;
    }
    .ul-obj-nav a:active {
        color: red;
        text-decoration: none;
    }
/* ================================================= */


/*  === åˆ†é¡µå¯¼èˆªï¼ˆå±•åŽæŠ¥å‘Šã€æ–°é—»ã€èµ„è®¯ç­‰åˆ—è¡¨å…±ç”¨ï¼‰== */
.box-list-nav {
    margin: 20px auto;
    text-align: center;
    width: var(--box-main-width);
    display: block;
}
    .box-list-nav span {
        border: 1px solid #ccc;
        text-align: center;
        line-height: 28px;
        padding: 5px 10px;
        margin: 0 5px;
    }
    .box-list-nav select {
        width: 60px;
        height: 26px;
        padding: 0 1%;
    }
    .box-list-nav option {
        text-align: center;
    }
    .box-list-nav a {
        color: #444;
        text-decoration: none; /*åŽ»æŽ‰ä¸‹åˆ’çº¿*/
    }
        .box-list-nav a:link, .box-list-nav a:visited {
            color: #444;
        }
        .box-list-nav a:hover { /*é¼&nbsp;æ&nbsp;‡åˆ’è¿‡:æµ…è“*/
            color: #0391DB;
        }
        .box-list-nav a:active {
            color: red; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹:çº¢è‰²*/
        }
/* ================================================= */


/*  ============= å¯¼èˆªèœå•(for mob) ================ */
.menu-mob {
    margin: 10px auto;
    padding: 0 20px;
    width: 100%;
}

.menu-mob ul {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.menu-mob li {
    float: left;
    margin: 2px 5px;
    padding: 4px;
    list-style: none;
    min-width: 95px;
}
/*å¯¼èˆªé“¾æŽ¥æ&nbsp;·å¼*/
.menu-mob a {
    margin: 0 auto;
    padding: 4px 8px;
    border-bottom: solid 3px #ccc; /* é…åˆa:hover çš„æ•ˆæžœ */
    text-decoration: none; /*åŽ»æŽ‰ä¸‹åˆ’çº¿*/
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    background-color: #077D5F;
    opacity: 0.85;
    /* ä»¥ä¸‹4å¥ï¼šå®žçŽ°æ–‡å­—çºµå‘å’Œæ¨ªå‘éƒ½å±…ä¸­ï¼Œä¸”æ¨ªå‘å&nbsp;æ»¡ç©ºé—´ï¼Œå›&nbsp;width:100%æ²¡ç”¨ã€‚ */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .menu-mob a:link, .menu-mob a:visited {
        color: #fff;
    }

    .menu-mob a:hover { /*è®¾ç½®é¼&nbsp;æ&nbsp;‡åˆ’è¿‡:å‰æ™¯è‰²å’ŒèƒŒæ™¯è‰²*/
        color: #fff;
        opacity: 1;
        border-bottom: solid 3px #FFD800;
    }

    .menu-mob a:active {
        color: #0391DB; /*é¼&nbsp;æ&nbsp;‡æŒ‰ä¸‹ï¼Œå­—ä½“é¢œè‰²:æµ…è“*/
    }

.menu-mob h2 {
    margin: 5px auto;
    line-height: 24px;
    font-size: 17px;
    font-weight: normal;
    color: #444;
    border-bottom: solid 1px #ccc;
}
/* ================================================= */


/* =========== ç§»åŠ¨è®¾å¤‡çš„å¿«æ·å¯¼èˆªèœå•æŒ‰é’® ========== */
#menu-mob-btn {
    position: fixed;
    width: 80px;
    bottom: 0;
    right: 5px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 20px 15px;
    clip-path: ellipse(35px 20px); /*æ¤­åœ†å½¢*/
    display: none;
}

    #menu-mob-btn a {
        font-size: 0.16rem;
        font-weight: normal;
        color: #fff;
        display: block;
    }
/* ================================================= */




/* 
 *  å¯¹äºŽç§»åŠ¨è®¾å¤‡ï¼Œpxæ˜¯æŠ½è±¡å•ä½ï¼ˆå¯¹åº”ç”µè„‘æ˜¾ç¤ºå™¨å¯èƒ½æ˜¯2pxåˆ°30pxç‰©ç†åƒç´&nbsp;ä¸ç­‰ï¼‰ï¼Œä¸€èˆ¬ç§»åŠ¨è®¾å¤‡çš„æµè§ˆå™¨ä¸º980pxï¼ŒBlackBerryã€IEä¸º1024pxã€‚
 *  ä»¥ä¸‹cssç±»éƒ½åœ¨æœ¬æ–‡æ¡£å®šä¹‰çš„ï¼Œä¸ä¼šåœ¨å…·ä½“åº”ç”¨ä¸­å¢žæ·»å±žæ€§ï¼Œå¯ä»¥ç›´æŽ¥åœ¨æ–‡æœ«å®šä¹‰å…¶ç›¸åº”çš„ç§»åŠ¨ç‰ˆå¼æ&nbsp;·ï¼Œä»¥æ±‚åœ¨ç§»åŠ¨ç«¯å°½å¿«å“åº”
*/
@media only screen and (max-width: 840px) {
    :root {
        --box-main-width: 100%;
    }

    header, .menu-float-left, .menu-float-right, #toTop, footer table {
        display: none; /*éšè—*/
    }

    footer {
        padding: 0;
    }

    /*ç§»åŠ¨ç‰ˆèœå•é“¾æŽ¥æŒ‰é’®*/
    #menu-mob-btn {
        display: block;
    }

    .box-main-bg {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .box-main {
        margin: 0 auto;
        padding: 5px 10px;
        width: 100%;
        min-height: 200px;
        height: auto;
        border: none;
        box-shadow: none;
    }

    .adv-footer-shell {
        width: 100%;
        padding: 20px 10px 10px 10px;
    }


    /* ç§»åŠ¨ç«¯æ˜¾ç¤ºæ˜¾ç¤º */
    .img-mob {
        display: inline-block;
    }

    /*åˆ†é¡µå¯¼èˆªï¼ˆå±•åŽæŠ¥å‘Šã€æ–°é—»ã€å’¨è¯¢ç­‰çš„liståˆ—è¡¨é¡µï¼‰*/
    .box-list-nav {
        line-height: 40px;
    }
}</pre></body></html>