﻿.hidden {
    overflow: hidden;
}

/* 头部 */
.header {
    background: #ee1f2d;
    position: relative;
    z-index: 10;
}

.header .logo_top img {
    max-width: 170px;
}

.header .header-nav {
    position: relative;
    z-index: 4;
    width: 100%;
}

.header .header-nav .ul {
    font-size: 18px;
    width: 100%;
}

.header .header-nav li a {
    color: #333333;
}

.header .header-nav li em {
    display: block;
    font-style: normal;
}

.header .header-nav li:nth-child(-n+2) a {
    color: #fff;
}

.header .header-nav .ul li:last-child {
    display: none;
}

.header .ri-top {
    width: calc(100% - 300px);
    padding: 20px 0;
    position: relative;
}

.header .ri-top::after {
    content: '';
    width: 100vw;
    height: 100%;
    left: 100%;
    top: 0;
    background-color: #fff;
    position: absolute;
}

.header .ri-top::before {
    content: '';
    width: calc(100% - 185px);
    height: 100%;
    right: 0;
    top: 0;
    background-color: #fff;
    position: absolute;
    transform: skewX(140deg);
    transform-origin: right bottom;
    z-index: 3;
}

.header .top-search {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    line-height: 35px;
}

.header .top-search .om {
    margin-left: 15px;
}

.header .top-search .om span {
    margin-left: 10px;
}

.header .top-search .select-box {
    margin-left: 30px;
}

.header .top-search .search-box {
    width: 150px;
    margin-left: 35px;
    border: 1px solid #e5e5e5;
    position: relative;
    border-radius: 50px;
}

.header .top-search .search-box .text {
    font-size: 15px;
    padding: 0 10px;
    padding-right: 30px;
    width: 100%;
    border: none;
    background: none;
    line-height: 35px;
}

.header .top-search .search-box .btn {
    width: 35px;
    height: 35px;
    background: url(../images/search.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.header .top-search .select-box {
    margin-left: 20px;
    position: relative;
}

.header .top-search .select-box label {
    line-height: 35px;
    position: relative;
    color: #ee1f2d;
    min-width: 80px;
    cursor: pointer;
    overflow: visible;
}

.header .top-search .select-box label span {
    position: relative;
    max-width: 100%;
    display: inline-block;
}

.header .top-search .select-box label span::after {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #ee1f2d;
    position: absolute;
    right: -15px;
    top: 15px;
    transform-origin: 5px 3px;
    transition: .3s;
}

.header .top-search .select-box label.active span::after {
    transform: rotate(180deg);
}

.header .top-search .search-list {
    position: absolute;
    left: 50%;
    top: 100%;
    display: none;
    box-shadow: 0 0 5px 2px #eee;
    background-color: #fff;
    min-width: 140px;
    border-radius: 5px;
    transform: translateX(-45%);
}

.header .top-search .search-list li {
    border-bottom: 1px solid #eee;
    padding: 0 10px;
}

.header .top-search .search-list li:last-of-type {
    border: 0;
}

.header .top-search .search-list a {
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

#open-menu {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 9;
    margin-left: 20px;
    display: none;
}

#open-menu i {
    width: 20px;
    height: 3px;
    background-color: #ee1f2d;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .3s;
    border-radius: 3px;
}

#open-menu::before,
#open-menu::after {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #ee1f2d;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}

#open-menu::before {
    top: 2px;
}

#open-menu::after {
    bottom: 2px;
}

#open-menu.active i {
    opacity: 0;
}

#open-menu.active::before {
    bottom: 2px;
    transform: rotateZ(45deg);
}

#open-menu.active::after {
    top: 2px;
    transform: rotateZ(-45deg);
}

@media(max-width:1366px) {
    .header .header-nav .ul {
        font-size: 16px;
    }
}

@media(max-width:1280px) {
    .header .ri-top::before {
        width: calc(100% - 160px);
    }
}

@media(min-width:1025px) {
    .header .header-nav li {
        position: relative;
    }

    .header .header-nav li .sub {
        position: absolute;
        left: 50%;
        top: 100%;
        min-width: 120%;
        transform: translateX(-50%);
        text-align: center;
        line-height: 40px;
        font-size: 14px;
        padding-top: 20px;
        display: none;
    }

    .header .header-nav li .sub dd {
        background-color: rgba(238, 31, 45, .9);
    }

    .header .header-nav li .sub dd a {
        display: block;
    }

    .header .header-nav li .sub dd:not(:last-of-type) {
        border-bottom: 1px solid #f7f7f7;
    }

    .header .header-nav li .sub dd:hover {
        background: #ee1f2d;
    }
}

.header .header-nav li .sub dd a {
    color: #fff;
}

@media(max-width:1024px) {
    .header .ri-top {
        width: calc(100% - 220px);
    }

    .header .ri-top::after {
        left: 50%;
    }

    .header .ri-top::before {
        width: calc(calc(100% - 135px));
        transform: skewX(150deg);
    }

    .header .header-nav li .sub dd a {
        color: #333333;
    }
}

@media(max-width:1024px) {
    .header .ri-top::before {
        width: calc(calc(100% - 50px));
        right: -40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        z-index: 5;
    }

    .header .top-search {
        margin-bottom: 0;
    }

    .header .top-search .om {
        display: none;
    }

    .header .logo_top img {
        max-height: 50px;
    }

    .header .header-nav {
        position: fixed;
        right: -100%;
        height: 100%;
        top: 0;
        width: 250px;
        padding-top: 80px;
        text-align: center;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        transition: all 0.5s;
    }

    .header .header-nav.active {
        right: 0;
    }

    .header .header-nav .ul {
        display: block;
        flex-wrap: wrap;
        height: 100%;
        overflow: auto;
    }

    .header .header-nav .ul li {
        width: 100%;
        line-height: 2.8;
        border-bottom: solid 1px #e5e5e5;
    }

    .header .header-nav .ul li:nth-child(1) a,
    .header .header-nav .ul li:nth-child(2) a {
        color: #333333;
    }

    .header .header-nav .ul li.active a {
        color: #ee1f2d;
    }

    .header .header-nav li .sub {
        display: none;
        border-top: solid 1px #e5e5e5;
        font-size: 14px;
        padding: 5px 0;
        line-height: 2.3;
    }

    .header .header-nav li.has-sub em {
        display: block;
        position: relative;
    }

    .header .header-nav li.has-sub em::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }

    .header .header-nav li.has-sub em i {
        position: absolute;
        width: 30px;
        height: 30px;
        transition: 0.3s;
        right: 10px;
        top: 8px;
        z-index: 3;
    }

    .header .header-nav li.has-sub em i::before {
        position: absolute;
        content: '';
        width: 12px;
        height: 2px;
        background: #ee1f2d;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header .header-nav li.has-sub em i::after {
        position: absolute;
        content: '';
        width: 2px;
        height: 12px;
        background: #ee1f2d;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header .header-nav li.has-sub em.active i {
        transform: rotate(45deg);
    }

    #open-menu {
        display: block;
    }
}

@media(max-width:640px) {
    .header .logo_top img {
        max-width: 90px;
    }

    .header .top-search .search-box .text {
        font-size: 12px;
    }

    .header .header-nav {
        width: 60%;
    }

    .header .header-nav .ul li:last-child {
        display: block;
    }

    .header .contact-top {
        display: none;
    }

    .header .top-search {
        font-size: 12px;
    }

    .header .top-search .search-box {
        width: 80px;
        margin-left: 20px;
        line-height: 30px;
    }

    .header .top-search .select-box label {
        line-height: 30px;
    }

    .header .top-search .select-box label span::after {
        top: 12px;
    }

    .header .top-search .search-box .text {
        line-height: 30px;
    }

    .header .top-search .search-box .btn {
        width: 30px;
        height: 30px;
    }

    .header .ri-top {
        padding: 15px 0;
        width: calc(100% - 100px);
    }

    .header .ri-top::before {
        width: 115%;
    }

    #open-menu {
        margin-left: 10px;
    }
}


/* 底部 */
.footer-line {
    height: 23px;
    width: 100%;
    display: block;
    background: url(../images/footer-back.png) no-repeat;
    margin-top: -12px;
}

.bottom {
    background-color: #343433;
    padding-top: 4%;
}

.bottom .top-wrap .shares {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
}

.bottom .top-wrap {
    padding-bottom: 2.94%;
    border-bottom: 1px solid rgba(241, 240, 235, 0.05);
}

.social-share a {
    position: relative;
    text-decoration: none;
    margin: 4px;
    display: inline-block;
    outline: none;
}

.social-share a img {
    max-width: 125px;
}

.social-share .social-share-icon {
    width: 54px;
    height: 54px;
    background-color: #fff;
}

.social-share .social-share-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: 2;
}

.social-share .social-share-icon:hover::after {
    opacity: 0;
}

.social-share .icon-wechat:before {
    line-height: 54px;
}

.social-share .icon-weibo:before {
    line-height: 54px;
}

.social-share .icon-wechat::after {
    background: #fff url(../images/icon_wechat.png) center center no-repeat;
}

.social-share .icon-weibo::after {
    background: #fff url(../images/icon_weibo.png) center center no-repeat;
}

.bottom .bot-wrap {
    padding-top: 2.94%;
    padding-bottom: 4.6875%;
}

.bottom .bot-wrap .left {
    float: left;
}

.bottom .bot-wrap .nav {
    margin-bottom: 30px;
}

.bottom .bot-wrap .nav a {
    color: #fff;
}

.bottom .bot-wrap .nav a:hover {
    color: #ee1f2d;
}

.bottom .bot-wrap .nav li {
    float: left;
    margin-right: 2.6vw;
}

.bottom .bot-wrap .nav li:last-of-type {
    margin-right: 0;
}

@media(min-width:1921px) {
    .bottom .bot-wrap .nav li {
        float: left;
        margin-right: 50px;
    }

    .bottom .bot-wrap .nav li:last-of-type {
        margin-right: 0;
    }
}

.bottom .auxiliary {
    font-size: 0;
    margin-bottom: 20px;
}

.bottom .auxiliary a {
    display: inline-block;
    font-size: 16px;
    color: rgba(241, 240, 235, 0.502);
    padding: 0 12px;
    position: relative;
    line-height: 30px;
}

.bottom .auxiliary a:hover {
    color: #ee1f2d;
}

.bottom .auxiliary a:first-of-type {
    padding-left: 0;
}

.bottom .auxiliary a:last-of-type {
    padding-right: 0;
}

.bottom .auxiliary a:last-of-type::after {
    display: none;
}

.bottom .auxiliary a::after {
    content: '';
    width: 2px;
    height: 2px;
    background-color: rgba(241, 240, 235, 0.502);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateX(50%);
}

.bottom .copyright {
    color: rgba(241, 240, 235, 0.502);
    font-size: 14px;
    line-height: 2.143;
}

.bottom .copyright a {
    color: rgba(241, 240, 235, 0.502);
    font-size: 14px;
    line-height: 2.143;
}

.bottom .copyright a:hover {
    color: #ee1f2d;
}

.bottom .right {
    float: right;
    text-align: right;
}

.bottom .right .label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.875;
}

.bottom .right .hotline {
    font-size: 30px;
    font-family: "Manrope";
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

.bottom .right .hotline2 {
    font-size: 20px;
    font-family: "Manrope";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin-bottom: 20px;
}

.bottom .right .mailbox {
    font-size: 16px;
    font-family: "Manrope";
    color: rgb(255, 255, 255);
    line-height: 1.875;
}

@media(max-width:768px) {
    .bottom .bot-wrap {
        padding: 15px 0;
    }

    .bottom .bot-wrap .left,
    .bottom .right {
        width: 100%;
        float: none;
    }

    .bottom .right {
        text-align: center;
        margin-top: 2%;
    }

    .bottom .bot-wrap .left {
        text-align: center;
    }

    .bottom .social-share .social-share-icon {
        width: 40px;
        height: 40px;
    }

    .bottom .social-share .icon-wechat:before {
        line-height: 40px;
    }

    .bottom .social-share .icon-weibo:before {
        line-height: 40px;
    }

    .bottom .bot-wrap .nav {
        display: block;
    }

    .bottom .auxiliary {
        margin-bottom: 10px;
    }

    .bottom .auxiliary a {
        font-size: 14px;
    }

    .bottom .bot-wrap .nav li {
        display: inline-block;
        float: none;
        line-height: 30px
    }

    .bottom .bot-wrap .nav {
        margin-bottom: 0;
    }

    .footer-line {
        background-position: 17% center;
    }
}

@media(max-width:640px) {
    .bottom .bot-wrap .nav li {
        font-size: 12px;
        margin-right: 0;
        padding: 0 3px;
    }

    .bottom .auxiliary a {
        font-size: 12px;
        padding: 0 6px;
    }

    .bottom .copyright {
        font-size: 12px;
    }

    .bottom .right .label {
        font-size: 12px;
    }

    .bottom .right .hotline {
        font-size: 20px;
    }

    .bottom .right .hotline2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .bottom .right .mailbox {
        font-size: 16px;
    }

    .bottom .top-wrap .logo img {
        max-height: 40px;
    }
}

.right-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 160px;
}

.right-menu li {
    padding: 15px 0;
    padding-left: 24px;
    border-radius: 35px 0 0 35px;
    margin-bottom: 10px;
    transition: .3s;
    background-image: -moz-linear-gradient(90deg, rgb(191, 175, 146) 0%, rgb(175, 150, 104) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(191, 175, 146) 0%, rgb(175, 150, 104) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(191, 175, 146) 0%, rgb(175, 150, 104) 100%);
}

.right-menu li:hover {
    background-image: -moz-linear-gradient(90deg, #ee1f2d 0%, #ee1f2d 100%);
    background-image: -webkit-linear-gradient(90deg, #ee1f2d 0%, #ee1f2d 100%);
    background-image: -ms-linear-gradient(90deg, #ee1f2d 0%, #ee1f2d 100%);
}

.right-menu li:last-of-type {
    margin-bottom: 0;
}

.right-menu li .label {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 1.286;
    padding-left: 17px;
}

.right-menu li .des {
    color: #fff;
    padding-left: 17px;
    line-height: 20px;
}

.right-menu li .des a {
    color: #fff;
}

.right-menu li.mail .label {
    background: url(../images/icon_mail.png) left center no-repeat;
}

.right-menu li.phone .label {
    background: url(../images/icon_phone.png) left center no-repeat;
}

.right-menu li.person .label {
    background: url(../images/icon_person.png) left center no-repeat;
}

.right-menu li.xiaofei .label {
    background: url(../images/icon_danger.png) left center no-repeat;
}

.right-menu li.message .label {
    background: url(../images/icon_message.png) left center no-repeat;
}

@media(max-width:640px) {
    .right-menu {
        display: none !important;
    }
}

/* 当前位置 */
.Location003131 {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.Location003131 section {
    margin: auto;
    display: flex;
    justify-content: end;
}

.Location003131 .current {
    text-align: right;
    padding: 2% 0;
    font-size: 0.875em;
    padding-left: 1.21428em;
    background: url(../images/home.png) no-repeat left center;
    background-size: 1em auto;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.Location003131 .current {
    color: rgb(255 255 255 / 70%);
}

.Location003131 .current span {
    color: #fff;
    margin-left: 5px;
}

.Location003131 .current a {
    margin: 0 5px;
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
}



/* 内页banner */
.cpbanner {
    position: relative;
}

.cpbanner .cpbanner-img img {
    width: 100%;
}

.cpbanner .Location003131 {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.cpbanner:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, rgb(0 0 0 / 71%), rgb(0 0 0 / 0%));
}

.cpbanner2:before {
    display: none;
}

.cpbanner .wenzi {
    position: absolute;
    width: 90%;
    max-width: 1360px;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.cpbanner .wenzi .pa {
    font-size: 30px;
    font-weight: bold;
    line-height: 2;
}

.cpbanner .wenzi .pb {
    font-size: 18px;
}

@media only screen and (min-width: 769px) {
    .cpbanner .imgmo {
        display: none;
    }
}

@media only screen and (max-width: 769px) {
    .cpbanner .imgpc {
        display: none;
    }

    .cpbanner .wenzi .pa {
        font-size: 20px;
    }

    .cpbanner .wenzi .pb {
        font-size: 16px;
    }
}

/* 菜单 */
.numm {
    background: #f7f5f2;
    position: relative;
    z-index: 5;
}

.numm ul {
    display: flex;
    flex-wrap: wrap;
}

.numm ul li {
    padding: 1.85% 0;
    list-style: none;
    position: relative;
}

.numm ul li:not(:last-child) {
    margin-right: 4%;
}

.numm ul li:before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #ee1f2d;
    transition: all 0.5s;
}

.numm ul .on::before {
    width: 100%;
}

.numm ul .on a {
    color: #ee1f2d;
}

.numm ul li a {
    font-size: 16px;
}

@media only screen and (min-width: 769px) {
    .numm .web_mun {
        display: none;
    }
}

@media only screen and (max-width: 769px) {
    .numm {
        padding: 10px 0;
    }

    .numm ul li {
        padding: 10px 0;
        width: 43%;
        text-align: right;
        margin-right: 0;
        padding: 0 10px;
        margin: 5px 10px;
        border-bottom: 1px solid #ededed;
        padding-bottom: 10px;
        text-align: center;
        float: left;
    }

    .numm ul {
        position: absolute;
        width: 100%;
        background: #fff;
        left: 0;
        margin: auto;
        overflow: hidden;
        display: none;
        margin-top: 10px;
    }

    .numm ul .on::before {
        display: none;
    }

    .numm .web_mun .fens {
        width: 35px;
        height: 25px;
        margin-left: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .numm .web_mun .fens i {
        width: 100%;
        display: block;
        height: 3px;
        background: #ee1f2d;
    }

    .numm .web-txt {
        font-size: 16px;
    }
}


/* 内页 */
.Inside-shell {
    overflow: hidden;
    padding: 10px 0;
}


/* 企业概况 */
.company-one .company-txt {
    padding: 20px 0;
    font-size: 16px;
    width: 44%;
}

.company-one .company-txt .tit {
    position: relative;
    margin-bottom: 35px;
    font-size: 36px;
    font-weight: bold;
}

.company-one .company-txt .tit::after {
    position: absolute;
    bottom: 0;
    content: '';
    display: block;
    width: 4em;
    height: 8px;
    background: #ee1f2d;
    z-index: -1;
}

.company-one .company-txt .introd {
    line-height: 1.8;
}

.company-one .company-img {
    width: 56%;
}

.company-one .company-img .img-vw {
    width: 55.21vw;
}

.company-two {
    padding: 180px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.company-two .item {
    margin: 0 50px;
}

.company-two .item .num span {
    margin-right: 10px;
    line-height: 1;
    font-size: 46px;
    color: #ed1b2e;
}

.company-two .item .num i {
    color: #333333;
    font-style: normal;
}

.company-two .item .txt {
    margin-top: 5px;
    color: #666666;
}

.company-three {
    background: #f7f5f2;
}

.company-three .auto-1360 {
    direction: rtl;
}

.company-three .company-txt {
    direction: ltr;
    font-size: 16px;
    width: 44%;
}

.company-three .company-txt .introd {
    line-height: 1.8;
}

.company-three .company-img {
    width: 56%;
}

.company-three .company-img .img-vw {
    width: 55.21vw;
}

.company-three .item {
    margin-right: 80px;
}

.company-three .item:last-child {
    margin-right: 0;
}

.company-three .item .num span {
    margin-right: 10px;
    line-height: 1;
    font-size: 46px;
    color: #ed1b2e;
}

.company-three .item .num i {
    color: #333333;
    font-style: normal;
}

.company-three .item .txt {
    margin-top: 5px;
    color: #666666;
}

.company-three .item .txt span {
    display: block;
    background: url(../images/arrow2.png) center right no-repeat;
    padding-right: 20px;
}

.company-four {
    padding: 90px 0;
    font-size: 16px;
}

.company-four .auto-1360 {
    line-height: 1.8;
    color: #333333;
    padding: 0 9.5%;
}

.company-five {
    position: relative;
    background-size: cover;
}

.company-five .auto-1360::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about-back3.png) no-repeat;
}

.company-five .company-txt {
    font-size: 16px;
    position: relative;
    z-index: 5;
    color: #fff;
    padding: 80px 0;
    max-width: 510px;
}

.company-five .company-txt .introd {
    line-height: 2;
}

.company-five .item {
    margin-right: 80px;
}

.company-five .item:last-child {
    margin-right: 0;
}

.company-five .item .num span {
    margin-right: 10px;
    line-height: 1;
    font-size: 46px;
}

.company-five .item .num i {
    font-style: normal;
}

.company-five .item .txt {
    margin-top: 5px;
}

.company-six {
    padding: 100px 0;
    margin-bottom: -11px;
    position: relative;
    overflow: hidden;
}

.company-six::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 562px;
    height: 536px;
    background: url(../images/about-back4.png);
    z-index: -1;
}

.company-six .ul {
    position: relative;
    z-index: 5;
}

.company-six .ul li {
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 1.49%;
    width: 32.333%;
    margin-right: 1.49%;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s;
}

.company-six .ul li a {
    display: block;
    background: #f4f5f9;
    padding: 30px;
}

.company-six .ul li a span {
    width: 100%;
    line-height: 1;
    border-left: solid 2px #ed1b2e;
    padding-left: 5px;
    transition: all .5s;
}

.company-six .ul li:nth-child(3n) {
    margin-right: 0;
}

.company-six .ul li a:hover {
    background: #ed1b2e;
}

.company-six .ul li a:hover span {
    color: #fff;
    border-color: #fff;
}

.company-six .ul li .html_box {
    display: none;
}

/* 弹框 */
.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .5);
    display: none;
    z-index: 99;
}

.pop-up .auto-1360 {
    position: relative;
}

.pop-up .close {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 45px;
    height: 45px;
    background: #fff url(../images/close.png) center no-repeat;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0, 0, 0, .1);
    cursor: pointer;
}

.pop-up .pop-up-con {
    height: 100%;
}

.pop-up .swiper {
    max-height: 50vh;
    padding-right: 40px;
}

.pop-up .conshell {
    font-size: 16px;
    line-height: 1.62;
    overflow: auto;
}

.pop-up .pop-up-con .con-box {
    padding: 70px;
    padding-right: 20px;
    background: #fff;
    border-radius: 20px;
}

.pop-up .pop-up-con .con-box .title {
    position: relative;
    padding-left: 10px;
    margin-bottom: 30px;
    font-size: 30px;
    color: #333333;
}

.pop-up .pop-up-con .con-box .title::before {
    background: #ed1b2e;
    content: '';
    display: block;
    width: 4px;
    height: 75%;
    position: absolute;
    top: 12.5%;
    left: 0;
}

.pop-up .swiper-scrollbar-drag {
    background: #ed1b2e;
}

.pop-up .swiper-scrollbar {
    background: #f2f2f2;
}


@media only screen and (max-width:1440px) {
    .company-one .company-txt .introd {
        line-height: 1.6;
    }
}

@media only screen and (max-width:1024px) {
    .company-one .company-txt {
        width: 100%;
    }

    .company-one .company-img {
        width: 100%;
    }

    .company-one .company-img .img-vw {
        width: 100%;
    }

    .company-two {
        padding: 100px 0;
    }

    .company-two .item {
        margin: 0 25px;
    }

    .company-three .company-txt {
        width: 100%;
    }

    .company-three .company-img {
        margin-top: 20px;
        width: 100%;
    }

    .company-three .company-img .img-vw {
        width: 100%;
    }

    .company-five {
        background-position: center right;
    }

    .company-five .company-txt {
        padding: 50px 0;
    }

    .company-five .auto-1360::after {
        width: 80%;
        background-size: 100% 100%;
    }

    .company-six {
        padding: 50px 0;
    }

    .company-six .ul li a {
        padding: 20px;
        font-size: 15px;
    }
}

@media only screen and (max-width:768px) {
    .company-one .company-txt {
        font-size: 14px;
    }

    .company-one .company-txt .tit {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .company-one .company-txt .tit::after {
        height: 4px;
    }

    .company-two .item {
        margin: 0 10px;
    }

    .company-three .company-txt {
        font-size: 14px;
        margin-top: 20px;
    }

    .company-four {
        padding: 50px 0;
        font-size: 14px;
    }

    .company-four .auto-1360 {
        padding: 0;
    }

    .company-five .company-txt {
        font-size: 14px;
        max-width: 400px;
    }

    .company-five .item {
        margin-right: 50px;
    }

    .company-five .item .num span {
        font-size: 36px;
    }
}

@media only screen and (max-width:640px) {
    .company-three .item .num span {
        font-size: 36px;
    }

    .company-two {
        padding: 50px 0;
    }

    .company-two .item {
        margin: 10px 0;
        width: 45%;
        text-align: center;
    }

    .company-two .item .num {
        justify-content: center;
    }

    .company-two .item .num span {
        font-size: 36px;
    }

    .pop-up .pop-up-con .con-box {
        padding: 30px 20px;
    }

    .pop-up .pop-up-con .con-box .title {
        margin-bottom: 15px;
        font-size: 22px;
    }

    .company-six .ul li:nth-child(3n),
    .company-six .ul li {
        width: 49%;
        margin-right: 2%;
    }

    .company-six .ul li:nth-child(2n) {
        margin-right: 0;
    }

    .pop-up .close {
        right: 0;
        top: 0;
        box-shadow: inherit;
    }

    .pop-up .conshell {
        font-size: 14px;
        line-height: 1.9;
    }

    .pop-up .swiper {
        padding-right: 20px;
    }
}


/* 公司文化 */
.culture-tit {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

.culture-tit span {
    position: relative;
}

.culture-tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
}

.culture-one {
    padding: 90px 0 120px;
}

.culture-one .list-box .item {
    position: relative;
    width: 18.015%;
    overflow: hidden;
    border-radius: 20px;
}

.culture-one .list-box .item:nth-child(2n) {
    margin-top: 40px;
}

.culture-one .list-box .item::after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(175, 150, 104, 6));
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.culture-one .list-box .item .wz {
    display: none;
}

.culture-one .list-box .item .txt-box {
    color: #fff;
    padding: 25px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.culture-one .list-box .item .txt-box .tit {
    font-size: 20px;
    font-weight: bold;
}

.culture-one .list-box .item .txt-box .tit::after {
    margin-top: 10px;
    content: '';
    width: 1em;
    height: 2px;
    background: #fff;
    display: block;
}

.culture-one .list-box .item .img-shell figure {
    width: 100%;
    padding-bottom: 167.35%;
    background-size: cover;
}

.culture-one .list-box .item .img-shell figure img {
    display: none;
}

.culture-one .list-box .item:hover .wz {
    margin-top: 15px;
    display: block;
}

.culture-two {
    padding-bottom: 120px;
}

.culture-two .list-box {
    position: relative;
}

.culture-two .list-box .pci {
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    overflow: hidden;
    background: #fff;
}

.culture-two .list-box .item {
    margin-bottom: 20px;
    width: 50%;
    padding: 53px 50px;
    background: #faf6f7;
    text-align: right;
}

.culture-two .list-box .item:nth-child(2n+1) {
    padding-right: 270px;
}

.culture-two .list-box .item:nth-child(2n) {
    padding-left: 270px;
    text-align: left;
}

.culture-two .list-box .item .tit {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}

.culture-two .list-box .item .wz {
    line-height: 1.8;
    font-size: 18px;
}

.culture-two .list-box .item span {
    margin-right: 1em;
    display: inline-block;
    vertical-align: middle;
}
/*
.culture-two .list-box .item:nth-last-child(2),
.culture-two .list-box .item:last-child {
    margin-bottom: 0;
}*/

.culture-one .list-box .item:hover::after {
    background: rgba(175, 150, 104, .8);
}

@media only screen and (max-width:1024px) {
    .culture-two .list-box .item {
        width: calc(50% - 10px);
        padding: 30px;
    }

    .culture-two .list-box .pci {
        display: none;
    }

    .culture-two .list-box .item:nth-child(2n),
    .culture-two .list-box .item:nth-child(2n+1) {
        padding: 30px;
    }

    .culture-one .list-box .item .txt-box .tit {
        font-size: 16px;
    }
}

@media only screen and (max-width:768px) {
    .culture-one {
        padding: 50px 0;
    }

    .culture-one .list-box .item .txt-box {
        padding: 15px;
    }

    .culture-two {
        padding-bottom: 60px;
    }

    .culture-two .list-box .item .wz {
        font-size: 16px;
    }

    .culture-two .list-box .item .tit {
        font-size: 18px;
    }
}

@media only screen and (max-width:640px) {
    .culture-tit {
        margin-bottom: 30px;
        font-size: 22px;
    }

    .culture-one .list-box .item:nth-child(2n),
    .culture-one .list-box .item {
        margin: 0;
        width: 100%;
        margin-bottom: 2%;
    }

    .culture-one .list-box .item .txt-box .tit {
        font-size: 18px;
    }

    .culture-one .list-box .item .img-shell figure {
        padding-bottom: 50%;
    }

    .culture-two .list-box .item:nth-last-child(2),
    .culture-two .list-box .item {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .culture-two .list-box .item:last-child {
        margin-bottom: 0;
    }
}


/* 品牌荣誉 */
.honor-box {
    padding: 90px 0;
}

.honor-menu {
    width: 190px;
    padding-bottom: 110px;
}

.honor-menu .web-txt {
    display: none;
}

.honor-menu li {
    margin-bottom: 1px;
    max-width: 140px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.honor-menu li a {
    font-size: 16px;
    color: #333333;
    display: block;
    padding: 10px 20px;
    transition: all .5s;
}

.honor-menu li:hover a,
.honor-menu li.on a {
    color: #fff;
    background: #ee1f2d;
}

.honor-list {
    padding-left: 50px;
    width: calc(100% - 190px);
    padding-bottom: 110px;
    border-left: solid 1px #dedede;
}

.honor-list .introd {
    line-height: 1.8;
    padding-bottom: 30px;
    font-size: 16px;
    color: #333333;
    border-bottom: solid 1px #dedede;
}

.honor-list li {
    padding: 30px 0;
    border-bottom: dashed 1px #dedede;
}

.honor-list li .tiem {
    width: 140px;
}

.honor-list li .tiem span {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    color: #999999;
    display: block;
    font-style: normal;
}

.honor-list li .tiem span::after {
    position: absolute;
    left: -55px;
    top: 50%;
    display: block;
    content: '';
    background: #af9668;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    overflow: hidden;
    transform: translateY(-50%);
}

.honor-list li .tiem em {
    margin-top: 5px;
    font-size: 14px;
    color: #999999;
    display: block;
    font-style: normal;
}

.honor-list li .text-box {
    width: calc(100% - 140px);
}

.honor-list li .text-box .text {
    width: 75.5%;
    line-height: 1.7;
    padding-right: 65px;
}

.honor-list li .text-box .text .tit {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    transition: all .5s;
}

.honor-list li .text-box .text .tit::after {
    margin-top: 5px;
    content: '';
    display: block;
    width: 2em;
    height: 2px;
    background: #af9668;
}

.honor-list li .text-box .text .wez {
    margin-top: 20px;
    font-size: 16px;
    color: #999;
}

.honor-list li .text-box .pic {
    width: 24.49%;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.honor-list li .text-box .pic figure {
    padding-bottom: 66.667%;
    background-size: cover;
    transition: all .5s;
}

.honor-list li .text-box .pic figure img {
    display: none;
}

.honor-list li:hover .text-box .text .tit {
    color: #ed1b2e;
}

.honor-list li:hover .text-box .pic figure {
    transform: scale(1.1);
}

@media only screen and (max-width:768px) {
    .honor-list li .item {
        width: 100%;
        flex-wrap: wrap;
    }

    .honor-list li .tiem {
        width: 100%;
    }

    .honor-list li .text-box {
        width: 100%;
    }

    .honor-list li .text-box .text {
        padding-right: 30px;
    }

    .honor-list li .text-box .text .wez {
        font-size: 14px;
    }

    .honor-list li .text-box .text .tit {
        font-size: 18px;
    }

    .honor-list li .tiem {
        margin-bottom: 10px;
    }

    .honor-list li .tiem span {
        font-size: 16px;
    }
}

@media only screen and (max-width:640px) {
    .honor-menu {
        position: relative;
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 20px;
        border-right: none;
    }

    .honor-menu .ul {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        border: solid 1px #dedede;
        background: #fff;
        z-index: 3;
        border-top: none;
        display: none;
    }

    .honor-menu .ul li {
        line-height: 2;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .honor-menu .ul li a {
        padding: 0 10px;
    }

    .honor-menu .web-txt {
        position: relative;
        font-size: 16px;
        display: block;
        border: solid 1px #dedede;
        padding: 10px;
    }

    .honor-menu .web-txt::after {
        position: absolute;
        right: 15px;
        top: 15px;
        content: '';
        display: block;
        width: 13px;
        height: 13px;
        background-image: url(../images/arrow3.png);
        background-repeat: no-repeat;
        background-position: center;
    }

    .honor-list {
        padding: 0;
        width: 100%;
    }

    .honor-box {
        padding: 50px 0;
    }
}


/* 社会公益 */
.secondary {
    padding-top: 26px; flex-wrap:wrap;
}

.secondary .item {
    margin: 0 8px 10px;
    font-size: 14px;
    position: relative;
}

.secondary .item a {
    color: #333333;
    padding: 8px 25px;
    display: block;
    background: #f4f5f9;
    border-radius: 50px;
    overflow: hidden;
}

.secondary .item::after {
    background-image: url(../images/arrow6.png);
    position: absolute;
    left: 50%;
    margin-left: -6px;
    content: '';
    display: none;
    width: 12px;
    height: 6px;
}

.secondary .item:hover a,
.secondary .item.on a {
    color: #fff;
    background: #ed1b2e;
    box-shadow: 0 0 15px rgb(0, 0, 0, .2);
}

.secondary .item:hover::after,
.secondary .item.on::after {
    display: block;
}

.public-box {
    padding: 60px 0 90px;
}

.public-menu {
    width: 320px;
    padding-bottom: 110px;
    position: relative;
    z-index: 5;
}

.public-menu .web-txt {
    display: none;
}

.public-menu li {
    position: relative;
    padding-right: 40px;
}

.public-menu li ol {
    cursor: pointer;
    font-weight: bold;
    padding: 30px;
    font-size: 30px;
    color: #999999;
    border-bottom: solid 1px #e5e5e5;
}

.public-menu li ol a {
    color: #999999;
}

.public-menu li.on ol {
    color: #fff;
    background-image: url(../images/public-back.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border-radius: 0 100px 100px 0;
    overflow: hidden;
}

.public-menu li.on ol::after {
    position: absolute;
    right: -5px;
    top: 49px;
    background: #af9668;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    z-index: 5;
}

.public-menu li.on ol::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #dedede;
    position: absolute;
    right: -30px;
    top: 54px;
    z-index: -1;
}

.public-menu li.on ol {
    border-bottom: none;
}

.public-menu li.on ol a {
    color: #fff;
}

.public-menu li.line ol {
    border-color: #fff;
}

.public-menu dl {
    display: none;
    padding: 0 35px;
    padding-right: 0;
}

.public-menu dl dd {
    border-bottom: solid 1px #e5e5e5;
    display: flex;
    align-items: center;
}

.public-menu dl dd::before {
    width: 4px;
    height: 7px;
    background-image: url(../images/arrow4.png);
    margin-right: 10px;
    content: '';
    display: block;
}

.public-menu dl dd a {
    font-size: 16px;
    width: calc(100% - 10px);
    padding: 15px 0;
    display: block;
}

.public-menu dl dd:last-child {
    border-bottom: none;
}

.public-menu dl dd:hover::before,
.public-menu dl dd.on::before {
    background-image: url(../images/arrow5.png);
}

.public-menu dl dd:hover a,
.public-menu dl dd.on a {
    color: #af9668;
}

.public-list {
    padding-left: 60px;
    width: calc(100% - 320px);
    padding-bottom: 110px;
    border-left: solid 1px #dedede;
}

.public-list li {
    line-height: 2;
    font-size: 16px;
}

.public-list li a .tiem {
    font-weight: bold;
    color: #af9668;
    padding: 25px 0;
    width: 130px;
}

.public-list li a .txt {
    color: #333333;
    padding: 25px 0;
    width: calc(100% - 130px);
    border-bottom: dashed 1px #dedede;
}

@media only screen and (max-width:1024px) {
    .public-menu li ol {
        font-size: 22px;
    }
}

@media only screen and (max-width:640px) {
    .secondary {
        padding-top: 40px;
    }

    .secondary .item {
        font-size: 12px;
        margin: 0 4px 10px;
    }

    .secondary .item a {
        padding: 8px 20px;
    }

    .secondary .item::after {
        width: 10px;
        height: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .public-box {
        padding: 50px 0;
    }

    .public-menu {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 30px;
    }

    .public-menu .web-txt {
        display: block;
        margin-bottom: 0;
    }

    .public-menu .web-txt {
        position: relative;
        font-size: 16px;
        display: block;
        border: solid 1px #dedede;
        padding: 10px;
    }

    .public-menu .web-txt::after {
        position: absolute;
        right: 15px;
        top: 15px;
        content: '';
        display: block;
        width: 13px;
        height: 13px;
        background-image: url(../images/arrow3.png);
        background-repeat: no-repeat;
        background-position: center;
    }

    .public-menu li {
        padding-right: 0;
    }

    .public-menu li ol {
        font-size: 18px;
        padding: 10px 20px;
    }

    .public-menu li:first-child ol {
        border-top: none;
    }

    .public-menu li.on ol::before,
    .public-menu li.on ol::after {
        display: none;
    }

    .public-menu dl {
        padding-left: 20px;
    }

    .public-menu .ul {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        border: solid 1px #dedede;
        background: #fff;
        z-index: 3;
        border-top: none;
        display: none;
    }

    .public-list {
        padding-left: 0;
        width: 100%;
        border-left: none;
    }

    .public-list li {
        padding-bottom: 30px;
    }

    .public-list li a .tiem {
        width: 100%;
        padding: 0;
    }

    .public-list li a .txt {
        font-size: 14px;
        padding: 0;
        width: 100%;
        padding-bottom: 30px;
    }
}


/* 分页 */
.Page002737 .Pages {
    padding: 65px 0;
    text-align: center;
}

.Page002737 .Pages>span {
    display: inline-block;
    vertical-align: middle;
}

.Page002737 .Pages .a_first,
.Page002737 .Pages .a_prev,
.Page002737 .Pages .a_next,
.Page002737 .Pages .a_end,
.Page002737 .Pages .p_cur,
.Page002737 .Pages .p_count,
.Page002737 .Pages .p_total {
    display: none;
}

.Page002737 .Pages .p_jump,
.Page002737 .Pages .p_page {
    overflow: hidden;
}

.Page002737 .Pages .p_page em {
    font-style: normal;
}

.Page002737 .Pages .p_page a {
    float: left;
    line-height: 44px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0 18px;
    margin: 0 5px;
    font-size: 16px;
    color: #333333;
}

.Page002737 .Pages .p_page a:hover,
.Page002737 .Pages .p_page a.a_cur {
    background-color: #ee1f2d;
    border-color: #ee1f2d;
    color: #fff;
}

.Page002737 .Pages .p_page a.a_next,
.Page002737 .Pages .p_page a.a_prev {
    font-size: 0;
    height: 45px;
    width: 70px;
    padding: 0;
    margin: 0 15px;
    background-position: center center;
    background-repeat: no-repeat;
}

.Page002737 .Pages .p_page a.pagedot {
    width: 70px;
    background: none !important;
    border-color: transparent;
    padding: 0;
    line-height: 35px;
    height: 45px;
    color: #333333;
    border: 1px solid #e5e5e5;
}

.Page002737 .Pages .p_jump>* {
    float: left;
}

.Page002737 .Pages .p_jump b {
    font-weight: normal;
    color: #333;
    margin: 0 6px;
    line-height: 45px;
}

.Page002737 .Pages .p_jump b.f0 {
    margin-right: 6px;
    line-height: 45px;
    width: 45px;
    height: 45.2px;
    color: #333333;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.Page002737 .Pages .p_jump input {
    height: 45px;
    border-radius: 4px;
}

.Page002737 .Pages .i_text {
    line-height: 45px;
    text-align: center;
    border: 1px solid #e5e5e5;
    width: 70px;
    text-align: center;
    color: #333;
    font-size: 16px;
}

.Page002737 .Pages .i_button {
    background: #ee1f2d;
    width: 70px;
    padding: 0;
    cursor: pointer;
    border: none;
    margin-left: 6px;
    color: #fff;
}

@media(max-width:768px) {
    .Page002737 .Pages {
        padding: 30px 0;
    }

    .Page002737 .Pages .p_jump {
        display: none;
    }

    .Page002737 .Pages .p_page a.a_next,
    .Page002737 .Pages .p_page a.a_prev {
        width: 45px;
        display: block;
        margin: 0 5px;
        position: relative;
    }

    .Page002737 .Pages .p_page a.a_next::after,
    .Page002737 .Pages .p_page a.a_prev::after {
        content: '';
        display: block;
        background-image: url(../images/arrow6.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .Page002737 .Pages .p_page a.pagedot {
        width: 45px;
    }

    .Page002737 .Pages .p_page a.a_prev::after {
        transform: rotateZ(90deg);
    }

    .Page002737 .Pages .p_page a.a_next::after {
        transform: rotateZ(-90deg);
    }
}



/* 企业社会责任报告 */
.Report-list {
    padding-top: 60px;
}

.Report-list .item {
    font-size: 18px;
    width: 22.8%;
    margin-right: 2.9%;
    margin-bottom: 30px;
}

.Report-list .item:nth-child(4n) {
    margin-right: 0;
}

.Report-list .item .txt {
    padding: 15px 0;
    text-align: center;
}

.Report-list .item .img_box {
    background: #f4f5f9;
    padding: 15.5%;
}

.Report-list .item .img_box .tu_box {
    box-shadow: 5px 5px 15px rgb(0, 0, 0, .1);
}

.Report-list .item .img_box .tu_box figure {
    display: block;
    padding-bottom: 142.94%;
    background-size: cover;
}

.Report-list .item .img_box .tu_box figure img {
    display: none;
}

@media(max-width:768px) {
    .Report-list .item .txt {
        font-size: 16px;
    }
}

@media(max-width:640px) {
    .Report-list .item {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 2%;
    }

    .Report-list .item:nth-child(2n) {
        margin-right: 0;
    }
}


/* 公开信息披露-基本信息 */
.disclosure-box {
    margin-top: 45px;
}

.disclosure-box .disclosure-table {
    line-height: 1.8;
    margin-bottom: 100px;
    text-align: left;
    overflow: auto;
}

.disclosure-box .disclosure-table th,
.disclosure-box .disclosure-table td {
    font-size: 16px;
    padding: 20px;
    border: solid 1px #e0e0e0;
}

.disclosure-box .disclosure-table th {
    width: 23%;
}

.disclosure-box .disclosure-table td {
    width: 77%;
}

@media(max-width:640px) {
    .disclosure-box .disclosure-table table {
        max-width: 1200px;
        width: max-content;
    }

    .disclosure-box .disclosure-table th,
    .disclosure-box .disclosure-table td {
        padding: 10px;
        font-size: 14px;
    }
}


/* 公开信息披露-公司治理概要 */
.Corporate-list {
    padding: 45px 0 80px;
}

.Corporate-list .item {
    font-size: 18px;
    line-height: 1.7;
    width: 23.53%;
    margin-right: 1.95%;
    margin-bottom: 2%;
    background: #f4f5f9 url(../images/corporate-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s;
}

.Corporate-list .item a {
    padding: 35px 62px;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.Corporate-list .item:nth-child(4n) {
    margin-right: 0;
}

.Corporate-list .item:hover {
    background: #ed1b2e url(../images/corporate-img1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.Corporate-list .item:hover a {
    color: #fff;
}

@media(max-width:1024px) {
    .Corporate-list .item {
        font-size: 16px;
    }

    .Corporate-list .item a {
        padding: 30px;
    }
}

@media(max-width:768px) {

    .Corporate-list .item:nth-child(4n),
    .Corporate-list .item {
        width: 32%;
        margin-right: 1.95%;
    }

    .Corporate-list .item:nth-child(3n) {
        margin-right: 0;
    }
}

@media(max-width:640px) {

    .Corporate-list .item:nth-child(3n),
    .Corporate-list .item:nth-child(4n),
    .Corporate-list .item {
        font-size: 14px;
        width: 49%;
        margin-right: 2%;
    }

    .Corporate-list .item a {
        padding: 20px;
    }

    .Corporate-list .item:nth-child(2n) {
        margin-right: 0;
    }
}


/* 公开信息披露-近3年来股东决议 */
.Shareholder-box {
    padding-top:20px;
}

.Shareholder-list li {
    font-size: 18px;
    padding: 20px 0;
    width: 48%;
    border-bottom: solid 1px #e5e5e5;
}

.Shareholder-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;
}

.Shareholder-list li a .tit {
    width: calc(100% - 100px);
    background: url(../images/arrow8.png) no-repeat left 9px;
    padding-left: 20px;
}

.Shareholder-list li a .tiem {
    color: #999;
    font-size: 16px;
    width: 90px;
    text-align: right;
}

.Shareholder-list li a:hover .tit {
    background: url(../images/arrow7.png) no-repeat left 9px;
}

@media(max-width:640px) {
    .Shareholder-list li {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
    }

    .Shareholder-list li a .tiem {
        font-size: 14px;
    }
}


/* 公开信息披露-董事简历 */
.director-box {
    padding: 20px 0;
}

.director-list li {
    background: #f8f9fa;
    width: 22.8%;
    margin-bottom: 2.8%;
    margin-right: 2.8%;
}

.director-list li:nth-child(4n) {
    margin-right: 0;
}

.director-list li a {
    display: block;
    height: 100%;
    padding: 40px 30px 20px;
}

.director-list li .pic {
    display: flex;
    justify-content: center;
}

.director-list li .pic span {
    display: block;
    width: 58.385%;
    background: #fff;
    display: block;
    overflow: hidden;
    border-radius: 100%;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
}

.director-list li .pic figure {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s;
}

.director-list li .pic figure img {
    display: none;
}

.director-list li .tit {
    margin: 20px 0 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.director-list li .tit span {
    display: inline-block;
    text-transform: uppercase;
    word-break: break-all;
}

.director-list li .introd {
    line-height: 1.7;
    margin-top: 10px;
    font-size: 14px;
    color: #999999;
    text-align: center;
}

.director-list li:hover .pic span figure {
    transform: scale(1.1);
}

/*详情*/
.director-box {
    position: relative;
}

.director-box .retList {
    display: block;
    width: 120px;
    line-height: 38px;
    padding-left: 38px;
    border-radius: 38px;
    background: #f6f7fa;
    color: #666;
    position: absolute;
    right: 0;
    top: 30px;
}

.director-box .retList:before {
    width: 7px;
    height: 4px;
    content: '';
    background: url(../images/arrow10.png) no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    position: absolute;
    left: 28px;
    top: 50%;
    margin-top: -2px;
}

.director-info {}

.director-info .imgBox {
    position: relative;
    width: 37.25%;
    float: left;
    padding-right: 90px;
}

.director-info .imgBox:before {
    width: 100%;
    height: 504px;
    content: '';
    background: url(../images/userBG.jpg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50px;
    left: 0;
}

.director-info .imgBox .userIMG {
    position: relative;
    width: 62.5%;
    border-radius: 50%;
    padding: 20px;
    background: #f8f9fa;
    float: right;
}

.director-info .imgBox .userIMG:before {
    width: 90%;
    height: 90%;
    content: '';
    border-radius: 50%;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.director-info .imgBox .userIMG img {
    width: 100%;
}

.director-info .txtBox {
    float: right;
    width: 59.5%;
    position: relative;
}

.director-info .txtBox:before {
    width: 398px;
    height: 286px;
    content: '';
    background: url(../images/desBG.jpg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
    z-index: -1;
}

.director-info .txtBox .btnBox {
    text-align: right;
}

.director-info .txtBox .btnBox a {
    display: inline-block;
    width: 120px;
    line-height: 38px;
    padding-left: 38px;
    position: relative;
    border-radius: 38px;
    background: #f6f7fa;
    color: #666;
    text-align: left;
    margin-bottom: 10px;
}

.director-info .txtBox .btnBox a:before {
    width: 7px;
    height: 4px;
    content: '';
    background: url(../images/arrow10.png) no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    position: absolute;
    left: 28px;
    top: 50%;
    margin-top: -2px;
}

.director-info .txtBox .btnBox a.next {
    padding-left: 30px;
}

.director-info .txtBox .btnBox a.next:before {
    transform: rotate(-90deg);
    right: 28px;
    left: auto;
}

.director-info .txtBox .btnBox a:hover {
    background: #ee1f2d;
    color: #fff;
}

.director-info .txtBox .desBox {
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.director-info .txtBox .desBox h5 {
    font-size: 24px;
    margin-bottom: 5px;
}

.director-info .txtBox .desBox p {
    line-height: 24px;
    color: #555555;
}

.director-info .txtBox .listDes {}

.director-info .txtBox .listDes .item {
    margin-bottom: 30px;
}

.director-info .txtBox .listDes .item h5 {
    padding-left: 15px;
    position: relative;
    font-size: 18px;
    color: #b09568;
    line-height: 1;
    margin-bottom: 20px;
}

.director-info .txtBox .listDes .item h5:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #b09568;
    position: absolute;
    left: 0;
    top: 0s;
}

.director-info .txtBox .listDes .item .iLi {
    padding: 20px 25px 50px;
    border-radius: 10px;
    background: #f8f9fa;
}

.director-info .txtBox .listDes .item .iLi .tit {
    font-size: 16px;
    color: #555555;
    font-weight: bold;
    margin-bottom: 5px;
}

.director-info .txtBox .listDes .item .iLi p {
    font-size: 16px;
    line-height: 30px;
    color: #555555;
}

.director-info .txtBox .listDes .item .iLi td {
    font-size: 16px;
    line-height: 30px;
    color: #555555;
}


.director-info .txtBox .listDes .wHalf {
    display: flex;
    justify-content: space-between;
}

.director-info .txtBox .listDes .wHalf .item,
.director-info .txtBox .listDes .wHalf .iLi {
    width: 49%;
}

.director-info .txtBox .listDes .wHalf .item .iLi {
    width: 100%;
}

@media(max-width:1024px) {
    .director-list li a {
        padding: 20px 5px;
    }

    .director-list li .tit {
        font-size: 16px;
    }

    .director-info .txtBox .listDes .item .iLi {
        padding: 20px 15px 50px
    }
}

@media(max-width:768px) {

    .director-list li:nth-child(4n),
    .director-list li {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .director-list li:nth-child(3n) {
        margin-right: 0;
    }

    .director-info .imgBox {
        float: none;
        width: 100%;
    }

    .director-info .txtBox {
        float: none;
        width: 100%;
    }

    .director-info .txtBox .btnBox {
        text-align: left;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .director-info .txtBox .listDes .wHalf {
        display: block;
    }

    .director-info .txtBox .listDes .wHalf .item,
    .director-info .txtBox .listDes .wHalf .iLi {
        width: 100%;
    }

    .director-info .txtBox .listDes .wHalf .iLi {
        margin-bottom: 10px;
    }

    .director-box .retList {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}

@media(max-width:640px) {
    .director-box {
        padding: 50px 0;
    }

    .director-list li:nth-child(4n),
    .director-list li:nth-child(3n),
    .director-list li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .director-list li:nth-child(2n) {
        margin-right: 0;
    }
}




/* 单篇 */
.single-piece {
    padding: 50px 0;
    padding-top: 20px;
}



/*  */
.ratio-con {
    line-height: 1.8;
    font-size: 16px;
    color: #333333;
    padding: 70px;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

@media(max-width:640px) {
    .ratio-con {
        padding: 20px;
    }
}



/* 专项信息-关联信息 */
.special-list {
    padding-top: 45px;
}

.special-list li {
    font-size: 18px;
    padding: 20px 0;
    width: 100%;
    border-bottom: solid 1px #e5e5e5;
}

.special-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;
}

.special-list li a .tit {
    width: calc(100% - 100px);
    background: url(../images/arrow8.png) no-repeat left 9px;
    padding-left: 20px;
}

.special-list li a .tiem {
    color: #999;
    font-size: 16px;
    width: 90px;
    text-align: right;
}

.special-list li a:hover .tit {
    background: url(../images/arrow7.png) no-repeat left 9px;
}

@media(max-width:640px) {
    .special-list {
        padding-top: 30px;
    }

    .special-list li {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
    }

    .special-list li a .tiem {
        font-size: 12px;
    }
}


/* 专项信息-股东股权 */
.stockholder-box {
    padding-bottom: 100px;
}

.stockholder-list {
    padding-top: 45px;
}

.stockholder-list li {
    font-size: 18px;
    padding: 20px 0;
    width: 100%;
    border-bottom: solid 1px #e5e5e5;
}

.stockholder-list li:last-child {
    border-bottom: none;
}

.stockholder-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;
}

.stockholder-list li a .tit {
    width: calc(100% - 100px);
    background: url(../images/arrow8.png) no-repeat left 9px;
    padding-left: 20px;
}

.stockholder-list li a .tiem {
    color: #999;
    font-size: 16px;
    width: 90px;
    text-align: right;
}

.stockholder-list li a:hover .tit {
    background: url(../images/arrow7.png) no-repeat left 9px;
}

.stockholder-box .category-box {
    border-bottom: solid 1px #e5e5e5;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.stockholder-box .category-title {
    margin-bottom: 20px;
}

.stockholder-box .category-title span {
    font-size: 22px;
    font-weight: bold;
    position: relative;
}

.stockholder-box .category-title span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 3em;
    height: 6px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
    background-size: 100% 100%;
}

.stockholder-box .category-box:last-child {
    border-bottom: none;
}

@media(max-width:640px) {
    .stockholder-list {
        padding-top: 30px;
    }

    .stockholder-list li {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
    }

    .stockholder-list li a .tiem {
        font-size: 12px;
    }
}



/* 专项信息-互联网保险 */
.insurance-list {
    padding: 65px 0 0;
}

.insurance-list .item {
    font-size: 18px;
    line-height: 1.7;
    width: 23.53%;
    margin-right: 1.95%;
    margin-bottom: 2%;
    background: #f4f5f9 url(../images/corporate-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s;
}

.insurance-list .item a {
    display: block;
    width: 100%;
    padding: 50px 20px;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.insurance-list .item:nth-child(4n) {
    margin-right: 0;
}

.insurance-list .item:hover {
    background: #ed1b2e url(../images/corporate-img1.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.insurance-list .item:hover a {
    color: #fff;
}

@media(max-width:1024px) {
    .insurance-list .item {
        font-size: 16px;
    }

    .insurance-list .item a {
        padding: 30px;
    }
}

@media(max-width:768px) {

    .insurance-list .item:nth-child(4n),
    .insurance-list .item {
        width: 32%;
        margin-right: 1.95%;
    }

    .insurance-list .item:nth-child(3n) {
        margin-right: 0;
    }
}

@media(max-width:640px) {
    .stockholder-box {
        padding-bottom: 50px;
    }

    .insurance-list {
        padding-top: 35px;
    }

    .insurance-list .item:nth-child(3n),
    .insurance-list .item:nth-child(4n),
    .insurance-list .item {
        font-size: 14px;
        width: 49%;
        margin-right: 2%;
    }

    .insurance-list .item a {
        padding: 30px 20px;
    }

    .insurance-list .item:nth-child(2n) {
        margin-right: 0;
    }
}



/* 专项信息-互联网保险-平台信息 */
.platform-box {
    padding: 50px 0;
}

.platform-box .plat-tit {
    margin-bottom: 30px;
    font-size: 22px;
    text-align: center;
}

.platform-box .plat-tit span {
    font-weight: bold;
    position: relative;
}

.platform-box .plat-tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
    background-size: 100% 100%;
}

.platform-one {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: solid 1px #e0e0e0;
}

.platform-one .table_box table {
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.platform-one .table_box table th {
    padding: 20px 10px;
    background: #f8f9fa;
    border: solid 1px #e0e0e0;
}

.platform-one .table_box table td {
    font-size: 16px;
    padding: 20px 10px;
    border: solid 1px #e0e0e0;
}

.platform-one .tishi {
    padding: 30px 0;
    color: #999999;
}

.platform-one .tishi a {
    color: #999999;
}

.platform-two {
    margin-bottom: 50px;
}

.platform-two .table_box table {
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.platform-two .table_box table th {
    padding: 20px 40px;
    background: #f8f9fa;
    border: solid 1px #e0e0e0;
}

.platform-two .table_box table td {
    font-size: 16px;
    padding: 20px 40px;
    border: solid 1px #e0e0e0
}

.platform-two .table_box table .line {
    border-bottom: solid 1px #ed1b2e;
    color: #ee1f2d;
    text-transform: uppercase;
}

.platform-two .table_box table .wtd10 {
    width: 110px;
}

.platform-two .table_box table .wtd15 {
    width: 150px;
}

.platform-two .table_box table .wtd35 {
    width: 35%;
}

.platform-two .table_box table .wtd21 {
    width: 21%;
}

.platform-two .table_box2 table th {
    padding: 10px;
}

.platform-two .table_box2 table th span {
    display: inline-block;
}

.platform-two .table_box2 table td {
    padding: 10px;
}

/* 加载更多 */
.load-box .icon span {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    background-image: url(../images/load-icon.png);
    animation: mymove 2s linear infinite;
    -webkit-animation: mymove 2s linear infinite;
}

.load-box .wz {
    margin-top: 10px;
    font-size: 14px;
    color: #999999;
}

@keyframes mymove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:1024px) {
    .platform-box .table_box {
        overflow: auto;
    }

    .platform-box .table_box table {
        max-width: 1200px;
        width: 120%;
    }

    .platform-box .table_box th,
    .platform-box .table_box td {
        padding: 10px !important;
        font-size: 14px !important;
    }

    .platform-two .table_box table {
        width: 1200px;
    }
}


@media(max-width:640px) {
    .platform-two {
        margin-bottom: 20px;
    }
}


/* 02_专项信息-互联网保险-其他信息 */
.OtherInfo-box {
    padding: 70px 0;
    border-bottom: solid 1px #ededed;
}

.OtherInfo-box:last-child {
    border-bottom: none;
    margin-bottom: 100px;
}

.OtherInfo-box .Other-tit {
    margin-bottom: 35px;
    font-size: 22px;
    text-align: center;
}

.OtherInfo-box .Other-tit span {
    font-weight: bold;
    position: relative;
}

.OtherInfo-box .Other-tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
    background-size: 100% 100%;
}

.OtherInfo-box .Other-one .item {
    width: 48.53%;
    border-radius: 10px;
    overflow: hidden;
}

.OtherInfo-box .Other-one .item .tit {
    font-weight: bold;
    color: #fff;
    padding: 25px 0;
    text-align: center;
    font-size: 18px;
    background-image: linear-gradient(to top, #bfaf92, #af9668);
}

.OtherInfo-box .Other-one .item .pic {
    padding: 60px;
    background: #f8f9fa;
}

.OtherInfo-box .Other-one .item .pic figure {
    width: 75%;
    padding-bottom: 56.483%;
    background-size: cover;
    margin: 0 auto;
}

.OtherInfo-box .Other-one .item .pic figure img {
    display: none;
}

.OtherInfo-box .Other-two {
    margin-bottom: 45px;
}

.OtherInfo-box .Other-two:last-child {
    margin-bottom: 0;
}

.OtherInfo-box .Other-two .tit {
    line-height: 1.2;
    padding-left: 10px;
    font-size: 18px;
    color: #af9668;
    font-weight: bold;
    border-left: solid 3px #af9668;
    margin-bottom: 20px;
}

.OtherInfo-box .Other-two .tit span {
    display: block;
}

.OtherInfo-box .Other-two .table_box table {
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.OtherInfo-box .Other-two .table_box table th {
    padding: 20px 40px;
    background: #f8f9fa;
    border: solid 1px #e0e0e0;
}

.OtherInfo-box .Other-two .table_box table td {
    font-size: 16px;
    padding: 20px 40px;
    border: solid 1px #e0e0e0
}

.OtherInfo-box .introd {
    color: #333333;
    line-height: 2;
}

.OtherInfo-box .Other-three .item {
    font-size: 16px;
    padding: 40px;
    background: #f8f9fa;
    width: 49%;
    margin-bottom: 2%
}

.OtherInfo-box .Other-three .item .tit {
    font-size: 18px;
    color: #af9668;
    font-weight: bold;
    margin-bottom: 10px;
}

.OtherInfo-box .Other-three .item .con_ke {
    line-height: 1.7;
    color: #333333;
}

.OtherInfo-box .Other-three .item .oil a {
    color: #ee1f2d;
    text-decoration: underline;
}

.OtherInfo-box .Other-three .item li {
    position: relative;
    padding-left: 15px;
}

.OtherInfo-box .Other-three .item li::before {
    position: absolute;
    left: 0;
    top: 13px;
    background: #cccccc;
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    overflow: hidden;
}

.OtherInfo-box .Other-three .item li a {
    color: #ee1f2d;
}

.OtherInfo-box .Other-four {
    padding: 80px 150px;
    overflow: hidden;
    background-size: cover;
    border-radius: 10px;
}

.OtherInfo-box .Other-four .but {
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    background: #ee1f2d;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(0, 0, 0, .15);
}

.OtherInfo-box .Other-four .but span {
    background: url(../images/arrow9.png) no-repeat center right;
    padding-right: 20px;
}

.OtherInfo-box .Other-five .item {
    padding: 40px 0;
    width: 22.5%;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s;
    margin-bottom: 3%
}

.OtherInfo-box .Other-five .item .icon .Juz {
    position: relative;
    border-radius: 100%;
    overflow: hidden;
    background-image: linear-gradient(to top, #bfaf92, #af9668);
    transition: all .5s;
    width: 70px;
    height: 70px;
}

.OtherInfo-box .Other-five .item .icon .Juz .yinc {
    position: absolute;
    left: 0;
    opacity: 0;
}

.OtherInfo-box .Other-five .item .txt {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
}

.OtherInfo-box .Other-five .item:hover {
    background-image: linear-gradient(to top, #bfaf92, #af9668);
}

.OtherInfo-box .Other-five .item:hover .txt {
    color: #fff;
}

.OtherInfo-box .Other-five .item:hover .icon .Juz {
    background: #fff;
}

.OtherInfo-box .Other-five .item:hover .icon .Juz .xias {
    opacity: 0;
}

.OtherInfo-box .Other-five .item:hover .icon .Juz .yinc {
    opacity: 1;
}

.OtherInfo-box .Other-six {
    font-size: 16px;
}

@media(max-width:1024px) {
    .OtherInfo-box .Other-one .item .pic figure {
        width: 100%;
        padding-bottom: 74%;
    }
}

@media(max-width:640px) {
    .OtherInfo-box {
        padding: 50px 0;
    }

    .OtherInfo-box .Other-tit {
        font-size: 18px;
    }

    .OtherInfo-box .Other-one .item .pic {
        padding: 20px;
    }

    .OtherInfo-box .Other-one .item .tit {
        padding: 15px 0;
    }

    .OtherInfo-box .Other-two .table_box table td,
    .OtherInfo-box .Other-two .table_box table th {
        padding: 20px;
    }

    .OtherInfo-box .Other-three .item {
        width: 100%;
        margin-bottom: 20px;
    }

    .OtherInfo-box .Other-four {
        padding: 50px 60px;
    }

    .OtherInfo-box .Other-five .item {
        width: 100%;
        margin-bottom: 20px;
    }

    .OtherInfo-box .table_box {
        overflow: auto;
    }

    .OtherInfo-box .Other-two .table_box table {
        max-width: 1200px;
        width: max-content;
    }
}



/* 健康管理服务 */
.Health-shell {
    position: relative;
    padding: 60px 0;
    border-bottom: solid 1px #e0e0e0;
}

.Health-shell:last-child {
    border-bottom: none;
    margin-bottom: 80px;
}

.Health-shell .Health-tit {
    font-size: 22px;
    text-align: center;
}

.Health-shell .Health-tit span {
    font-weight: bold;
    position: relative;
}

.Health-shell .Health-tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
    background-size: 100% 100%;
}

.Health-shell .table_box {
    margin-top: 35px;
}

.Health-shell .table_box .table_con td {
    border-top: none;
}

.Health-shell .table_box .table_con {
    /*max-height: 510px;*/
}

.Health-shell .mCSB_inside>.mCSB_container {
    margin-right: 0;
}

.Health-shell .mCSB_scrollTools {
    width: 2px;
}

.Health-shell .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0;
    width: 2px;
    background: #ed1b2e;
}

.Health-shell .mCSB_scrollTools .mCSB_draggerRail {
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.Health-shell .Health-tishi {
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

.Health-shell .table_box table {
    text-align: center;
    width: 100%;
}

.Health-shell .table_box table th {
    font-size: 16px;
    padding: 20px 10px;
    background: #f8f9fa;
    border: solid 1px #e0e0e0;
}

.Health-shell .table_box table td {
    font-size: 15px;
    padding: 10px;
    border: solid 1px #e0e0e0;
}

.Health-shell .table_box .wtd10 {
    width: 120px;
}

.Health-shell .table_box .wtd20 {
    width: 20%;
}

.Health-shell .table_box .wtd32 {
    width: 27%;
}

.Health-point {
    position: absolute;
    margin-top: 120px;
    left: 50px;
    z-index: 5;
    justify-content: center !important;
    margin-bottom: 10px;
}

.Health-point::after {
    content: '';
    display: block;
    width: 1px;
    height: 85%;
    position: absolute;
    top: 5px;
    left: 6px;
    background: #cccccc;
}

.Health-point .item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    z-index: 5;
}

.Health-point .item::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #cccccc;
    border: solid 4px #fff;
}

.Health-point .item:last-child {
    margin-bottom: 0;
}
.Health-point .item a {
    font-size: 16px;
    transition: all 0.5s;
}
.Health-point .item.active a {
    color: #ed1b2e;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.Health-point .item.active::before {
    background: #ed1b2e;
}

.Health-point.onFixed {
    position: fixed;
    top: 50px;
}

@media(max-width:1024px) {
    .Health-point {
        position: relative;
        margin-top: 60px;
        left: 0;
    }
}


/* 信用评级 */
.Credit-box {
    padding: 70px 0;
}

.Credit-table .table_box table {
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.Credit-table .table_box table th {
    padding: 20px 40px;
    background: #f8f9fa;
    border: solid 1px #e0e0e0;
}

.Credit-table .table_box table td {
    font-size: 16px;
    padding: 20px 40px;
    border: solid 1px #e0e0e0
}

.Credit-table .table_box table .line {
    border-bottom: solid 1px #ed1b2e;
    color: #ee1f2d;
    text-transform: uppercase;
}

.Credit-table .table_box table .wtd10 {
    width: 110px;
}

.Credit-table .table_box table .wtd15 {
    width: 150px;
}

.Credit-table .table_box table .wtd35 {
    width: 35%;
}

.Credit-table .table_box table .wtd21 {
    width: 21%;
}



/* 媒体中心-菜单 */
.menu-search {
    font-size: 14px;
    margin: 60px 0 0;
    line-height: 40px;
}

.menu-search .tio {
    margin-right: 15px;
    color: #999999;
}

.menu-search .select_box select,
.menu-search .search_input input {
    margin: 0;
    display: block;
    width: 100%;
    background: #f4f5f9;
    padding: 0 15px;
    height: 40px;
    border: none;
}

.menu-search .select_box {
    margin-right: 15px;
    width: 250px;
    border-radius: 25px;
    overflow: hidden;
}

.menu-search .search_input {
    margin-right: 10px;
    width: 250px;
    border-radius: 25px;
    overflow: hidden;
}

.menu-search .select_box select {
    margin: 0;
    display: block;
    background: #f4f5f9 url(../images/arrow10.png);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: 95% center;
}

.menu-search .select_box select::-ms-expand {
    display: none;
}

.menu-search .but {
    width: 90px;
    background: #ed1b2e;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
margin-left: 10px;
    overflow: hidden;
}

@media(max-width:1024px) {
    .menu-search {
        flex-wrap: wrap;
    }

    .menu-search .notice {
        justify-content: space-between;
        width: 100%;
        margin-bottom: 15px;
    }

    .menu-search .select_box {
        width: calc(100% - 75px);
        margin-right: 0;
    }

    .menu-search .inquire_box {
        width: 100%;
    }

    .menu-search .search_input {
        width: calc(100% - 75px);
        margin-right: 0px;
    }
    .menu-search .but {
        width: 60px;
      
    }
}

/* 媒体中心-信息公告 */
.news-box {
    margin-top: 25px;
}

.news-box .news-list li a {
    padding: 20px 0;
    border-bottom: solid 1px #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-box .news-list li .tit {
    font-size: 18px;
    width: calc(100% - 100px);
    background: url(../images/arrow8.png) no-repeat left 9px;
    padding-left: 20px;
}

.news-box .news-list li .tit span {
    color: #af9668;
    margin-right: 10px;
}

.news-box .news-list li .tiem {
    text-align: right;
    width: 100px;
    color: #999999;
}

.news-box .news-list li a:hover {
    color: #ed1b2e;
}

.news-box .news-list li a:hover .tit span {
    color: #ed1b2e;
}

.news-box .news-list li a:hover .tit {
    background: url(../images/arrow7.png) no-repeat left 9px;
}

@media(max-width:640px) {
    .news-box .news-list li .tit {
        padding-left: 15px;
        font-size: 16px;
        background: url(../images/arrow8.png) no-repeat left 8px;
    }
}

/* 媒体中心-企业新闻 */
.corporate-list li {
    padding: 40px 0;
    border-bottom: solid 1px #eee;
}

.corporate-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
}

.corporate-list li .tit {
    font-size: 22px;
    color: #333333;
    font-weight: bold;
}

.corporate-list li .tit span {
    margin-right: 10px;
    color: #af9668;
}

.corporate-list li .tiem {
    margin: 10px 0;
    color: #999999;
}

.corporate-list li .text {
    direction: ltr;
    width: 75%;
}

.corporate-list li .pic {
    width: 17.648%;
    border-radius: 15px;
    overflow: hidden;
}

.corporate-list li .pic figure {
    width: 100%;
    padding-bottom: 66.67%;
    transition: all .5s;
    background-size: cover;
}

.corporate-list li .introd {
    font-size: 16px;
    color: #999999;
    line-height: 1.8;
}

.corporate-list li a:hover .tit {
    color: #ed1b2e;
}

.corporate-list li a:hover figure {
    transform: scale(1.1);
}

@media(max-width:640px) {
    .corporate-list li {
        padding: 20px 0;
    }

    .corporate-list li .tit {
        font-size: 18px;
        font-weight: 500;
    }

    .corporate-list li .introd {
        font-size: 14px;
    }

    .corporate-list li a {
        flex-wrap: wrap;
    }

    .corporate-list li .text {
        width: 100%;
    }

    .corporate-list li .pic {
        margin-bottom: 20px;
        width: 100%;
    }
}


/* 媒体中心-详情 */
.corporate-info {
    padding: 70px 0;
    min-height: 450px
}

.corporate-info .title_box {
    padding: 35px 0;
    background: #f6f7fa;
    text-align: center;
}

.corporate-info .title_box .title {
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}

.corporate-info .title_box .tiem {
    color: #999999;
    margin-top: 15px;
}

.corporate-info .info-con {
    font-size: 16px;
    line-height: 1.8;
    padding: 50px 70px;
}

.corporate-info .back-box {
    font-size: 16px;
    line-height: 2;
    font-family: 'SourceHanSansCN-Normal';
    padding-top: 50px;
    border-top: solid 1px #e8e8e8;
}

.corporate-info .back-box dl {
    display: block;
    width: calc(100% - 120px);
}

.corporate-info .back-box dd {
    display: flex;
    align-items: center;
}

.corporate-info .back-box dd span {
    width: 70px;
}

.corporate-info .back-box dd a {
    width: calc(100% - 70px);
    line-height: 40px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.corporate-info .back-box dd a:hover {
    color: #ed1b2e;
}

.corporate-info .back-box .back {
    width: 100px;
}

.corporate-info .back-box .back a {
    line-height: 40px;
    display: block;
    background: #ed1b2e;
    color: #fff;
    text-align: center;
}

@media(max-width:640px) {
    .corporate-info .info-con {
        padding: 20px 10px;
    }

    .corporate-info .title_box .title {
        font-size: 18px;
    }
}


/* 中信保诚传家 */
.Prudential-box {
    padding: 80px 0;
}

.Prudential-box .item {
    width: 48.53%;
    margin-bottom: 2%;
    border-radius: 15px;
    overflow: hidden;
    transition: all .5s;
}

.Prudential-box .item a {
    display: block;
    position: relative;
}

.Prudential-box .item a::after {
    background-image: url(../images/precept_back1.png);
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .5s;
}

.Prudential-box .item .pic figure {
    padding-bottom: 45.455%;
}

.Prudential-box .item .introd {
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 55px;
    z-index: 5;
    width: 100%;
    height: 100%;
    color: #333333;
    transition: all .5s;
}

.Prudential-box .item .introd .tit {
    font-size: 24px;
}

.Prudential-box .item .introd .des {
    margin: 15px 0;
}

.Prudential-box .item .introd .more {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 0 20px;
    line-height: 40px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0, 0, 0, .1);
}

.Prudential-box .item .introd .more span {
    background: url(../images/more.png) no-repeat center right;
    padding-right: 25px;
}

.Prudential-box .item:hover {
    box-shadow: 0 5px 15px rgb(0, 0, 0, .15);
}

.Prudential-box .item:hover a::after {
    background-image: url(../images/precept_back2.png);
}

.Prudential-box .item:hover a .introd {
    color: #fff;
}

.Prudential-box .item:hover a .introd .more span {
    color: #ed1b2e;
}


/* 中信保诚传家-专属方案 */
.Proprietary-box {
    padding: 80px 0;
    position: relative;
}

.Proprietary-box::before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    display: block;
    background-image: url(../images/circle_back1.png);
    width: 410px;
    height: 410px;
}

.Proprietary-box .list-one {
    margin: 0 auto;
    padding: 0 18%;
    border-bottom: solid 1px #dedede;
}

.Proprietary-box .list-one .item {
    width: 100%;
    margin-bottom: 90px;
    direction: rtl;
}

.Proprietary-box .list-one .item .pic {
    width: 29.872%;
}

.Proprietary-box .list-one .item .text {
    direction: ltr;
    position: relative;
}

.Proprietary-box .list-one .item .Juz {
    position: relative;
    padding-right: 80px;
}

.Proprietary-box .list-one .item .icon {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.Proprietary-box .list-one .item .tit {
    position: relative;
    font-size: 24px;
    color: #333333;
}

.Proprietary-box .list-one .item .tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
}

.Proprietary-box .list-one .item .tishi {
    margin: 10px 0;
    font-size: 16px;
    color: #af9668;
}

.Proprietary-box .list-one .item .introd {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.Proprietary-box .list-one .item:nth-child(2n) {
    direction: ltr;
}

.Proprietary-box .list-one .item:nth-child(2n) .text {
    direction: ltr;
}

.Proprietary-box .list-two {
    padding: 75px 0 0;
}

.Proprietary-box .list-two .tit {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

.Proprietary-box .list-two .tit span {
    position: relative;
}

.Proprietary-box .list-two .tit span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: url(../images/line.png) no-repeat;
    z-index: -1;
}

.Proprietary-box .con_box {
    position: relative;
}

.Proprietary-box .con_box .Juz {
    width: 53.5%;
    text-align: center;
}

.Proprietary-box .con_box .itme {
    font-size: 18px;
    position: absolute;
    z-index: 5;
}

.Proprietary-box .con_box .itme .back {
    background: url(../images/round-icon.png) no-repeat;
    background-size: 100% 100%;
    padding: 5px;
    border-radius: 100px;
    overflow: hidden;
}

.Proprietary-box .con_box .itme::after {
    position: absolute;
    top: 50%;
    right: -34px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #af9668;
    border-radius: 100%;
    margin-top: -4px;
}

.Proprietary-box .con_box .itme::before {
    position: absolute;
    top: 50%;
    right: -40px;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #af9668;
    border-radius: 100%;
    opacity: .2;
    margin-top: -10px;
}

.Proprietary-box .con_box .itme span {
    display: block;
    color: #fff;
    background: #af9668;
    padding: 10px 40px;
    border-radius: 100px;
    overflow: hidden;
}

.Proprietary-box .con_box .itme:nth-child(2n - 1)::before {
    left: -40px;
    right: auto;
}

.Proprietary-box .con_box .itme:nth-child(2n - 1)::after {
    left: -34px;
    right: auto;
}

.Proprietary-box .con_box .itme:nth-child(2) {
    top: 4%;
    left: 14.3%;
}

.Proprietary-box .con_box .itme:nth-child(3) {
    top: 6.5%;
    right: 22%;
}

.Proprietary-box .con_box .itme:nth-child(4) {
    top: 29%;
    left: 14.7%;
}

.Proprietary-box .con_box .itme:nth-child(5) {
    top: 31%;
    right: 7.2%;
}

.Proprietary-box .con_box .itme:nth-child(6) {
    top: 54%;
    left: 11.1%;
}

.Proprietary-box .con_box .itme:nth-child(7) {
    top: 55%;
    right: 11.1%;
}

.Proprietary-box .con_box .itme:nth-child(8) {
    top: 79%;
    left: 18.2%;
}

.Proprietary-box .con_box .itme:nth-child(9) {
    top: 80%;
    right: 12%;
}

.Proprietary-box::after {
    position: absolute;
    left: 0;
    bottom: 20%;
    content: '';
    display: block;
    background-image: url(../images/circle_back2.png);
    width: 405px;
    height: 819px;
    z-index: -1;
}

@media(max-width:1024px) {
    .Proprietary-box .con_box .Juz .pic {
        max-width: 400px;
        margin-bottom: 20px;
    }

    .Proprietary-box .con_box .itme {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .Proprietary-box .con_box .itme::before {
        left: -40px !important;
        right: auto;
    }

    .Proprietary-box .con_box .itme::after {
        left: -34px !important;
        right: auto;
    }
}

@media(max-width:640px) {
    .Proprietary-box .list-one {
        padding: 0 5%;
    }

    .Proprietary-box .list-one .item .icon img {
        max-width: 80px;
    }

    .Proprietary-box .list-one .item .introd {
        font-size: 13px;
    }

    .Proprietary-box .list-one .item .Juz {
        padding-right: 30px;
    }

    .Proprietary-box .list-one .item:nth-child(2n) .Juz {
        padding-left: 30px;
        padding-right: 0;
    }

    .Proprietary-box .con_box .Juz {
        width: 80%;
    }

    .Proprietary-box .con_box .itme {
        font-size: 15px;
    }

    .Proprietary-box .con_box .itme::before {
        left: -25px !important;
    }

    .Proprietary-box .con_box .itme::after {
        left: -19px !important;
    }
}



/* 中信保诚传家-专属服务 */
.dedicated-box {
    padding: 80px 0;
}

.dedicated-box .dedicated_tit {
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    margin-top: 75px;
}

.dedicated-box .dedicated_con {
    margin-top: 30px;
    text-align: center;
}

.dedicated-box .video_box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.dedicated-box .video_box video {
    display: block;
    width: 100%
}

.dedicated-box .video_box .video_but {
    display: flex;
    align-items: center;
    font-size: 16px;
    position: absolute;
    left: 50px;
    bottom: 50px;
    color: #fff;
}

.dedicated-box .video_box .video_but::after {
    cursor: pointer;
    margin-left: 20px;
    width: 89px;
    height: 41px;
    content: '';
    display: block;
    background-image: url(../images/arrow11.png);
}


/* 中信保诚传家-专属团队 */
.team-box {
    padding: 80px 0;
}

.team-box .team-one {
    margin-bottom: 70px;
}

.team-box .team-one .pic {
    border-radius: 15px;
    overflow: hidden;
}

.team-two .tit {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}

.team-two .tishi {
    line-height: 1.8;
    font-size: 16px;
    color: #af9668;
    max-width: 690px;
    margin: 20px auto 0;
    text-align: center;
}

.team-two .list {
    margin-top: 70px;
}

.team-two .list .item {
    padding: 50px;
    width: 31%;
    margin-right: 3.5%;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom:3.5%
}

.team-two .list .item:nth-child(3n) {
    margin-right: 0;
}

.team-two .list .item .icon {
    display: flex;
    justify-content: center;
}

.team-two .list .item .icon span {
    display: block;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to top, #bfaf92, #af9668);
    transition: all .5s;
    width: 70px;
    height: 70px;
}

.team-two .list .item .des {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-top: 30px;
}

@media(max-width:640px) {
    .team-two .list .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .team-box .team-one {
        margin-bottom: 30px;
    }
}


/* 中信保诚传家-专属体验 */
.experience-box {
    padding: 100px 150px 150px;
    background-image: url(../images/experience-back.jpg);
    background-size: cover;
}

.experience-box .img_shell {
    margin-bottom: 70px;
    text-align: center;
}

.experience-box .line_box {
    font-size: 18px;
    color: #ab866c;
    line-height: 1.8;
    padding: 35px 40px;
    background: url(../images/line_back.png) no-repeat;
    background-size: 100% 100%;
}

@media(max-width:1024px) {
    .experience-box {
        padding: 50px 50px 100px;
    }
}

@media(max-width:640px) {
    .experience-box {
        padding: 50px 20px;
    }
}

/* 置顶 */
.Pinned {
    cursor: pointer;
    position: fixed;
    z-index: 8;
    bottom: 10%;
    right: 2%;
    width: 54px;
    height: 54px;
    background: #fff url(../images/Pinned.png) no-repeat;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0, 0, 0, .2);
}

.fanannw {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 10px 20px;
    max-width: 150px;
    margin-left: auto;
    margin-top: 15px;
    border-radius: 50px;
    background: #f7f5f2;
    
    margin-bottom: 10px;
}

.company-one .company-txt .lowimg {
    position: absolute;
    top: 1%;
    right: 37%;
}


.Inside-shell .company-one .auto-1360 {
    position: relative;
}
.lowimg-tan {
    left: 40%;
    height: 100%;
    position: absolute;
    width: 100%;
    max-width: 500px;
    top: 2%;
    z-index: 99;
    display: none;
    display: none;
}

.lowimg-tan .tantan {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    background: #fff;
    border-radius: 20px;
    padding: 1em 1em;
    border: 1px solid #fe1c1b;
    font-size: 16px;
    line-height: 2;
}
.lowimg-tan .tantan .style4 {
    overflow-y: auto;
    display: block;font-size: 13px;
}
.lowimg-tan .tantan strong {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
}

.lowimg-tan .tantan .xx {
    width: 40px;
    height: 40px;
    position: absolute;
    right: -20px;
    top: -20px;
    line-height: 1;
    font-size: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 #9b9b9b;
    display: none;
}

.lowimg-tan .tantan .xx:before {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: #fe1c1b;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.lowimg-tan .tantan .xx:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: #fe1c1b;
    transform: rotate(-45deg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media only screen and (max-width: 1024px){
.company-one .company-txt .lowimg {
    position: relative;
    top: 0;
    right: 0;
    text-align: right;
    margin-bottom: 10px;
}
}


@media only screen and (max-width: 769px){
.lowimg-tan .tantan {
    padding: 20px;
}
.lowimg-tan {
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    top: 2%;
}
.fanannw {
    margin-top: 10px;
    margin-bottom: 10px;
}
}

.loe {
    display: flex;
    align-items: center;
}

.loe .biatww {
    font-size: 16px;
    background-image: -webkit-linear-gradient(90deg, rgb(191, 175, 146) 0%, rgb(175, 150, 104) 100%);
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
    margin: 10px 0;
}@media only screen and (max-width: 769px){

.loe .biatww {
  
    margin: 10px 0;
}
}

.mCustomScrollBox {
    max-height: initial !important;
}


.uwidtan {
    position: fixed;
    width: 100%;
    /* height: 100%; */
    left: 0;
    top: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    padding: 2em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 17px 0px #00000085;
    display: none;
    z-index: 999;
}

.uwidtan .xx {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    right: -1.5em;
    position: absolute;
    top: -1.5em;
    box-shadow:0 0 17px 0px #00000085;
    z-index: 9999;
}

.uwidtan .xx:before,.uwidtan .xx:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: #000;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    transform: rotate(45deg);
}

.uwidtan .xx:after {
    transform: rotate(-45deg);
}

.soull {
    display: flex;
    justify-content: flex-end;
}

.soull input {
    border: 1px solid #d9d9d9;
    padding: 5px 10px;
    width: auto;
    margin: 0;
    display: block;
    width: 100%;
    background: #f4f5f9;
    padding: 0 15px;
    height: 40px;
    border: none;
    margin-right: 10px;
    width: 250px;
    border-radius: 25px;
}

.soull a {
    font-size: 16px;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d1d1d1;
    background: #ed1b2e;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
    overflow: hidden;
}


.secondarytop .on a,.secondarytop .item:hover a {
    background: transparent !important;
    color: #ed1b2e !important;
    box-shadow: none !important;
}



.secondarytop .item::after {
    background: none;
    border-bottom: 2px solid #ed1b2e;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0;
}

.secondarytop  a {
    background: transparent !important;
}


/* 市场活动 */
@font-face {
    font-family: "AlimamaFangYuanTiVF";
    src: url("../fonts/AlimamaFangYuanTiVF-Thin-2.ttf");
}

.market-main {
    padding: 135px 0;
    min-height: 30vh;
    background: #fbf1f1 url(/uploadfiles/images/market-bg1.png);
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}

    .market-main .acti-icon1 {
        position: absolute;
        left: 0;
        top: -2.8vw;
        width: 9.4277vw;
        height: 9.4277vw;
        background-image: url(/uploadfiles/images/market-round1.png);
        background-size: contain;
    }

.market-tit {
    font-family: "AlimamaFangYuanTiVF";
    font-size: 60px;
    font-weight: normal;
    font-stretch: normal;
    color: #333333;
    font-weight: bold;
    text-align: center;
}

.Clanmu {
    padding-top: 70px;
    font-size: 20px;
    font-weight: bold;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

    .Clanmu li {
        position: relative;
    }

        .Clanmu li a {
            line-height: 2;
            color: #333;
            display: block;
            text-align: center;
            padding: 20px;
            width: 300px;
            position: relative;
            z-index: 3;
        }

        .Clanmu li::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 2%;
            width: 110%;
            height: 100%;
            background-image: linear-gradient(90deg,#fff 0%,#fff 100%), linear-gradient(#fff,#fff);
            background-blend-mode: normal,normal;
            border-radius: 50%;
            transform: rotate(-8deg);
            transition: all .5s;
        }

        .Clanmu li:last-child::after {
            left: auto;
            right: 0;
        }

        .Clanmu li.active {
            z-index: 5;
        }

            .Clanmu li:hover a,
            .Clanmu li.active a {
                color: #fff;
            }

            .Clanmu li:hover::after,
            .Clanmu li.active::after {
                background-image: linear-gradient(90deg,#ff887c 0%,#ee1f2d 100%), linear-gradient(#ee1f2d,#ee1f2d);
                box-shadow: -1px 30px 51px 0px rgba(239, 39, 51, 0.4);
            }

.Channel-one {
    position: relative;
}

    .Channel-one .list {
        margin-top: 75px;
        --gutter: 30px;
        --columns: 2;
        --row-size: calc(( var(--content-width) -(var(--gutter) *(var(--columns) - 1))) / var(--columns));
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 30px;
        grid-auto-rows: minmax(var(--row-size),auto);
        position: relative;
        z-index: 3;
    }

        .Channel-one .list .item .cnetr {
            position: relative;
            float: right;
            height: 100%;
            width: 79.7%;
        }

        .Channel-one .list .item .pic {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

            .Channel-one .list .item .pic::after {
                content: '';
                display: block;
                position: absolute;
                width: 100%;
                height: 52%;
                bottom: 0;
                z-index: 2;
            }

            .Channel-one .list .item .pic img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .Channel-one .list .item .text {
            color: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 40px;
            z-index: 3;
        }

            .Channel-one .list .item .text .tit {
                font-size: 24px;
                font-weight: bold;
            }

            .Channel-one .list .item .text .des {
                margin-top: 10px;
                font-size: 16px;
            }

        .Channel-one .list .item:nth-child(1) {
            width: 120.303%;
            grid-column: 1/2;
            grid-row: 3/1;
        }

            .Channel-one .list .item:nth-child(1) .cnetr {
                width: 100%;
            }

            .Channel-one .list .item:nth-child(1) .pic {
                border-radius: 200px 20px 20px 20px;
            }

                .Channel-one .list .item:nth-child(1) .pic::after {
                    background-image: linear-gradient(to top,#2d944d,rgba(255,255,255,0));
                }

        .Channel-one .list .item:nth-child(2) .pic {
            border-radius: 20px;
        }

            .Channel-one .list .item:nth-child(2) .pic::after {
                background-image: linear-gradient(to top,#eea51a,rgba(255,255,255,0));
            }

        .Channel-one .list .item:nth-child(3) .pic {
            border-radius: 20px 20px 100px 20px;
        }

            .Channel-one .list .item:nth-child(3) .pic::after {
                background-image: linear-gradient(to top,#1d4a9e,rgba(255,255,255,0));
            }

    .Channel-one::after {
        position: absolute;
        top: 93px;
        left: -5.2vw;
        content: '';
        display: block;
        width: 24.4799vw;
        height: 21.3544vw;
        background-image: url(/uploadfiles/images/market-bg2.png);
        background-size: cover;
        z-index: 1;
    }

    .Channel-one .list .item:nth-child(1) .arrow {
        position: absolute;
        bottom: 30px;
        right: 30px;
        display: block;
        width: 116px;
        height: 116px;
        background-image: linear-gradient(90deg,#ff887c 0%,#ee1f2d 100%), linear-gradient(#000000,#000000);
        background-blend-mode: normal,normal;
        box-shadow: -1px 30px 51px 0px rgba(239, 39, 51, 0.4);
        border-radius: 100%;
        overflow: hidden;
        z-index: 3;
    }

        .Channel-one .list .item:nth-child(1) .arrow::after {
            width: 100%;
            height: 100%;
            content: '';
            display: block;
            background-image: url(/uploadfiles/images/market-icon1.svg);
            background-repeat: no-repeat;
            background-position: center;
        }

.Channel-two {
    padding: 65px 0;
}

    .Channel-two .tit-box {
        text-align: center;
    }

    .Channel-two .con-shell {
        display: none;
    }

    .Channel-two .tab-con {
        margin-top: 80px;
    }

    .Channel-two .tab-con {
        font-size: 0;
    }

        .Channel-two .tab-con .circle-line {
            position: relative;
        }

            .Channel-two .tab-con .circle-line::after {
                position: absolute;
                top: 2px;
                left: -20px;
                width: calc(100% + 40px);
                height: calc(100% - 4px);
                content: '';
                display: block;
                border-radius: 335px;
                border: dashed 1px #000000;
                z-index: 1;
            }

        .Channel-two .tab-con .circle {
            position: relative;
            z-index: 2;
            vertical-align: middle;
            display: inline-block;
            border-radius: 340px;
            overflow: hidden;
        }

            .Channel-two .tab-con .circle video {
                display: block;
            }

        .Channel-two .tab-con .circle-line .but-play {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255,.1);
            z-index: 3;
            border-radius: 100%;
            background-image: url(/uploadfiles/images/market-icon5.svg);
            background-repeat: no-repeat;
            background-position: 52%;
            cursor: pointer;
            margin: -35px 0 0 -35px;
        }

.Channel-three {
    padding: 125px 51.5px 0;
}

    .Channel-three .tit-box {
        display: -webkit-flex;
        display: flex;
    }

        .Channel-three .tit-box .icon-img {
            width: 23.125vw;
        }

        .Channel-three .tit-box .other {
            width: calc(100% - 13vw);
            margin-left: -10.2vw;
            display: -webkit-flex;
            display: flex;
            align-items: flex-end;
            flex-wrap: wrap;
            position: relative;
        }

            .Channel-three .tit-box .other .title {
                text-align: center;
                padding: 2%;
                border-radius: 75px;
                border: solid 1px #333333;
                font-family: "AlimamaFangYuanTiVF";
                font-size: 60px;
                font-weight: normal;
                font-stretch: normal;
                color: #333333;
                font-weight: bold;
                text-align: center;
            }

            .Channel-three .tit-box .other .line-img {
                position: absolute;
                left: 9vw;
                bottom: 35%;
                width: 75vw;
            }

                .Channel-three .tit-box .other .line-img img {
                    object-fit: cover;
                }

            .Channel-three .tit-box .other .tion {
                width: 100%;
                position: relative;
            }

            .Channel-three .tit-box .other .arrow {
                position: absolute;
                top: 50%;
                right: 2%;
                display: block;
                width: 6vw;
                height: 6vw;
                background-image: linear-gradient(90deg,#ff887c 0%,#ee1f2d 100%), linear-gradient(#000000,#000000);
                background-blend-mode: normal,normal;
                box-shadow: -1px 30px 51px 0px rgba(239, 39, 51, 0.4);
                border-radius: 100%;
                overflow: hidden;
                z-index: 3;
                margin-top: -3vw;
            }

                .Channel-three .tit-box .other .arrow::after {
                    width: 100%;
                    height: 100%;
                    content: '';
                    display: block;
                    background-image: url(/uploadfiles/images/market-icon1.svg);
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: 35%;
                }

    .Channel-three .Health-box {
        margin-top: 30px;
    }

        .Channel-three .Health-box .tu-img {
            border-radius: 30px 30px 0 0;
            overflow: hidden;
        }

    .Channel-three .Health-menu {
        display: -webkit-flex;
        display: flex;
        background-image: linear-gradient(90deg,#ff887c 0%,#ee1f2d 100%), linear-gradient(#000000,#000000);
        background-blend-mode: normal,normal;
        box-shadow: -1px 30px 51px 0px rgba(239, 39, 51, 0.4);
        border-radius: 0px 0px 30px 30px;
    }

        .Channel-three .Health-menu .item {
            position: relative;
            font-size: 24px;
            width: 33.333%;
        }

            .Channel-three .Health-menu .item a {
                position: relative;
                padding: 15px 30px;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: space-between;
                z-index: 3;
            }

            .Channel-three .Health-menu .item .name {
                color: #fff;
            }

            .Channel-three .Health-menu .item::after {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background-image: linear-gradient(to left,rgba(255,255,255,.3),transparent);
                z-index: 1;
            }

            .Channel-three .Health-menu .item .icon img {
                display: block;
                margin: 0;
            }

            .Channel-three .Health-menu .item:last-child::after {
                display: none;
            }

.Channel-four {
    padding-top: 100px;
}

    .Channel-four .pr {
        position: relative;
    }

    .Channel-four .con-shell {
        display: none;
    }

    .Channel-four .tab-con {
        margin-top: 110px;
    }

    .Channel-four .switc-box {
        width: 120%;
    }

        .Channel-four .switc-box .swiper {
            height: 725px;
            padding-bottom: 140px;
        }

    .Channel-four .item a {
        position: relative;
        display: block;
    }

    .Channel-four .item .txt {
        position: relative;
        padding: 50px 50px 25px;
        background: #fff;
        border-radius: 100px 10px 0px 0px;
    }

        .Channel-four .item .txt::after {
            position: absolute;
            top: 1px;
            right: 1px;
            content: '';
            display: block;
            width: calc(100% - 2px);
            height: 110%;
            background-image: linear-gradient(45deg,#fff 60%,rgba(140,24,22,0.5) 360%);
            z-index: 1;
            border-radius: 60px 10px 0px 0px;
        }

    .Channel-four .item .tiem {
        position: relative;
        z-index: 2;
        color: #999999;
    }

    .Channel-four .item .txt .tiem::after {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -18px;
        margin-left: -18px;
        content: '';
        display: block;
        width: 36px;
        height: 36px;
        background: #f9eeee;
        border-radius: 100%;
        z-index: 1;
    }

    .Channel-four .item .txt .tiem span {
        position: relative;
        z-index: 2;
    }

    .Channel-four .item .txt .tit {
        color: #333333;
        font-size: 16px;
        margin-top: 15px;
        font-weight: bold;
        position: relative;
        z-index: 2;
        font-size: 26px;
    }

    .Channel-four .item .pic {
        position: relative;
        border-radius: 10px 10px 100px 100px;
        overflow: hidden;
        transition: all .5s;
    }

        .Channel-four .item .pic figure {
            position: relative;
            z-index: 2;
            padding-bottom: 66.536%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transition: all .5s;
        }

        .Channel-four .item .pic::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: rgb(0, 0, 0, .3);
            z-index: 3;
        }

    .Channel-four .item .play {
        position: absolute;
        bottom: -10%;
        right: -15%;
        width: 80%;
        padding-bottom: 70%;
        z-index: 3;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .Channel-four .item .play span {
            display: block;
            width: 3.646vw;
            height: 3.646vw;
            background-color: rgba(255,255,255,.1);
            z-index: 3;
            border-radius: 100%;
            background-image: url(/uploadfiles/images/market-icon6.svg);
            background-repeat: no-repeat;
            background-position: 52%;
            cursor: pointer;
            position: absolute;
            top: 52%;
            left: 42%;
            z-index: 3;
        }

        .Channel-four .item .play::after {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url(/uploadfiles/images/market-round2.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transition: all .5s;
            opacity: 0;
        }

    .Channel-four .swiper-slide .item:hover .pic {
        box-shadow: 10px 20px 50px 0px rgba(0,0,0,0.2);
    }

    .Channel-four .swiper-slide .item:hover .txt .tiem span {
        color: #ed1b2e;
    }

    .Channel-four .item:hover .pic figure {
        padding-bottom: 90.3%;
    }

    .Channel-four .item:hover .play span {
        background-image: url(/uploadfiles/images/market-play1.png);
    }

    .Channel-four .item:hover .play::after {
        opacity: 1;
    }

    .Channel-four .swiper_but {
        margin-top: 55px;
    }

        .Channel-four .swiper_but .auto-1360 {
            margin: 0;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .Channel-four .swiper_but .swiper-anuiu {
            background-color: #fff;
            width: 55px;
            height: 55px;
            left: auto;
            right: auto;
            margin: 0;
            display: block;
            position: relative;
            border-radius: 100%;
            transition: all .5s;
        }

            .Channel-four .swiper_but .swiper-anuiu:after {
                font-size: 0;
                display: block;
                width: 100%;
                height: 100%;
                background-image: url(/uploadfiles/images/market-icon2.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: 35%;
            }

        .Channel-four .swiper_but .swiper-button-prev:after {
            transform: rotateZ(-90deg);
        }

        .Channel-four .swiper_but .swiper-anuiu:hover {
            background-image: linear-gradient(to left,#ff887c,#ee1f2d);
            box-shadow: 0 15px 20px 0px rgba(239, 39, 51, 0.4);
            transform: scale(1.1);
        }

            .Channel-four .swiper_but .swiper-anuiu:hover:after {
                background-image: url(/uploadfiles/images/market-icon1.svg);
            }

    .Channel-four .swiper-pagination {
        height: 1px;
        width: calc(100% - 140px);
        position: relative;
    }

        .Channel-four .swiper-pagination .swiper-pagination-progressbar-fill {
            background: #ee1f2d;
        }

@media only screen and (max-width:1440px) {
    .market-main {
        background-size: cover;
    }

    .Channel-one::after {
        left: -3vw;
        width: 18vw;
        height: 15vw;
    }
}

@media only screen and (max-width:1366px) {
    .Channel-three .tit-box .other .title {
        padding: 1.5%;
    }
}

@media only screen and (max-width:1024px) {
    .market-main {
        padding: 100px 0;
    }

    .market-tit {
        font-size: 46px;
    }

    .Clanmu {
        font-size: 18px;
    }

        .Clanmu li a {
            padding: 15px;
            width: 200px;
        }

    .Channel-one .list .item:nth-child(1) .arrow {
        width: 70px;
        height: 70px;
    }

        .Channel-one .list .item:nth-child(1) .arrow::after {
            background-size: 35%;
        }

    .Channel-two .tit-box .icon img {
        max-width: 150px;
    }

    .Channel-two .tab-con .circle-line::after {
        left: -10px;
        width: calc(100% + 20px);
    }

    .Channel-three .tit-box .other .title {
        font-size: 46px;
    }

    .Channel-three .Health-menu .item {
        font-size: 18px;
    }

    .Channel-four .switc-box .swiper {
        height: 665px;
    }

    .Channel-four .item .play span {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width:768px) {
    .market-tit {
        font-size: 36px;
        margin-top: 10px;
    }

    .Clanmu {
        font-size: 16px;
        padding-top: 40px;
    }

        .Clanmu li {
            margin: 0 5px;
        }

            .Clanmu li a {
                padding: 10px;
                width: auto;
                min-width: 160px;
            }

            .Clanmu li::after {
                transform: rotate(0);
                width: 100%;
                border-radius: 5px;
            }

    .Channel-one .list .item .text {
        padding: 10px 20px;
    }

        .Channel-one .list .item .text .tit {
            font-size: 18px;
        }

    .Channel-one .list .item:nth-child(1) .pic {
        border-radius: 100px 20px 20px 20px;
    }

    .Channel-one .list .item:nth-child(1) .arrow {
        width: 40px;
        height: 40px;
    }

        .Channel-one .list .item:nth-child(1) .arrow::after {
            background-size: 35%;
        }

    .Channel-one .list .item:nth-child(3) .pic {
        border-radius: 20px 20px 50px 20px;
    }

    .Channel-two .tit-box .icon img {
        max-width: 150px;
    }

    .Channel-two .tab-con {
        margin-top: 50px;
    }

        .Channel-two .tab-con .circle-line::after {
            left: -10px;
            width: calc(100% + 20px);
        }

        .Channel-two .tab-con .circle-line .but-play {
            width: 50px;
            height: 50px;
            background-size: 20%;
        }

    .Channel-three .tit-box .other .title {
        font-size: 36px;
    }

    .Channel-three .Health-menu .item {
        font-size: 16px;
    }

    .Channel-four .tab-con {
        margin-top: 80px;
    }

    .Channel-four .switc-box .swiper {
        height: 565px;
    }

    .Channel-four .item .play {
        bottom: -5%;
        right: -15%;
        width: 70%;
        padding-bottom: 55%;
    }

        .Channel-four .item .play span {
            top: 50%;
            left: 40%;
            width: 40px;
            height: 40px;
            background-size: 20%;
        }

    .Channel-four .item .pic {
        border-radius: 10px 10px 70px 70px;
    }

    .Channel-four .item:hover .play span {
        background-size: cover;
    }
}

@media only screen and (max-width:640px) {
    .Channel-ban {
        margin-top: 15% !important;
    }

    .market-main {
        padding: 50px 0;
    }

    .market-tit {
        font-size: 22px;
    }

    .Channel-one .list {
        --gutter: 10px;
        grid-gap: 10px;
    }

        .Channel-one .list .item .text .tit {
            font-size: 16px;
        }

        .Channel-one .list .item .text .des {
            font-size: 12px;
        }

        .Channel-one .list .item .cnetr {
            width: 90%;
        }

        .Channel-one .list .item:nth-child(1) {
            width: 110%;
        }

            .Channel-one .list .item:nth-child(1) .pic {
                border-radius: 50px 20px 20px 20px;
            }

        .Channel-one .list .item:nth-child(2) .pic {
            border-radius: 10px;
        }

        .Channel-one .list .item:nth-child(3) .pic {
            border-radius: 10px 10px 20px 10px;
        }

    .Channel-two .tab-con .circle-line::after {
        display: none;
    }

    .Channel-three {
        padding: 0 2%;
    }

        .Channel-three .tit-box .other .title {
            font-size: 22px;
        }

        .Channel-three .tit-box .icon-img {
            width: 35vw;
        }

        .Channel-three .tit-box .other {
            width: calc(100% - 18vw);
            margin-left: -14vw;
        }

            .Channel-three .tit-box .other .line-img {
                left: 12vw;
                width: 70vw;
            }

        .Channel-three .Health-menu .item a {
            padding: 15px;
        }

        .Channel-three .Health-menu .item .icon img {
            width: 15px;
        }

    .Channel-four {
        padding-top: 50px;
    }

        .Channel-four .item .txt {
            padding: 15px;
        }

            .Channel-four .item .txt::after {
                border-radius: 10px 10px 0px 0px;
            }

            .Channel-four .item .txt .tit {
                font-size: 18px;
                margin-top: 5px;
            }

            .Channel-four .item .txt .tiem::after {
                margin-top: -12px;
                margin-left: -12px;
                width: 24px;
                height: 24px;
            }

        .Channel-four .item .pic {
            border-radius: 0px 0px 10px 10px;
        }

        .Channel-four .switc-box .swiper {
            height: 455px;
        }

        .Channel-four .swiper_but .auto-1360 {
            justify-content: flex-start;
        }

        .Channel-four .swiper_but .swiper-anuiu {
            width: 35px;
            height: 35px;
        }
}



/* “少年财富传奇”财商大赛 */
.Youth-title {
    margin-bottom: 35px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

    .Youth-title .Youth-tit {
        font-size: 36px;
        font-weight: bold;
    }

    .Youth-title .more {
        margin: 0 !important;
    }

        .Youth-title .more a {
            display: block;
            padding: 8px 25px;
            background: #fff;
            color: #333;
            border-radius: 16px;
            box-shadow: 0 0 10px rgb(0, 0, 0, .1);
        }

    .Youth-title .green-color a {
        background-color: #2d944d;
        color: #fff;
    }

.mar-top {
    margin-top: 50px;
}

.Youth-box {
    position: relative;
    padding: 100px 0;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/Youth-bg1.png);
}

    .Youth-box .auto-1360 {
        position: relative;
        z-index: 2;
    }

    .Youth-box .more a {
        display: block;
        padding: 8px 25px;
        background: #fff;
        color: #333;
        border-radius: 16px;
        box-shadow: 0 0 10px rgb(0, 0, 0, .1);
    }

    .Youth-box .itla {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

        .Youth-box .itla .ioa {
            margin-right: 20px;
            position: relative;
        }

            .Youth-box .itla .ioa::after {
                position: absolute;
                left: 50%;
                top: 100%;
                content: '';
                display: block;
                width: 12px;
                height: 6px;
                background-image: url(/uploadfiles/images/arrow6.png);
                margin-left: -6px;
                opacity: 0;
            }

            .Youth-box .itla .ioa:last-child {
                margin-right: 0;
            }

            .Youth-box .itla .ioa a {
                font-size: 14px;
                background: #fff;
                display: block;
                min-width: 120px;
                padding: 8px 10px;
                text-align: center;
                border-radius: 16px;
            }

                .Youth-box .itla .ioa.on a,
                .Youth-box .itla .ioa a:hover {
                    color: #fff;
                    background-color: #ee1f2d;
                    box-shadow: 0px 3px 8px 0px rgba(237, 27, 46, 0.2);
                }

            .Youth-box .itla .ioa.on::after,
            .Youth-box .itla .ioa:hover::after {
                opacity: 1;
            }

    .Youth-box .tab-ol {
        display: none;
    }

    .Youth-box .lion {
        position: absolute;
        top: 580px;
        right: -2%;
        width: 17.657%;
        padding-bottom: 25.697%;
        background-image: url(/uploadfiles/images/Youth-icon2.png);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

    .Youth-box .simian {
        position: absolute;
        left: -1.5%;
        bottom: 0;
        width: 14.294%;
        padding-bottom: 25.118888%;
        background-image: url(/uploadfiles/images/Youth-icon1.png);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
    }

.Youth-one .list .ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.Youth-one .list li {
    width: 23.162%;
    margin-right: 2.45%;
}

    .Youth-one .list li a:not(:first-child) {
        display: none
    }

    .Youth-one .list li .pic {
        overflow: hidden;
        border-radius: 10px;
    }

        .Youth-one .list li .pic figure {
            padding-bottom: 66.667%;
            transition: all .5s;
            background-size: cover;
        }

        .Youth-one .list li .pic .back-black {
            background: #000;
        }

    .Youth-one .list li .tit {
        margin: 10px 0;
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        line-height: 1.7;
    }

    .Youth-one .list li .tiem {
        color: #999999;
    }

    .Youth-one .list li:hover .pic figure {
        transform: scale(1.1);
    }

    .Youth-one .list li:nth-child(4n) {
        margin-right: 0;
    }

.Youth-two .tit-box .more {
    margin-top: 0;
}

.Youth-two .list .ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.Youth-two .list li {
    width: 23.162%;
    margin-right: 2.45%;
}

    .Youth-two .list li .pic {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

        .Youth-two .list li .pic::after {
            position: absolute;
            left: 50%;
            top: 50%;
            content: '';
            display: block;
            border-radius: 100%;
            background: rgb(255,255,255,.9) url(/uploadfiles/images/market-icon6.svg);
            background-size: 12px;
            background-position: 50%;
            background-repeat: no-repeat;
            width: 50px;
            height: 50px;
            margin-left: -25px;
            margin-top: -25px;
        }

        .Youth-two .list li .pic figure {
            padding-bottom: 66.667%;
            transition: all .5s;
            background-size: cover;
        }

    .Youth-two .list li:nth-child(4n) {
        margin-right: 0;
    }

    .Youth-two .list li .tit {
        text-align: center;
        margin: 10px 0;
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        line-height: 1.7;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .Youth-two .list li:hover .pic figure {
        transform: scale(1.1);
    }

.Youth-two .more {
    margin-top: 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.Youth-three .list .ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.Youth-three .list li {
    font-size: 18px;
    margin-bottom: 20px;
    width: 48.53%;
    margin-right: 2.9%;
    border-radius: 10px;
    overflow: hidden;
}

    .Youth-three .list li a {
        background: #fff;
        padding: 20px 30px;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .Youth-three .list li a .txt {
            width: calc(100% - 60px);
            display: -webkit-flex;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

            .Youth-three .list li a .txt .tit {
                width: calc(100% - 4em);
                display: block;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
            }

        .Youth-three .list li a .icon {
            width: 40px;
            height: 40px;
            border: solid 2px #000;
            border-radius: 100%;
        }

            .Youth-three .list li a .icon::after {
                content: '';
                display: block;
                width: 100%;
                height: 100%;
                background-image: url(/uploadfiles/images/market-icon6.svg);
                background-size: 8px;
                background-position: 50%;
                background-repeat: no-repeat;
            }

    .Youth-three .list li:nth-child(2n) {
        margin-right: 0;
    }

.Youth-three .more {
    margin-top: 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.Youth-four .list .ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.Youth-four .list li {
    width: 31.839%;
    margin-right: 2.23%;
}

    .Youth-four .list li .pic {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

        .Youth-four .list li .pic figure {
            padding-bottom: 66.667%;
            transition: all .5s;
            background-size: cover;
        }

    .Youth-four .list li .tit {
        margin: 10px 0;
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        line-height: 1.7;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .Youth-four .list li:nth-child(3n) {
        margin-right: 0;
    }

    .Youth-four .list li:hover .pic figure {
        transform: scale(1.1);
    }

.Youth-four .more {
    margin-top: 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.Youth-five li {
    padding: 30px;
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
}

    .Youth-five li .tit {
        font-size: 18px;
        display: block;
        background: url(/uploadfiles/images/paper-icon1.png) no-repeat center left;
        padding-left: 35px;
    }

    .Youth-five li .other {
        font-size: 16px;
        width: 30%;
    }

        .Youth-five li .other .time {
            color: #999999;
        }

        .Youth-five li .other .dow {
            background: url(/uploadfiles/images/paper-icon2.png) no-repeat center left;
            padding-left: 30px;
        }

        .Youth-five li .other .more {
            background: url(/uploadfiles/images/paper-icon3.png) no-repeat center left;
            padding-left: 30px;
        }

@media only screen and (max-width:1440px) {
    .Youth-box {
        background-size: contain;
    }
}

@media only screen and (max-width:768px) {
    .Youth-box .Youth-tit {
        font-size: 26px;
    }

    .Youth-one .list li .tit {
        font-size: 14px;
    }

    .Youth-two .list li .tit {
        font-size: 14px;
    }

    .Youth-two .list li .pic::after {
        width: 40px;
        height: 40px;
        background-size: 8px;
    }

    .Youth-three .list li {
        font-size: 14px;
    }

        .Youth-three .list li a .icon {
            width: 35px;
            height: 35px;
        }

    .Youth-four .list li .tit {
        font-size: 14px;
    }
}

@media only screen and (max-width:640px) {
    .Youth-box {
        padding: 50px 0;
        background-size: cover;
    }

        .Youth-box .itla {
            margin: 10px 0;
        }

            .Youth-box .itla .ioa a {
                min-width: auto;
                padding: 7px 20px;
            }

    .Youth-one .list li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 4%;
    }

        .Youth-one .list li:nth-child(2n) {
            margin-right: 0;
        }

    .Youth-two .list li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 4%;
    }

        .Youth-two .list li .tit {
            margin-bottom: 0;
        }

        .Youth-two .list li:nth-child(2n) {
            margin-right: 0;
        }

    .Youth-two .more {
        margin-top: 30px;
    }

    .Youth-three .list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

        .Youth-three .list li a {
            padding: 15px;
        }

    .Youth-three .more {
        margin-top: 30px;
    }

    .Youth-four .list li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 4%;
    }

        .Youth-four .list li .tit {
            margin-bottom: 0;
        }

        .Youth-four .list li:nth-child(2n) {
            margin-right: 0;
        }

    .Youth-four .more {
        margin-top: 30px;
    }
}


/* “金融安全守护者”亲子公益活动 */
.offspring-box {
    position: relative;
    padding: 100px 0;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/offspring-bg1.jpg);
    background-size: cover;
}

.offspring-two .des-info {
    line-height: 1.8;
    font-size: 18px;
    font-stretch: normal;
}

/* 护航计划 */
.escort-box {
    padding: 100px 0;
}

/* 最新资讯详情页 */
.details-back {
    position: relative;
    padding: 100px 0 0;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/details-back.jpg);
    background-size: cover;
}

.details-con {
    padding: 50px 80px;
    background: #fff;
}

.details-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.details-other {
    padding: 20px 0;
    font-size: 16px;
    color: #999999;
    border-bottom: double rgb(0, 0, 0, .1);
}

    .details-other .time {
        margin-right: 30px;
    }

.details-info {
    font-size: 17px;
    line-height: 1.9;
}

.article-box {
    padding: 35px 0 70px;
    border-top: double rgb(0, 0, 0, .1);
}

    .article-box dl {
        width: calc(100% - 200px);
        line-height: 1.8;
    }

        .article-box dl dd {
            line-height: 2;
            color: #999999;
        }

            .article-box dl dd a {
                color: #666666;
            }

                .article-box dl dd a span {
                    padding-right: 1em;
                }

                .article-box dl dd a:hover {
                    color: #ee1f2d;
                }

    .article-box .return a {
        background: #ee1f2d;
        line-height: 2.5;
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        overflow: hidden;
    }

        .article-box .return a span {
            padding-right: .1rem;
            color: #fff;
        }

        .article-box .return a:hover::after {
            background-image: url(/uploadfiles/images/return-icon.png)
        }

@media(max-width:640px) {
    .article-box .return a {
        width: 1.8rem;
    }
}

/* “这样白头”快闪 */
.wealth-box {
    position: relative;
    padding: 100px 0 120px;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/wealth-back.jpg);
    background-size: cover;
    background-position: top center;
}

    .wealth-box::after {
        content: '';
        display: block;
        width: 100%;
        height: 88px;
        background-image: url(/uploadfiles/images/character-back.png);
        position: absolute;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

/* 健康运动公益主题 */
.campaign-box {
    position: relative;
    padding: 100px 0 120px;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/campaign-back.jpg);
    background-size: cover;
    background-position: bottom center;
}

/* 视频墙 */
.Videowall-box {
    position: relative;
    padding: 100px 0 120px;
    min-height: 30vh;
    background-image: url(/uploadfiles/images/Videowall-back.jpg);
    background-size: cover;
    background-position: top center;
}
