.head_wrapper {
    background-color: rgba(255, 255, 255, .5);
    color: #2c3e50;
}

.head_wrapper .logo {
    height: 60%;
}

.head_wrapper .logo img {
    height: 100%;
}

.head_wrapper .wrap_cent {
    height: 80px;
    display: flex;
    align-items: center;
}

.mobile_head.head_wrapper {
    border-bottom: 1px solid #e6e6e6;
}

.mobile_head.head_wrapper .wrap_cent {
    height: 50px;
    padding: 8px 0;
}

.mobile_head.head_wrapper {
    background-color: #fff !important;
}

.mobile_head.head_wrapper .logo {
    height: 80%;
}

.mobile_head.head_wrapper .logo img {
    height: 100%;
}

.mobile_head.head_wrapper .logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.head_wrapper .wrap_cent .logo {
    cursor: pointer;
}

.head_wrapper .wrap_cent .right {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.head_wrapper .wrap_cent .right .right_item_box {
    height: 100%;
    display: flex;
    align-items: center;
}

.head_wrapper .wrap_cent .right .right_item_box .item_cent {
    width: 110px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: all .35s;
}

.head_wrapper .wrap_cent .right .right_item_box .item_cent .item_text {
    width: 100%;
    height: 100%;
    display: flex;
    color: #2c3e50;
    font-weight: bold;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

.head_wrapper .wrap_cent .right .right_item_box .item_cent:hover .item_text,
.head_wrapper .wrap_cent .right .right_item_box .item_cent .item_text.active {
    color: var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .item_btn {
    height: 40px;
    line-height: 40px;
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box {
    top: 80px;
    opacity: 0;
    z-index: -1;
    text-align: left;
    position: absolute;
    visibility: hidden;
    transition: all .35s;
}

.head_wrapper .wrap_cent .right .right_item_box.has_child:hover > .hover_box {
    opacity: 1;
    z-index: 10;
    visibility: visible;
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box .box_content {
    display: grid;
    padding: 10px 20px;
    /*background-color: #fff;*/
    /*box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.16);*/
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box .box_content .box_item {
    display: flex;
    cursor: pointer;
    align-items: center;
    margin: 10px 0;
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box .box_content .box_item .icon {
    margin-right: 10px;
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box.index_hover {
    width: 100%;
    left: 0;
    top: 80px;
    height: 680px;
    /*    opacity: 1;
        z-index: 10;
        visibility: unset;*/
    background-color: #faf9ff;
    box-shadow: 0 5px 5px 0 rgba(100, 105, 117, .2), 0 4px 6px 0 rgba(221, 225, 232, .5);
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .bg_box {
    width: calc(100% - 270px);
    height: 100%;
    right: 0;
    z-index: 0;
    position: absolute;
    background-size: 100% 100%;
    background-image: url('../images/img_bg_xl.png');
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content {
    z-index: 10;
    display: flex;
    box-shadow: none;
    position: relative;
    background-color: transparent;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left {
    padding: 20px 0;
    position: absolute;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item {
    height: 45px;
    display: flex;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item + .text_item {
    margin-top: 5px;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item .text {
    color: #222;
    font-size: 14px;
    transition: all .35s;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item .text:after {
    content: "";
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-bottom: 2px solid var(--primary-color);
    transition: all .3s linear;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item .icon {
    font-size: 17px;
    margin: 0 10px 0 0;
    position: relative;
    transition: all .25s;
    color: var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item.active .icon {
    display: none;
    /*position: absolute;*/
    /*margin-left: -30px;*/
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item.active .text {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item.active .text:after {
    width: 100%;
    opacity: 1;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_left .text_item .line {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right {
    width: 100%;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .item_show_box {
    width: calc(100% - 180px);
    flex: 1;
    height: 500px;
    display: grid;
    cursor: pointer;
    padding: 25px 0;
    margin-left: 180px;
    overflow: hidden auto;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .item_show_box.hide {
    display: none;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item {
    width: 80%;
    height: 160px;
    margin: 0 auto;
    background-size: 100% 100%;
}


.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .item_cen_box {
    width: 80%;
    height: 100%;
    display: flex;
    margin: 15px auto;
    flex-direction: column;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .item_top {
    display: flex;
    align-items: center;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .text {
    color: #222;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    transition: all .35s;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .tag_box {
    color: #ff5050;
    font-size: 16px;
    padding: 0 5px;
    user-select: none;
    margin-left: 5px;
    
    border-radius: 20px 20px 20px 0;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .text:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    background-color: var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item .right_btm {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 14px;
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item:hover {
    background-image: url('../images/img_bg_sel.png');
}

.head_wrapper .wrap_cent .right .right_item_box .index_hover .index_content .index_right .right_item:hover .text {
    color: var(--primary-color);
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box.solu_hover {
    border-radius: 10px;
    box-shadow: 0 0 12px 1px rgba(105, 94, 238, 0.16);
    background: linear-gradient(180deg, #fff 0%, #edf0f6 100%);
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box.solu_hover .title_box {
    color: #4b5a79;
    font-size: 16px;
    padding: 20px 20px 10px;
}

.head_wrapper .wrap_cent .right .right_item_box .hover_box.solu_hover .line_box {
    height: 1px;
    margin: 20px 0 0;
    background-color: #bec7f5;
}

.head_wrapper.mobile_head .wrap_cent {
    justify-content: space-between;
}

.head_wrapper.mobile_head .wrap_cent .option .iconfont {
    font-size: 25px;
}

.head_wrapper.mobile_head .wrap_cent .option .iconfont.icon-guanbi {
    font-size: 22px;
    font-weight: bold;
}

.head_wrapper.mobile_head .down_option {
    width: 100%;
    display: none;
    position: absolute;
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
}

.head_wrapper.mobile_head .down_option.isopen {
    display: block;
}

.head_wrapper.mobile_head .down_option .down_option_box {
    width: 90%;
    margin: 0 auto;
    display: grid;
    padding: 10px 0;
    grid-column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.head_wrapper.mobile_head .down_option .down_option_box .option_item {
    color: #222;
    height: 50px;
    display: flex;
    font-size: 15px;
    font-weight: bold;
    align-items: center;
}

.head_wrapper.mobile_head .down_option .down_option_box .option_item:active {
    background-color: #ebebff;
}

.head_wrapper.mobile_head .down_option .down_option_box .icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.right_item_box .item_cent:hover .menu_erji {
    display: block;
    opacity: 1;
    visibility: visible;
}

.menu_erji {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 10px;
    background: #FFFFFF;
    margin-top: 5px;
    padding: 10px 0;
}

.menu_erji ul li {
    
    padding: 10px 5px;
}
.menu_erji ul li:hover{
    background: rgba(49, 94, 251, 0.1);
}
.menu_erji ul li:hover a{
    color: var(--primary-color);
}
.menu_erji ul li a{
    font-size: 14px;
}