/*产品导航开始*/
.product-nav{
    width: 100%;
    height: 100px;
    background-color: #fff;
    border-top: 1px solid #e1e1e1;
}
.fixedNav{
    position: fixed;
    top: 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
    z-index: 100;
}
.product-nav .nav{
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}
.product-nav .nav li{
    cursor: pointer;
}
.product-nav .pic{
    width: 100%;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
}
.product-nav .nav li:nth-child(1) .pic{
    background-image: url("../../img/icon_plane.png");
}
.product-nav .nav li:nth-child(1).active .pic{
    background-image: url("../../img/icon_plane_hl.png");
}
.product-nav .nav li:nth-child(1).active2 .pic{
    background-image: url("../../img/icon_plane_hl.png");
}
.product-nav .nav li:nth-child(2) .pic{
    background-image: url("../../img/h1.png");
}
.product-nav .nav li:nth-child(2).active .pic{
    background-image: url("../../img/h11.png");
}
.product-nav .nav li:nth-child(2).active2 .pic{
    background-image: url("../../img/h11.png");
}
.product-nav .nav li:nth-child(3) .pic{
    background-image: url("../../img/icon_ship.png");
}
.product-nav .nav li:nth-child(3).active .pic{
    background-image: url("../../img/icon_ship_hl.png");
}
.product-nav .nav li:nth-child(3).active2 .pic{
    background-image: url("../../img/icon_ship_hl.png");
}
.product-nav .nav li:nth-child(4) .pic{
    background-image: url("../../img/icon_car.png");
}
.product-nav .nav li:nth-child(4).active .pic{
    background-image: url("../../img/icon_car_hl.png");
}
.product-nav .nav li:nth-child(4).active2 .pic{
    background-image: url("../../img/icon_car_hl.png");
}
.product-nav .nav li:nth-child(5) .pic{
    background-image: url("../../img/icon_house.png");
}
.product-nav .nav li:nth-child(5).active .pic{
    background-image: url("../../img/icon_house_hl.png");
}
.product-nav .nav li:nth-child(5).active2 .pic{
    background-image: url("../../img/icon_house_hl.png");
}
.product-nav .nav li:nth-child(6) .pic{
    background-image: url("../../img/icon_steam.png");
}
.product-nav .nav li:nth-child(6).active .pic{
    background-image: url("../../img/icon_steam_hl.png");
}
.product-nav .nav li:nth-child(6).active2 .pic{
    background-image: url("../../img/icon_steam_hl.png");
}
.product-nav .nav li:nth-child(7) .pic{
    background-image: url("../../img/icon_competitionvenues.png");
}
.product-nav .nav li:nth-child(7).active .pic{
    background-image: url("../../img/icon_competitionvenues_hl.png");
}
.product-nav .nav li:nth-child(7).active2 .pic{
    background-image: url("../../img/icon_competitionvenues_hl.png");
}
.product-nav .nav li:nth-child(8) .pic{
    background-image: url("../../img/icon_other.png");
}
.product-nav .nav li:nth-child(8).active .pic{
    background-image: url("../../img/icon_other_hl.png");
}
.product-nav .nav li:nth-child(8).active2 .pic{
    background-image: url("../../img/icon_other_hl.png");
}
.product-nav .nav li h1{
    /*margin-top: 10px;*/
    font-size: 16px;
}
.product-nav .nav li.active h1{
    color: #34A0D5;
}
.product-nav .nav li.active2 h1{
    color: #34A0D5;
}
/*产品搜索开始*/
.product-search{
    margin: 20px 0;
}
.product-search .searchCon{
    height: 60px;
    background: #fff;
}
.product-search .searchBox{
    width: 684px;
    margin: 0px auto;
    padding-top: 12px;
    position: relative;
}
.product-search .searchInput{
    float: left;
    width: 600px;
    height: 36px;
    font-size: 16px;
    color: #333;
    border: 1px solid #909090;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 0px 10px 0px 50px;
    background-image: url(../../img/search.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 14px 8px;
    outline: none;
    border-right: none;
}
.product-search .searchBtn{
    float: left;
    width: 84px;
    height: 36px;
    background: #00A0E9;
    color: #fff;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border: 1px solid #909090;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}
.product-search .tagList{
    width: 586px;
    position: absolute;
    left: 14px;
    top: 48px;
    padding: 10px 40px;
    font-size: 16px;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
    display: none;
    z-index: 1;
}
.product-search .tagList li{
    margin: 10px;
    cursor: pointer;
}









