/**
 * 下拉菜单样式 - 使用独立类名避免冲突
 */

#header .con .menu li.site-dropdown-parent {
    position: relative !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container {
    position: fixed !important;
    background: #000 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    min-width: 200px !important;
    width: auto !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    filter: alpha(opacity=0) !important;
    -webkit-transition: all 0.2s ease-in !important;
    -moz-transition: all 0.2s ease-in !important;
    -o-transition: all 0.2s ease-in !important;
    -ms-transition: all 0.2s ease-in !important;
    transition: all 0.2s ease-in !important;
    box-shadow: 0px 1px 3px #ccc !important;
}

#header .con .menu li.site-dropdown-parent:hover .site-dropdown-container {
    height: auto !important;
    max-height: 400px !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

#header .con .menu li.site-dropdown-parent:hover .site-dropdown-container .site-dropdown-header {
    border-top: 4px solid #ef7800 !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container .site-dropdown-header {
    padding-top: 15px !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container .site-dropdown-body {
    padding-bottom: 15px !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container .site-dropdown-row {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 30px !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container .site-dropdown-text {
    display: block !important;
    padding: 0 20px !important;
    text-align: left !important;
    margin: 0 !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 13px !important;
    color: #FFFFFF !important;
    font-weight: 100 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

#header .con .menu li.site-dropdown-parent .site-dropdown-container .site-dropdown-text:hover {
    color: #ef7800 !important;
}