﻿/**
 * top_menu_2.css
 * 商城前台(个人中心除外)顶部 css
 * @author som.haita <som.haita@booogo.com>
 * @createtime 2016-1-7
 * @update 
 * @updatetime 
 * @since 
 */

/*top 顶部*/
.top {
    width: 100%;
    *width: auto;
    height: 30px;
    line-height: 30px;
    background: #f8f8f8;
    padding: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #e7e7e7;
    font-family:simsun, serif;
    z-index:999;
}
.top .top-main {
    width:1200px;
    margin: 0 auto;
    background: #f8f8f8;
}
.top .top-main a {
    color: #666;
    transition: color 0.2s ease-in-out;
}
.top .top-main a:hover {
    color: #e40d14;
    text-decoration: none;
}
.top .top-main .top-left {
    float: left;
}
.top .top-main .top-left .lnk-welcome,
.top .top-main .top-left .city,
.top .top-main .top-left .lnk-login,
.top .top-main .top-left .lnk-reg,
.top .top-right .lnk-user-center,
.top .top-right .lnk-help-center {
    float: left;
}
.top .top-main .top-left .lnk-welcome {
    padding: 0 0 0 10px;
    transition: none;
    cursor: default;
    color: #666;
}
.top .top-main .top-left .city {
    position: relative;
    margin-left:-1px;
    padding-right: 10px;
    border-left:1px solid #f8f8f8;
    border-right:1px solid #f8f8f8;
}
.top .top-main .top-left .city:hover {
    background: #fff;
    border-left:1px solid #d7d7d7;
    border-right:1px solid #d7d7d7;
}
.top .top-main .top-left .city span{
    padding:0 10px;
    color:#666666;
    border-right:1px solid #e9e9e9;
}
.top .top-main .top-left .city .icon-angle-down {
    display:inline-block;
}
.top .top-main .top-left .city:hover .icon-angle-down {    
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform .1s ease-in 0s;
    -o-transition:-o-transform .1s ease-in 0s;
    transition: transform .1s ease-in 0s;
}
.top .top-main .top-left .city a {
    color: #666;
}
.top .top-main .top-left .city .subnav {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    width: 440px;
    /*height:300px;*/
	height:200px;
    padding: 10px 0 10px 10px;
    background: #fff;
    line-height: 1.2;
    border: 1px solid #d7d7d7;
    border-top-width: 0;
    overflow-y:auto;
    z-index: 999;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0,0,0,0.175)
}
.top .top-main .top-left .city .subnav strong {
    font-family:Arial;
}
.top .top-main .top-left .city .subnav ul {
    margin:5px 0;
	/*border-bottom:1px dotted #ccc;*/
}
.top .top-main .top-left .city .subnav li {
    float: left;
    width:60px;
    margin:0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.top .top-main .top-left .city .subnav a {
    display:inline-block;
    line-height:24px;
    padding:0 8px;
    color: #666;
}
.top .top-main .top-left .city .subnav a:hover {
    background:#f2f2f2;
    color: #e40d14;
}
.top .top-main .top-left .city .subnav a.current {
    background:#e40d14;
    color: #fff;
}
.top .top-main .top-left .city:hover .subnav {
    display: block;
}
/*顶部导航右边块*/
.top .top-main .top-right {
    float: right;
}
.top .top-main .top-right .dropdown-top {
    display: inline;
    float: left;
    height: 29px;
    padding: 0 10px;
    color: #666;
    min-width: 68px;
}
.top .top-main .top-right .dropdown-top:hover {
    color: #000;
    background-color: #fff;
}
.top .top-main .top-right .dropdown-top .icon-angle-down {
    display:inline-block;
}
.top .top-main .top-right .dropdown-top:hover .icon-angle-down {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform .1s ease-in 0s;
    -o-transition:-o-transform .1s ease-in 0s;
    transition: transform .1s ease-in 0s;
}
.top .top-main .top-right .dropdown-top:hover .dropdown-menu {
    display: block;
}
.top .top-main .top-right .dropdown-top a {
    color: #666;
}
.top .top-main .top-right .dropdown-top a:hover {
    color: #e40d14;
}
/*网站导航*/
.platform-nav {
    width: 1200px;
    padding: 20px 0;
}
.platform-nav > li {
    float: left;
    width: 25%;
    height: 100%;
    border-right: 1px solid #d7d7d7;
}
.platform-nav > li h1 {
    margin: 0 0 15px;
    padding: 0 0 0 10px;
    font-size: 14px;
    font-weight: 700;
}
.platform-nav > li ul {
    float: left;
    width: 33.3%;
    padding: 0 0 0 10px;
    line-height: 24px;
}
.platform-nav > li a:hover {
    text-decoration: underline !important;
}
.li-space {
    float: left;
    display: inline;
    width: 1px;
    height: 14px;
    margin: 8px 8px 0;
    overflow: hidden;
    background-color: #ddd;
}
