.top-wrapper {
    position: fixed;
    background-color: rgba(34,34,34,0.9);
    height: 60px;
    box-shadow: 0 2px 7px rgba(49, 49, 49, 0.5);
    z-index: 9999999999;
}
.top-holder-block {
    min-height: 60px;
    background-color: transparent;
}

.ui-top-nav {
    padding: 0;
    margin: 0;
}
.ui-top-nav .ui-list-item {
    text-align: center;
}
.ui-top-nav > .ui-list-item > a {
    color: #ccc;
    line-height: 60px;
    font-size: 14px;
    height: 60px;
    padding: 0 18px;
    margin: 0;
}
.ui-top-nav > .ui-list-item > a:hover {
    text-decoration: none;
    color: #f7f7f7 !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
.ui-top-nav.ui-list-left > .ui-list-item > a:hover{
    padding: 0 26px;

}
/*头部被选中-默认选种颜色为蓝色*/
.ui-top-nav > .ui-list-item .li-selected {
    color: #f7f7f7 !important;
    background-color: #01a0e2;
    padding: 0 26px;
}

/*政策的选种颜色*/
.ui-top-nav > .ui-list-item .li-selected-policy {
    background-color: #c02632;
}

/*创业风采选中颜色*/
.ui-top-nav > .ui-list-item .li-selected-venture {
    background-color: #4bb610;
}

/*活动选种颜色*/
.ui-top-nav > .ui-list-item .li-selected-activity {
    background-color: #7B2EBC;
}

.ui-top-bg {
    margin-top: -11px;
    width: 100%;
    height: 62px;
    background: url(../img/top-bg-notice.png) center top;
}

.ui-top-nav-child-arrow {
    content: "";
    display: block;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    left: 45%;
    top: -8px;
}

/*二级菜单*/
.ui-top-nav-child {
    position: absolute;
    width: 150px;
    z-index: 9;
    top:100%;
    left:0;
    /*left: -42px;*/
    /*left:-500px;*/
    /*border: 10px solid rgba(0, 0, 0, 0.03);*/
    /*padding: 0;*/
    background: rgba(34,34,34,0.9);
    border-top:1px solid #2c86ea;
    /*-webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);*/
    /*display: none \9;*/
    display: none;
}
/*ie6,7,8的半透明效果*/
@media \0screen\,screen\9 {/* 只支持IE6、7、8 */
  .ui-top-nav-child{
    background-color:#222;
    filter:Alpha(opacity=90);
  }
  .ui-top-nav-child *{
    position: relative;/* 设置子元素为相对定位，可让子元素不继承Alpha值 */
  }
}
/*二级菜单*/
.ui-top-nav-child-black{
    background: rgba(34,34,34,0.9);
}
/*ie6,7,8的半透明效果*/
@media \0screen\,screen\9 {/* 只支持IE6、7、8 */
  .ui-top-nav-child-black{
    background-color:#222222;
    filter:Alpha(opacity=90);
  }
  .ui-top-nav-child-black *{
    position: relative;/* 设置子元素为相对定位，可让子元素不继承Alpha值 */
  }
}

.ui-top-nav-child .ui-list{
    width:424px;
    padding:50px 0 30px;
    margin:0 auto;
    display: none;
}
.ui-top-nav-child .ui-list.serDynamics-item{
    width: 332px;
}

.ui-top-nav-child  .ui-top-nav-child_down{
    height:50px;
    width:100%;
    background: rgba(34,34,34,0.9);
}
.ui-top-nav-child-black .ui-top-nav-child_down{
    background: #222;
}
.ui-top-nav-child  .ui-top-nav-child_down span{
    content: "";
    height: 15px;
    width:20px;
    display: inline-block;
    background: url(../img/top/icon-arrow-up.png) no-repeat;
    /*border-top:3px solid #ccc;
    border-left:3px solid #ccc;
    transform:rotate(45deg); 
    -o-transform:rotate(45deg); 
    -ms-transform:rotate(45deg); 
    -moz-transform:rotate(45deg); 
    -webkit-transform:rotate(45deg); */
}
.ui-top-nav-child.go {

    animation: nav_child 0.3s ease;
    -webkit-animation: nav_child 0.3s ease;
    -moz-animation: nav_child 0.3s ease;

    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    /*针对最高版本的ie浏览器认识css3动画但是不识别帧数动画*/
    transform: scaleY(1) \9;
    display: block \9;
}

/*图标弹出*/
@-webkit-keyframes nav_child {

    0% {
        -moz-transform: scaleY(0);
        -webkit-transform: scaleY(0);
    }
    70% {
        -moz-transform: scaleY(1.1);
        -webkit-transform: scaleY(1.1);
    }
    100% {
        -moz-transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

@-moz-keyframes nav_child {
      0% {
        -moz-transform: scaleY(0);
        -webkit-transform: scaleY(0);
    }
    70% {
        -moz-transform: scaleY(1.1);
        -webkit-transform: scaleY(1.1);
    }
    100% {
        -moz-transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

@keyframes nav_child {
    0% {
        -moz-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    70% {
        -moz-transform: scaleY(1.1);
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1)
    }
    100% {
        -moz-transform: scaleY(1);
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}
.ui-top-nav li{
    position: static;
}

.ui-top-nav-child .ui-list-item {
    /*clear: both;*/
    display: inline-block;
    /*width: 150px;*/
    /*margin-top: -1px;*/
    text-align: center;
    /*background-color: #fff;*/
    /*height: 36px;*/
    opacity:0;
    *zoom:1;
}

.ui-top-nav-child .ui-list-item a {
  /*  height: 36px;
    line-height: 36px;*/
    height:100px;
    line-height: 100px;
    display: block;
    /*width: 150px;*/
    padding: 0;
}

.ui-top-nav-child .ui-list-item a:hover {
    text-decoration: none;
    color: #f7f7f7;
}

.ui-top-nav-child .ui-list-item a span {
    display: block;
    /*width: 110px;*/
    margin: 0 6px;
}

.ui-list.ui-top-nav-child .ui-list-item:hover {
    background: #01a0e2;
}

.ui-list.ui-top-nav-child.policy .ui-list-item:hover {
    background: #c02632;
    color: #fff;
}

.ui-list.ui-top-nav-child.venture .ui-list-item:hover {
    background: #4bb610;
    color: #fff;
}

.ui-list-item.policy>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/top/icon-arrow-down_small.png) no-repeat;
    /*border-bottom:1px solid #ccc;
    border-right:1px solid #ccc;
    transform:rotate(45deg); 
    -o-transform:rotate(45deg); 
    -ms-transform:rotate(45deg); 
    -moz-transform:rotate(45deg); 
    -webkit-transform:rotate(45deg); */
}
.ui-list-item.newPolicy>a:after {
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/top/icon-arrow-down_small.png) no-repeat;
}


.ui-list-item.policy>a:hover:after{
    border-color: #fff;
}
.ui-list.ui-top-nav-child .ui-list-item:hover a span {
    border-top: none;
}

.ui-top-nav-child .ui-list-item ~ .ui-list-item a span {
    /*border-top: 1px solid #eceef4;*/
}
.ui-list-item.myHome{
    position: relative;
   
}
/*.ui-list-item.myHome:hover{
    background:#315a8e;
}*/
.ui-list-item.myHome>a{
    position: relative;
    min-width: 100px;
    max-width: 150px;
    padding-right: 25px;
    padding: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.ui-list-item.myHome.hover{
    background:#315a8e;
}
.ui-list-item.myHome>a:hover:after{
    border-color: #fff;
}
.ui-list-item.myHome>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/top/icon-arrow-down_small.png) no-repeat;
}
.ui-list-item.myHome .myHome-item{
    position: absolute;
    display: none;
    background: #315a8e;
}
.ui-list-item.myHome .myHome-item li{
    display: block;
    text-align: center;
    width:100%;
}
.ui-list-item.myHome .myHome-item li:hover{
    color:#f7f7f7;
    background: #29466a;
}
.ui-list-item.myHome .myHome-item li a{
    color:#ccc;
    line-height:40px;
    height: 40px;
    padding:0 18px;
}
.ui-list-item.myHome .myHome-item li:hover a{
    text-decoration: none;
    color: #f7f7f7;
}
.ui-list-item.myHome .myHome-item li a span{
    display: block;
}
.ui-list-item.myHome .myHome-item li~li a span{
    border-top:1px solid #29466a;
}
/*.ui-list-item.myHome:hover{
    background:#315a8e;
}*/
.ui-list-item.serDynamics>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/top/icon-arrow-down_small.png) no-repeat;
}

.ui-top-nav-child .ui-list-item ~ .ui-list-item {
    border-right: none;
}

/* 新增导航栏子菜单动画 */
.ui-top-nav .ui-top-nav-child-show li{
    opacity:1 \9 \0;
    filter:alpha(opacity=100);
    animation:ui-top-nav-child-enter .8s forwards 
}
 .ui-top-nav .ui-top-nav-child-show li:nth-child(1){
    animation-delay:0s
} 
.ui-top-nav .ui-top-nav-child-show li:nth-child(2){
    animation-delay:.1s
}
.ui-top-nav .ui-top-nav-child-show li:nth-child(3){
    animation-delay:.2s
}
.ui-top-nav .ui-top-nav-child-show li:nth-child(4){
    animation-delay:.3s
}
.ui-top-nav .ui-top-nav-child-show li:nth-child(5){
    animation-delay:.4s
}
.ui-top-nav .ui-top-nav-child-show li:nth-child(6){
    animation-delay:.5s
}
.ui-top-nav .ui-top-nav-child-show li:nth-child(7){
    animation-delay:.6s
}

@keyframes ui-top-nav-child-enter{
    from{
        transform:translate(70px);
        opacity:0;filter:alpha(opacity=0)
    }
    to{
        transform:translate(0);
        opacity:1;filter:alpha(opacity=100)
    }
}
@-moz-keyframes ui-top-nav-child-enter{
    from{
        transform:translate(70px);
        opacity:0;filter:alpha(opacity=0)
    }
    to{
        transform:translate(0);
        opacity:1;filter:alpha(opacity=100)
    }
}
@-webkit-keyframes ui-top-nav-child-enter{
    from{
        transform:translate(70px);
        opacity:0;filter:alpha(opacity=0)
    }
    to{
        transform:translate(0);
        opacity:1;filter:alpha(opacity=100)
    }
}
@-o-keyframes ui-top-nav-child-enter{
    from{
        transform:translate(70px);
        opacity:0;filter:alpha(opacity=0)
    }
    to{
        transform:translate(0);
        opacity:1;filter:alpha(opacity=100)
    }
}

/*.li-selected::after,
.ui-top-nav .ui-list-item:hover::after{
    content: "";
    display: block;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #3F98EA;
    left: 42%;
    bottom: 0;
}*/
.top-logo-img {
    height: 60px;
    line-height: 60px;
    width: 200px;
    background: url(../img/login-logo.png) no-repeat center;
}

.top-logo-img img {
    vertical-align: middle;
}

.ui-top-title {
    font-size: 21px;
    text-align: right;
    color: #fff;
    width: 290px;
    height: 60px;
    line-height: 60px;
}

/*.topnav-home {
    position: relative;
}*/

/*搜索*/
.ui-list-right .ui-list-item {
    float: right;
}
.ui-list-right .ui-list-item  img{
    vertical-align: middle;
    margin-right: 5px;
}
/*登录*/
.ui-list-item .top-nav-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.icon-toplogin {
    margin-right: 5px;
    background: url('../img/icon-toplogin.png') no-repeat;
}
.icon-topregister {
    margin-right: 5px;
    background: url('../img/icon-topregister.png') no-repeat;
}
.icon-app {
    margin-left: 5px;
    background-image: url('../img/icon-topapp.png');
    background-repeat: no-repeat;
    background-position: center;
}

.top-search {
   padding: 12px 0;
    position: absolute;
    right:0px;
    width:206px;   
  /*   width:380px;  */
    height:36px;
    z-index:1000;
    overflow: hidden;
}

.top-search .top-search-div {
    position: relative;
    height: 34px;
    width: 204px;
    background-color: #325582;
    border: 1px solid #999;
}

.top-search input[type="text"] {
    padding: 0;
    position: absolute;
    left: 15px;
    /* max-width: 156px; */
    border: none;
    height: 34px;
    line-height: 34px;
    border-radius: 15px;
    color: #999;
    background: transparent;
}
.top-search input[type="text"]::-ms-clear{
    display: none;
}
.top-search input[type="text"]:focus {
    border: none;
    box-shadow: none;
}
.top-search .top-search-submit {
    position: absolute;
    right: 15px;
    top: 7px;
    width: 18px;
    height: 18px;
    background: transparent url(../img/icon-topsearch.png) no-repeat 0 0;
    border: none;
}

/* 下拉框 */
 .top-search-select{
    width:110px;
    border: 1px solid #ccc;
    background:#fff;
    text-align: center;
    font-size: 14px;
    color:#777;
    position: absolute;
    right:268px;
}
.top-search-select cite{
    height:34px;
    line-height:34px; 
    display:block; 
    cursor:pointer;
    font-style:normal;
    background:url(../img/icon-select-arrow-down.png) no-repeat 85px center;
    position: relative;
    padding-right:10px;
}
.top-search-select ul{
    width:110px;
    border:1px solid #ddd; 
    background-color:#ffffff; 
    position:absolute; 
    z-index:20000; 
    margin-top:-1px;
    margin-left:-1px; 
    display:none;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
}
 .top-search-select ul li:first-child{
    border-top:0px;
 }
 .top-search-select ul li{
   width:100%;
   text-align: center;
   border-top:1px solid #ddd;
} 
.top-search-select ul li a{
     color:#777!important;
    display:block; 
    height:38px; 
    line-height:38px;
    color:#333333; 
    text-decoration:none; 
    overflow: visible;
    margin:0px;
    padding:0px;
}
.top-search-select ul li a:hover{
    background-color:#54a9f2;
    color:#fff!important;
    text-decoration: none;
} 

.top-search-select-close{
  width:22px;
  height:22px!important;
  background:url(../img/icon-select-close.png);
  position: absolute;
  right:-32px;
  top:21px;
  display: none;
}
.top-search-select-close:hover{
    cursor: pointer;
}
.top-wrapper-index .top-search-select-close{
    top:24px;
}
.top-search-result{
    width:378px;
    position: absolute;
    top:48px;
    right:0px;
    border:1px solid #ddd;
    background:#fff;
    border-radius: 0px 0px 6px 6px;
    margin-top:-1px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    z-index:1000;
    display: none;
}

.top-search-result ul li{
    width:378px;
    clear: both;
    font-size:14px;
    color:#777;
    border-top:1px solid #ddd;
    text-align: left;
    height:38px;
    line-height: 38px;
    padding-left:20px;
    background:url(../img/icon-search-arrow-right.png) 350px center no-repeat; 
    position: relative;
}

.top-search-result ul li:first-child{
    border-top:0px;
}
.top-search-result ul li:hover{
    background-color: #54a9f2;
    text-decoration: none;
    background:  #54a9f2 url(../img/icon-search-arrow-right-on.png) 350px center no-repeat;
    color: #fff;
}
.top-search-result ul li b{
    position: absolute;
    right:60px;
    font-weight: normal;
}
.top-search-result ul li b span{
    display: inline-block;
    background:#E8EBF0;
    color: #939FA6;
    font-size: 12px;
    height:24px;
    line-height: 24px;
    padding:0 8px;
    border-radius: 25px;
    margin-left:3px;
}

/*登录模块*/
.ui-panel-login {
    border: none;
    text-align: right;
    margin: 5px auto 0;
    padding-right: 20px;
}

.ui-panel-login a {
    color: #fff !important;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    padding-left: 35px;

}

.ui-panel-login a ~ a {
    margin-left: 24px;
}

.ui-img-login {
    background: transparent url(../img/icon-login.png) no-repeat 0 0;
}

.ui-img-register {
    background: transparent url(../img/icon-register.png) no-repeat 0 0;
}

/*伪元素（pseudo-elements）、伪类（ pseudo-classes）和Notihing。
    WebKit和Blink（Safari,Google Chrome, Opera15+）使用伪元素*/
.top-wrapper ::-webkit-input-placeholder { /*WebKit browsers */
    color: #888;
}

.top-wrapper :-moz-placeholder { /*Mozilla Firefox 4 to 18*/
    color: #888;
}

.top-wrapper ::-moz-placeholder { /*Mozilla Firefox 19+ */
    color: #888;
}

.top-wrapper :-ms-input-placeholder { /*Internet Explorer 10+ */
    color: #888;
}

.browser-version{
    position: fixed;
    display: none;
    top: 0;
    height: 70px;
    padding: 10px 0;
    width: 100%;
    background: url(../img/top/browser-bg.jpg) ;
    z-index: 999;
}
.browser-wrapper{
    width: 960px;
    margin: 0 auto;
}
.remind-word{
    float: left;
    font-size: 16px;
    color: #333;
    width: 380px;
    vertical-align: middle;
}
.browser-part{
    float: left;
    vertical-align: middle;
    width: 95px;
    margin-right: 6px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.img{
    display: block;
    vertical-align: middle;
    margin: 0  auto;
    background:url(../img/top/icon-browser.png)  no-repeat;
}
.recommend{
    color: #999;
    font-size: 14px;
    float: left;
    vertical-align: sub;
    margin-right: 6px;
}
.icon-firfox{
    height:33px;
    width:31px;
    background-position:0 0;
}
.icon-360{
    height:34px;
    width:32px;
    background-position:-31px 0;
}
.icon-google{
    height:33px;
    width:33px;
    background-position:-63px 0;
}
.icon-ie{
    height:36px;
    width:37px;
    background-position:-96px 0;
}
.icon-remind{
    height:45px;
    width:45px;
    margin-right: 8px;
    background-position:-133px 0;
}
/*首页的样式*/
.top-wrapper.top-wrapper-index{
    position: relative;
    height: 70px;
    box-shadow: none;
    background-color: rgba(176,206,232,0.5);
}
.top-wrapper.top-wrapper-index.white-bg{
    background-color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
/*ie6,7,8的半透明效果*/
@media \0screen\,screen\9 {/* 只支持IE6、7、8 */
  .top-wrapper.top-wrapper-index{
    background-color:#b0cee8;
  }
  .top-wrapper.top-wrapper-index.white-bg{
    background-color: #fff;
  }
}
.top-wrapper-index .ui-top-nav > .ui-list-item > a {
    height: 70px;
    line-height: 70px;
    color: #34557b;
}
.top-wrapper-index .ui-top-nav > .ui-list-item > a:hover {
    text-decoration: none;
    color: #34557b !important;
}
/*二级菜单*/
.top-wrapper-index  .ui-top-nav-child {
    border-top: none;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
/*应用下拉减少高度*/
.top-wrapper-index .ui-top-nav-child .ui-list{
    padding: 10px 0;
}
/*应用下拉的收回三角的背景*/
.top-wrapper-index .ui-top-nav-child  .ui-top-nav-child_down{
    background: #fff;
}
.top-wrapper-index .ui-top-nav-child-black .ui-top-nav-child_down{
    background: #222;
}
.top-wrapper-index .top-logo-img {
    height: 70px;
    line-height: 70px;
    background: url(../img/index/logo-index1.png) center no-repeat;
}
/*应用和服务动态的小三角*/
.top-wrapper-index .ui-list-item.policy>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/index/top/icon-arrow-down_small.png) no-repeat;
}



/*注册和登录的图标*/
.top-wrapper-index .ui-list-item .top-nav-icon{
    width: 22px;
    height: 22px;
}
.top-wrapper-index .icon-toplogin {
    background-image:  url(../img/index/top/icon-toplogin.png);
}
.top-wrapper-index .icon-topregister{
    background-image: url(../img/index/top/icon-topregister.png);
}
/*登录的下拉箭头*/
.top-wrapper-index .ui-list-item.myHome>a:after{
    background: url(../img/index/top/icon-arrow-down_small.png) no-repeat;
}
.top-wrapper-index .ui-list-item.myHome.hover{
    background: #b0cee8;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item{
    background: #b0cee8;
}
.top-wrapper-index .ui-list-item.myHome>a{
    position: relative;
    min-width: 100px;
    max-width: 150px;
    padding-right: 25px;
    padding: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.top-wrapper-index .ui-list-item.myHome.hover{
    background: #b0cee8;
}
.top-wrapper-index .ui-list-item.myHome>a:hover:after{
    border-color: #fff;
}
.top-wrapper-index .ui-list-item.myHome>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/index/top/icon-arrow-down_small.png) no-repeat;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item{
    position: absolute;
    display: none;
    background: #b0cee8;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li{
    display: block;
    text-align: center;
    width:100%;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li:hover{
    color:#f7f7f7;
    background: #b0cee8;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li a{
    color: #34557b;
}
.top-wrapper-index .ui-top-nav > .ui-list-item.myHome.hover > a{
    color: #34557b;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li:hover a{
    text-decoration: none;
    color: #f7f7f7;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li a span{
    display: block;
}
.top-wrapper-index .ui-list-item.myHome .myHome-item li~li a span{
    border-top:1px solid #29466a;
}

/*搜索框*/
.top-wrapper-index .top-search {
    margin-top: 16px;
}
.top-wrapper-index .top-search .top-search-div {
    position: relative;
    height: 34px;
    width: 204px;
    margin-left: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.top-wrapper-index .top-search input[type="text"]:focus {
    border: none;
    box-shadow: none;
}
.top-wrapper-index  .top-search .top-search-div input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b3b3b3;
}

.top-wrapper-index  .top-search .top-search-div input ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b3b3b3;
}

.top-wrapper-index .top-search .top-search-div input:-ms-input-placeholder{
    color: #b3b3b3;
}

.top-wrapper-index .top-search .top-search-div input::-webkit-input-placeholder{
    color: #b3b3b3;
}

/* ================================== 亲商360 =============================== begin*/
#main-content {
    margin: 0 auto;
    width:850px
}
.ui-top-nav-child .left-wrapper {
    height: 242px;
    width:410px;
    border-right: 1px solid #666;
}
.probusiness-container .left-wrapper {
    border-right: 1px solid #ddd;
}
.ui-top-nav-child .brief-title {
    margin-top:10px;
}
.ui-top-nav-child .header-title{
    margin-top: 5px;
    margin-left:16px;
    font-size: 22px;
    color:#fff;
}
.probusiness-container .header-title {
    color:#444;
}
.ui-top-nav-child .header-title-s{
    border-bottom:1px solid #49a3ff;width:90px;
    margin-top: 8px;
    margin-left:18px;
    font-size: 14px;
}
.ui-top-nav-child .header-title-s .bule3ff {
    color: #49a3ff;
}
.ui-top-nav-child .header-title-s .formore,
.ui-top-nav-child .header-title-s .formore:hover{
    color:#fff;
    font-size:14px;
    text-align: left;
}
.probusiness-container .header-title-s .formore,
.probusiness-container .header-title-s .formore:hover {
    color:#666;
}
.ui-top-nav-child .horizontal-break-line {
    margin: 18px 28px 18px 0px;
    width:380px;
    height:1px;
    background:#666;
}
.probusiness-container .horizontal-break-line {
    background:#ddd;
}

.ui-top-nav-child .hot-product-title {
    font-size: 14px;
    font-weight: bold;
    border-bottom: 3px solid #db640c;
}
.ui-top-nav-child .some-items {
    margin-top: 20px;
}
.ui-top-nav-child .some-items .right-two {
    margin-left: 95px;
}
.ui-top-nav-child .some-items .formore {
    height:30px;
    /* margin-left: -5px; */
}
.ui-top-nav-child .some-items .formore img {
    margin-right:5px;
}

 
.ui-top-nav-child .right-wrapper {
    height: 242px;
    width:410px;
    margin: 5px 0 0 28px;
}
.ui-top-nav-child .service-field p{
    position: relative;
    left:-170px;
    text-align: left;
    display: inline-block;
    font-weight: bold;
    color: #fff;
    margin-bottom: 18px;
    border-bottom:3px solid #439bff;
}
.ui-top-nav-child .service-area-content ul li {
    margin:0 0 -5px 0;
}
.probusiness-container .service-field {
    color: #444;
}
.probusiness-container .service-field p {
    color: #444;
}

.ui-top-nav-child .hot-product .formore{
    color:#fff;
}
.probusiness-container .hot-product .formore{
    color:#444;
}


.ui-top-nav li a.formore{
    line-height: 24px;
    height: 24px;
}
/* 亲商360 图标 */
.ui-list-item.proBusiness>a:after{
    content: "";
    height: 10px;
    width: 14px;
    margin: 0 0 0 6px;
    display: inline-block;
    background: url(../img/top/icon-arrow-down_small.png) no-repeat;
}
/* ================================== 亲商360 =============================== end*/
