/* 头部 */
header {
    width: 100%;
    background: #ffffff;
}

.header_mian_bg {
    height: 80px;
}

.header_mian_nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: #ffffff;
    box-sizing: border-box;
}
.header_mian_nav>div{
    width: 100%;
    height: 100%;
    box-shadow: -5px 0px 16px 5px rgba(83, 84, 88, 0.12);
}
.header_mian_nav.active>div {
    /*box-shadow: -5px 0px 16px 5px rgba(83, 84, 88, 0.12);*/
    /* box-shadow: 0px 3px 13px 5px rgba(82, 88, 120, 0.05); */
}

.header_mian {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header_logo {
    width: 140px;
}

.header_mian>div {
    height: 100%;
    display: flex;
    align-items: center;
}

.header_mian .header_search {
    height: 100%;
    position: relative;
}

.header_mian .header_search>.C__icon {
    height: 100%;
    padding: 0 25px 0 15px;
    display: flex;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
}

.header_search_main {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #ffffff;
    width: 300px;
    height: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.6s ease;
}

.header_search.active .header_search_main {
    height: 70px;
    box-shadow: 0px 10px 15px 4px rgba(83, 84, 88, 0.12);
}

.header_search_main input {
    flex: 1;
    height: 40px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid #e1e6f0;
    outline: none;
    color: #333333;
    font-size: 14px;
    border-radius: 3px;
    border-right: none;
    box-sizing: border-box;
}

.header_search_main i {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 40px;
    padding: 10px;
    border: 1px solid #e1e6f0;
    border-left: none;
    color: #333333;
    font-size: 20px;
    border-radius: 3px;
}

.header_mian>div>img {
    width: 37px;
}

.header_menu {
    height: 100%;
    display: flex;
}

.header_menu>li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 15px;
    position: relative;
}

.header_menu>li>a {
    height: 100%;
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    position: relative;
}

.header_menu a{
    cursor:pointer;
}

.header_menu > li > a .nav_tag {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
}

.header_menu>li>a .nav_tag span {
    width: 0;
    height: 5px;
    display: inline-block;
    background-color: #231915;
    transition: all 0.6s ease;
}

.header_menu>li>a .nav_tag span:nth-child(2) {
    background-color: #e50012;
}

.header_menu>li>a .nav_tag span:nth-child(3) {
    background-color: #fdd000;
}

.header_menu>li:hover>a .nav_tag span {
    width: 33.3%;
}

/* 子菜单 */
.header_submenu {
    display: none;
    position: absolute;
    top: 80px;
    left: calc((100% - 140px)/2);
    width: 140px;
    padding: 15px 0;
    background: #ffffff;
    box-shadow: 0px 10px 15px 4px rgba(83, 84, 88, 0.12);
    z-index: -1;
}

.header_submenu>li {
    width: 100%;
}

.header_submenu>li>a {
    display: block;
    padding: 8px 10px;
    text-align: center;
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_submenu>li:hover>a {
    color: #E50012;
}

.header_menu>li:hover .header_submenu {
    display: block;
}

.header_menu>li.active {
/*    position: inherit;*/
}

    .header_menu > li.active .header_submenu {
        /* display: block; */
        width: fit-content;
        /* height: 330px; */
        overflow: hidden;
        left: 50%;
        right: 0;
        top: 80px;
        gap:20px;
        padding: 0 45px;
        display: flex;
        display: none;
        transform: translateX(-50%);
        justify-content: space-between;
        /*        left: calc((100% - 140px) / 2);*/
        /* transition: all 0.6s ease; */
    }

.header_menu>li.active:hover .header_submenu {
    display: flex;
    /* height: 330px; */
}

.header_menu>li.active .header_submenu>li {
    width: 200px;
    margin: 25px 0 50px;
}

.header_menu>li.active .header_submenu>li>a {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #E1E6F0;
}

.header_submenu>li>ul {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
}

.header_submenu>li>ul>li {
    width: 100%;
    overflow: hidden;
}

.header_submenu>li>ul>li>a {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    text-align: left;
    color: #333333;
    padding: 8px 0;
}

.header_submenu>li>ul>li>a span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_submenu>li>ul>li>a .C__icon {
    font-size: 12px;
    margin-left: 5px;
}

.header_submenu>li>ul>li>a:hover {
    color: #E50012;
}

/* banner */
.web_banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #f6f7fa;
}

.banner_main {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.banner_item {
    width: 100%;
    height: 100%;
}

.banner_list {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.banner_pagination {
    width: 100%;
    bottom: 30px;
    left: 0;
    position: absolute;
}

.banner_pagination .swiper-pagination {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    bottom: initial;
    position: relative;
}

.banner_pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    margin: 0 5px;
}

.banner_pagination .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.banner_pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* 新闻资讯 */
.web_news {
    width: 100%;
    background: #ffffff;
    background-image: url(/Areas/Themes/images/circular1.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
}

.web_news_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 70px;
}

.Top_title {
    padding: 25px 0;
}

.Top_title span:first-child {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
}

.Top_title span:last-child {
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
}

.web_news_content {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.web_news_left {
    width: 550px;
    height: 400px;
    overflow: hidden;
}

.news_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.news_swiper_item {
    width: 100%;
    height: 100%;
}

.news_swiper_list {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display:block;
}

.news_swiper_list p {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 0 80px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news_pagination {
    height: 45px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 8px;
    z-index: 10;
}

.news_pagination .swiper-pagination {
    width: 100%;
    margin: 0 auto;
    text-align: right;
    bottom: initial;
    position: relative;
}

.news_pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #ffffff;
    margin: 0 4px;
    opacity: 1;
}

.news_pagination .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.news_pagination .swiper-pagination-bullet-active {
    background: #DB241C;
}

.web_news_right {
    flex: 1;
    margin-left: 30px;
    height: 400px;
    overflow: hidden;
}

.news_nav_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E9E9E9;
}

.news_nav_title_l {
    flex: 1;
    overflow: hidden;
    margin-right: 30px;
}

.news_nav_title_l div {
    display: inline-block;
    font-size: 18px;
    color: #969595;
    position: relative;
    margin-right: 35px;
    cursor: pointer;
}

.news_nav_title_l div span {
    max-width: 145px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news_nav_title_l div:last-child {
    margin-right: 0;
}

.news_nav_title_l div.active {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
}

.news_nav_title_l div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 0;
    height: 4px;
    transition: all 0.6s ease;
    background-color: rgba(219, 36, 28, .8);
}

.news_nav_title_l div:hover:after,
.news_nav_title_l div.active::after {
    width: 100%;
}

.news_nav_more {
    display: block;
    font-size: 14px;
    color: #3b3e4e;
}

.news_nav_title>div {
    padding-bottom: 20px;
}

.news_nav_more .C__icon {
    font-size: 16px;
    color: #3b3e4e;
}
.web_news_right > ul{
    display:none;
}
.web_news_right > ul.active {
    display: block;
}
.web_news_right > ul > li {
    width: 100%;
    border-bottom: 1px solid #E9E9E9;
}

.web_news_right>ul>li .title {
    margin: 17px 0;
    display: flex;
    justify-content: space-between;
}

.web_news_right>ul>li .title span:first-child {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #333333;
}

.web_news_right>ul>li .title>span:last-child {
    font-size: 16px;
    color: #969595;
    margin-left: 50px;
}

.web_news_right>ul>li .des {
    width: 100%;
    height: 0;
    display: block;
    overflow: hidden;
    transition: all 0.6s ease;
}

.web_news_right>ul>li .des p {
    display: flex;
    justify-content: space-between;
}

.web_news_right>ul>li .des p span:first-child {
    flex: 1;
    font-size: 14px;
    color: #969595;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.web_news_right>ul>li .des p span:last-child {
    font-size: 40px;
    color: rgba(219, 36, 28, .8);
    margin-left: 80px;
}

.web_news_right>ul>li.active .des {
    height: 55px;
}

/* 中展实力 */
.web_article {
    width: 100%;
    /*    height: 880px;*/
    /*    height: 790px;*/
    height: 650px;
    background-image: url(/Areas/Themes/images/product_bg.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.web_article_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 70px;
}

.web_article_content {
    display: flex;
/*    justify-content: space-between;*/
gap:30px;
    flex-wrap: wrap;
    overflow: hidden;
}

.web_article_content>div {
    width: calc((100% - 60px)/3);
    height: 460px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
/*
.web_article_content>div:first-child {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
}

.web_article_content>div:first-child a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index:6;
}

.web_article_content>div:first-child a .title {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web_article_content>div:first-child a .des {
    font-size: 24px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 18px;
}

.web_article_content>div:first-child a .num {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.6s ease;
}
.web_article_content>div:first-child a .num span{
    transition: all 0.6s ease;
}*/
.web_article_item {
    width: 100%;
    height: 100%;
    display: block;
    padding: 40px 30px 30px;
    box-sizing: border-box;
    position: relative;
}

.web_article_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    z-index: 2;
    transition: all 0.8s;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
}

.web_article_item i {
    position: absolute;
    left: 30px;
    top: 140px;
    width: 1px;
    height: 100px;
    background: #ffffff;
    z-index: 3;
    transition: all 0.6s;
}

.web_article_item .title {
    color: #ffffff;
    font-size: 30px;
    z-index: 4;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web_article_item .des {
    color: #ffffff;
    font-size: 14px;
    margin-top: 8px;
    z-index: 4;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web_article_item .bot {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
}

.web_article_item .more {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    opacity: 0;
    transition: all 0.6s ease;
}

.web_article_item .more .C__icon {
    color: #ffffff;
    font-size: 30px;
}

.web_article_item .num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.6s ease;
}

.web_article_item .num span {
    transition: all 0.6s ease;
}

.web_article_item:hover .more {
    opacity: 1;
}
.web_article_content > div:first-child:hover a .num,
.web_article_item:hover .num {
    background-color: #ffffff;
    transform: rotate(45deg);
}
.web_article_content > div:first-child:hover a .num span,
.web_article_item:hover .num span {
    color: rgba(222, 55, 48, 0.95);
    transform: rotate(-45deg);
}

.web_article_item ul {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    z-index: 4;
    position: relative;
    transition: all 0.6s ease;
    opacity: 0;
}

.web_article_item ul li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.web_article_item ul li a {
    max-width: 100%;
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.web_article_content>div:first-child::before,
.web_article_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 3;
    transition: all 0.6s ease;
    background-color: rgba(222, 55, 48, 0.95);
}

.web_article_item:hover ul {
    opacity: 1;
}

.web_article_item:hover::after {
    height: 0;
}
.web_article_content>div:first-child:hover::before,
.web_article_item:hover::before {
    width: 100%;
    height: 100%;
}

.web_article_item:hover i {
    height: 0;
}

/* 数据中展励德 */
.web_list {
    width: 100%;
    background: #ffffff;
    background-image: url(/Areas/Themes/images/circular2.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.web_list_main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 70px;
}

.web_list_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.web_list_content li {
    width: calc((100% - 60px)/3);
    overflow: hidden;
    display: flex;
    margin: 35px 0 25px;
    cursor: pointer;
}

.web_list_content li img {
    width: 94px;
    height: 96px;
    object-fit: cover;
    transition: all 1.5s ease;
}

.web_list_content li>div {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
    margin-left: 15px;
}

.web_list_content li>div>div {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web_list_content li>div>p {
    color: #797979;
    font-size: 14px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.web_list_content li:hover img {
    transform: rotateY(360deg);
}

/* 底部 */
.footer_main {
    width: 100%;
    background: #323437;
}

/* 底部头部部分 */
.footer_main_top {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
}

.footer_main_top_l {
    width: 390px;
}

.footer_main_top_l a img {
    width: 150px;
}

.footer_main_top_r {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 侧边置顶 */
.web_right_top {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    font-size: 26px !important;
    line-height: 48px !important;
    text-align: center;
    color: #72798B;
    background-color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #e8ebed;
    display: none;
}

/* 底部中间部分 */
.footer_msg_Content p {
    margin: 0;
    padding: 0;
}

.footer_msg_Content .title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.footer_msg_Content .des {
    font-size: 14px;
    color: #b1b8c2;
    margin-top: 10px;
}

.footer_main_top>img {
    width: 37px;
}

.footer_main_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 240px;
    padding: 30px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.27);
}

.footer_main_content_l {
    width: 390px;
}

.footer_main_content_l>p {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
}

.footer_main_content_l>div {
    display: flex;
    margin-top: 30px;
}

.footer_main_content_l>div>div {
    margin-right: 20px;
    text-align: center;
}

.footer_main_content_l>div>div:last-child {
    margin: 0;
}

.footer_main_content_l>div td{
    vertical-align: baseline;
}

.footer_main_content_l>div td img,
.footer_main_content_l>div div img {
    width: 80px;
    height: 80px;
}
.footer_main_content_l>div td p,
.footer_main_content_l>div div>p {
    font-size: 12px;
    color: #ffffff;
    margin-top: 5px;
    width: 85px;
}

.footer_main_content_r {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.footer_main_content_r li {
    margin-left: 20px;
}

.footer_main_content_r li:first-child {
    margin-left: 0;
}

.footer_main_content_r li a {
    display: block;
    font-size: 14px;
    color: #b1b8c2;
    margin-bottom: 8px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor:pointer;
}
.footer_main_content_r li a:hover{
    color: #ffffff;
}
.footer_main_content_r li a:first-child {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

/* 版权部分 */
.footer_copyright {
    width: 100%;
    background: #1a1c1f;
}

.footer_copyright_main {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 40px;
    text-align: center;
    padding: 10px 0;
}

.footer_copyright_main,
.footer_copyright_main p,
.footer_copyright_main a {
    font-size: 14px;
    color: #b1b8c2;
}
.footer_copyright_main a:hover{
    color:#ffffff !important;
}
body, header, article>section, footer, .header_mian_nav {
    min-width: 1200px;
}

/*内页菜单-公共样式*/
/* 内页广告 */
.view_banner {
    width: 100%;
    height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.view_banner_mian {
    max-width: 1200px;
    height: 100%;
    padding: 90px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.view_banner_mian .title {
    text-align: center;
    color: #ffffff;
    font-size: 48px;
}

.view_banner_mian .describe {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 20px;
}

/* 主体内容 */
.view_contents {
    width: 100%;
    background-color: #ffffff;
}

.view_contents_main {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
}

.view_contents_main_left {
    width: 270px;
    margin-top: -30px;
    position: relative;
}

.view_contents_main_left>div {
    width: 270px;
    height: fit-content;
}

/* 1 */
.view_one_menu {
    width: 100%;
    height: 100px;
    background: #e50012;
    padding: 20px 25px;
    box-sizing: border-box;
}

.view_one_menu p:first-child {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.view_one_menu p:last-child {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 5px;
}

/* 2 */
.view_two_menu {
    width: 100%;
    border: 1px solid #e1e6f0;
}

.view_two_menu>li {
    width: 100%;
    border-top: 1px solid #E1E6F0;
}

.view_two_menu>li:first-child {
    border-top: none;
}

.view_two_menu>li>.li_text {
    width: 100%;
    height: 80px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f4f8;
    cursor: pointer;
    position: relative;
}

.view_two_menu>li>.li_text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    width: 0;
    transition: all 0.6s ease;
    background: #e50012;
}

.view_two_menu>li>.li_text div {
    flex: 1;
    font-size: 20px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-left: 20px;
}

.view_two_menu>li>.li_text div::before {
    content: "";
    position: absolute;
    left: 3px;
    width:7px;
    height:7px;
    background-color: #C0C4D2;
    transform: rotate(45deg);
    top: calc((100% - 7px)/2);
}

.view_two_menu>li>.li_text .C__icon,
.view_three_menu>li>.li_text .C__icon {
    color: #A3A5AC;
    font-size: 26px;
    display: none;
}

.view_two_menu>li>.li_text .C__icon:last-child,
.view_three_menu>li>.li_text .C__icon:last-child {
    display: inline-block;
}

/* 3 */
.view_three_menu {
    width: 100%;
    padding: 15px 0;
    background: #ffffff;
    display: none;
}

.view_three_menu li {
    width: 100%;
}

.view_three_menu li .li_text {
    width: 100%;
    padding: 10px 25px 10px 45px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.view_three_menu li .li_text div {
    flex: 1;
    font-size: 18px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 4 */
.view_four_menu {
    width: 100%;
    display: none;
}

.view_four_menu a {
    display: block;
    font-size: 16px;
    color: #969595;
    padding: 10px 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_two_menu > li.menuRed > .li_text div,
.view_two_menu > li.active > .li_text div,
.view_two_menu > li.menuRed > .li_text div::before,
.view_two_menu > li.active > .li_text div::before {
    color: #e50012;
}
.view_two_menu > li.menuRed > .li_text div::before,
.view_two_menu > li.active > .li_text div::before {
    background-color: #e50012;
}
.view_two_menu>li.active>.li_text::after {
    width: 100%;
}

.view_four_menu a.active,
.view_four_menu a:hover {
    font-weight: bold;
    color: #e50012;
}

.view_two_menu>li.active .view_three_menu {
    display: block;
}

.view_two_menu>li.active>.li_text span:first-child {
    display: inline-block;
}

.view_two_menu>li.active>.li_text span:last-child {
    display: none;
}

.view_three_menu>li.active .view_four_menu {
    display: block;
}

.view_three_menu>li.active>.li_text span:first-child {
    display: inline-block;
}

.view_three_menu>li.active>.li_text span:last-child {
    display: none;
}


/* 内容部分 */
.view_contents_main_right {
    flex: 1;
    overflow: hidden;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
}

.view_right_top {
    width: 100%;
    height: 70px;
    padding-top: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E1E6F0;
    margin-bottom:30px;
}

.view_right_top div:first-child {
    font-size: 22px;
    color: #333333;
    position: relative;
    padding-left: 15px;
}

.view_right_top div:first-child::before {
    position: absolute;
    left: 0;
    top: calc((100% - 22px)/2);
    content: "";
    width: 3px;
    height: 22px;
    background: #e50012;
}

.view_right_top div:last-child,
.view_right_top div:last-child ul{
    display:flex;
    align-items:center;
    font-size: 14px;
    color: #333333;
}

.view_right_top div:last-child a {
    font-size: 14px;
    color: #333333;
    position: relative;
    margin: 0 10px;
}