<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#pdMenu {
    padding: 0px; margin: 0px auto;
    width:100%;
    text-align:left;
}
#pdMenuM {
    margin: 0;
    padding: 0;
}
ul.MainPdMenu, ul.MainPdMenu ul { /* 取消ul預設的內縮及樣式 */
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.MainPdMenu {
    display: inline-block;
    font-family: '微軟正黑體';
    font-size: 18px;
}
ul.MainPdMenu li {
    position: relative;
    /*white-space: nowrap;*/ /*控制選單排列方式*/
    width: 108px;
    min-width: 108px;
    top: 5px;
}
ul.MainPdMenu &gt; li:last-child {
    border-right: none;
}
ul.MainPdMenu &gt; li {
    float: left; /* 只有第一層是靠左對齊*/
}
ul.MainPdMenu a {
    color: #333;
    display: block;
    padding: 0px;
    text-decoration: none;
    line-height: 30px;
}
ul.MainPdMenu a:hover { /* 滑鼠滑入按鈕變色*/
    color: #111;
}
ul.MainPdMenu ul li &gt; a { /* 滑鼠移入次選單上層按鈕保持變色*/
    color: #333;
}
ul.MainPdMenu ul li:hover &gt; a { /* 滑鼠移入次選單上層按鈕保持變色*/
    background-color: #f89090;
    color: #fff;
    font-weight:bold;
}
ul.MainPdMenu ul {
    border: #ccc 1px solid;
    background-color: #fff;
    position: absolute;
    z-index: 999;
    left: -1px;
    /*width: 100%;*/
    max-width: 210px;
    min-width: 210px;
    font-size: 15px;
}
ul.MainPdMenu ul li {
    margin: 0;
    padding: 0;
    width: 100%;
}
ul.MainPdMenu ul li a {
    line-height: 30px;
}
ul.MainPdMenu ul li:last-child {
    border-bottom: none;
}
ul.MainPdMenu ul ul { /*第三層以後的選單出現位置與第二層不同*/
    z-index: 999;
    /*top: 10px;*/
    left: 90%;
}
ul.MainPdMenu ul { /*隱藏次選單*/
    display: none;
    left: 0px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
ul.MainPdMenu li:hover &gt; ul { /* 滑鼠滑入展開次選單*/
    display: block;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    left: -1px;
    border-right: 5px;
}
ul.MainPdMenu li:hover &gt; ul ul { /* 滑鼠滑入之後、次選單之後的選單依舊隱藏*/
    left: 0px;
}
ul.MainPdMenu ul li:hover &gt; ul { /* 第二層之後的選單展開位置*/
    left: 90%;
}

/*mobilePdmenu  手機商品選單-----------------------------------------------------------------*/
#pdMenuM {
    width: 100%;
}

#pdMenuM ul {
    margin: 0;
    padding: 0;
}

#pdMenuM li {
    list-style: none;
}

.mPdmain {
    padding: 0px 0px 0px 52px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 15px;
}
.mPdmain a {
    color: #ddd;
    font-weight:normal;
}
.mPdmain:hover, .mPdmain div:hover, .mPdmain a:hover{
    color: #fff;
    background-color: #312a22;
}

ul.mPdsubs li a {
    display: block;
    padding: 5px 10px 0px 84px;
    background-color: #808080;
    font-size: 15px;
    color: #ddd;
    border-right: solid 10px #312a22;
}

ul.mPdsubs li a:hover {
    background-color: #312a22;
    color: #fff;
}
</pre></body></html>