@charset "utf-8";
.insidebg {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* 搜索 */


/* 
.search {
    background-color: #f2f2f2;
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}

.search_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search_box_l {
    display: flex;
    align-items: center;
}

.search_box_l span {
    color: #000000;
    font-size: 14px;
}

.search_box_l a {
    margin: 0 5px;
}

.search_box_r {
    display: flex;
    align-items: center;
}

.search_box_r input {
    width: 170px;
    height: 35px;
    border-radius: 17px 0 0 17px;
    border: 1px solid #cfcfcf;
    color: #7b7b7b;
    padding-left: 20px;
    font-size: 14px;
}

.search_box_r a {
    width: 44px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 0 17px 17px 0;
    background-color: #2c3e6f;
    color: #fff;
}

.search_box_r a i {
    font-size: 24px;
} */


/* 面包屑导航 */

.breadcrumb {
    padding: 18px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eeeeee;
}

.breadcrumb1 {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}


/* .breadcrumb1::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: #fe0629;
    margin-right: 8px;
} */

.breadcrumb1 i {
    color: #fe0629;
    margin-right: 8px;
}

.breadcrumb2>a {
    font-size: 14px;
    color: #666;
}

.breadcrumb2>a:hover {
    color: #fe0629;
}

.breadcrumb2>a>i {
    font-size: 14px;
    color: #666;
    margin: 0 3px;
}

.breadcrumb2>a:last-child i {
    display: none;
}


/* 导航切换 */

.navtab {
    margin-top: 30px;
    display: flex;
}

.navtab>a {
    margin-right: 1px;
    flex: 1;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    font-size: 18px;
    color: #333;
    position: relative;
    transition: all .4s;
}

.navtab>a::before {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
    transition: all .4s;
}

.navtab>a:hover {
    background-color: #2c3e6f;
    color: #fff;
}

.navtab>a:hover::before {
    display: block;
}


/* 详细内容 */

.fengcai {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.fengcai .fengcai_item {
    width: 230px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.fengcai_item_img {
    padding: 9px;
    border: 1px solid #e5e5e5;
}

.fengcai_item_txt {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #4b4a4a;
    background-color: #f0f0f0
}