.flex-box-v {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
/*banner*/
.Banner-container {
    height: 100vh;
    min-height: 600px;
    max-height: 930px;
    width: 100%;
}

.banner-background {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.banner-slide {
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: hidden;
}

.banner-text {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

    .banner-text h1 {
        font-weight: bold;
        font-size: 72px;
        margin-bottom: 30px;
        color: #fff;
    }

    .banner-text h2 {
        position: relative;
        margin-top: 1rem;
        padding-top: 30px;
        color: #fff;
        font-size: 24px;
        font-weight: normal;
        font-family: arial;
    }

        .banner-text h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 2px;
            width: 100px;
            background: #fff;
            z-index: 1;
        }

        .banner-text h2 span {
            font-size: 18px;
            display: inline-block;
            margin-top: 15px;
        }

.banner-bg-ss {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
}

.banner-text {
    z-index: 10;
}

    .banner-text:before {
        content: "";
        position: absolute;
        width: 300px;
        height: 400px;
        display: block;
        border: 10px solid rgba(255, 255, 255, 0.2);
        top: 4.5rem;
        margin-top: -200px;
        left: -6rem;
        display: none;
    }

.small-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
}
/*.banner-warpper.swiper-wrapper {
transition-timing-function: cubic-bezier(0.75, 0.22, 0.25, 1);
}
.banner-warpper.swiper-wrapper .banner-background {
transition-timing-function: cubic-bezier(0.75, 0.22, 0.25, 1);
will-change: transform;
}*/
.banner-switch {
    position: absolute;
    z-index: 30;
    right: auto;
    bottom: 0;
    height: 70px;
    left: 0;
    color: #fff;
    display: flex;
    margin-top: 0px;
    background: rgba(197,39,48,.8);
    width: 45%;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
}

    .banner-switch > div > * {
        display: inline-block;
        vertical-align: middle;
    }

.sL_icon {
    background-size: contain;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-switch > div > span {
    margin: 0 0.5rem;
    font-size: 0.825rem;
}

.banner-switch > div {
    margin: 0.3rem 2rem;
}

.banner-switch > div {
    cursor: pointer;
    transition: 0.5s;
}

.swiper-button-disabled {
    opacity: 0.4;
}

.Scroll-tip {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100px;
    color: #fff;
    text-align: center;
}

.Tipss {
    text-transform: uppercase;
    font-size: 0.825rem;
}

.tip_anim {
    display: inline-block;
    margin: 0.75rem 0;
    height: 30px;
}

.Tipss span {
    display: block;
}

.tip_anim span {
    display: inline-block;
    width: 1px;
    height: 100%;
    background: #fff;
    animation-name: scrollTip;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.82, 0.24, 0.25, 1);
}

.Banner-A1 {
    z-index: 1;
}

@keyframes scrollTip {
    0% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    49% {
        transform: scale(1, 1);
        transform-origin: top;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }
}

.banner-background {
    transition: 1s 2.5s;
    transform: perspective(1000px) translate3d(0, 0, 100px);
}

.swiper-slide.banner-slide.swiper-slide-active .banner-background {
    transition: 5s 0s;
    transform: perspective(1000px) translate3d(0, 0, 0px);
}

.banner-text:before {
    transition-delay: 2s;
    transition-duration: 2s;
    transform: translate3d(-80px, 0, 0);
    opacity: 0;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text:before {
    transition-delay: 1.3s;
    transform: translate3d(0px, 0, 0);
    opacity: 1;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(1) {
    transition-delay: 0.5s;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(2) {
    transition-delay: 0.7s;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text *:nth-child(3) {
    transition-delay: 0.9s;
}

.banner-text * {
    transition-delay: transform 2s, opacity 0s;
    transition-duration: 2s;
    transform: translate3d(0, 80px, 0);
    opacity: 0;
}

.swiper-slide.banner-slide.swiper-slide-active .banner-text * {
    transform: translate3d(0, 0px, 0);
    opacity: 1;
}

@media screen and (max-width: 1600px) {
    .banner-text {
        max-width: 1000px;
        width: 80%;
    }
}

@media screen and (max-width: 1200px) {
    .banner-text:before {
        content: "";
        position: absolute;
        width: 300px;
        height: 400px;
        display: block;
        border: 10px solid rgba(255, 255, 255, 0.2);
        top: 4.5rem;
        margin-top: -200px;
        left: 50%;
        margin-left: -150px;
        display: none;
    }

    .banner-text h2:before {
        left: calc((100% - 100px)/2);
    }

    .banner-text {
        text-align: center;
    }

        .banner-text h2 {
            font-size: 1.5rem;
        }
}

@media screen and (max-width: 769px) {

    .Banner-container {
        height: 35vh;
        width: 100%;
        min-height: auto;
    }

    .banner-switch {
        top: auto;
        bottom: 2rem;
        left: 5%;
        right: 5%;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .banner-text h2:before {
        left: calc((100% - 60px)/2);
        width: 60px;
    }

    .banner-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner-text h2 {
        font-size: 14px;
        line-height: 1.4;
    }

    .small-title {
        font-size: 2rem;
    }

    .banner-text:before {
        opacity: 0;
    }

    .Scroll-tip {
        bottom: 72px;
        display: none;
    }
}
/*banner*/



/*e_FlowCommonStyleBox-001*/
.e_FlowCommonStyleBox-001 {
    /* position: absolute;*/
    width: 100%;
    height: auto;
    width-uint: %;
}

    /*stylebox_link*/
    .e_FlowCommonStyleBox-001 .stylebox_link {
        color: #666666;
        font-size: 14px;
        display: table;
        height: inherit;
        border-width: 0;
        float: right;
        vertical-align: middle;
        margin-right: 15px;
    }

        .e_FlowCommonStyleBox-001 .stylebox_link:hover {
            color: rgba(101, 190, 186, 1);
        }

        .e_FlowCommonStyleBox-001 .stylebox_link:active {
            color: rgba(101, 190, 186, 1);
        }

    .e_FlowCommonStyleBox-001 .stylebox_top {
        width: auto;
        height: 40px;
        background-color: #1890FF;
    }

    .e_FlowCommonStyleBox-001 .title_icon {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        margin-right: 10px;
        font-size: medium;
    }

        .e_FlowCommonStyleBox-001 .title_icon::before {
            content: "";
        }

    .e_FlowCommonStyleBox-001 .title_main {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-weight: normal;
        font-size: 16px;
        max-width: 600px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .e_FlowCommonStyleBox-001 .title_sub {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
        font-weight: normal;
        margin-left: 10px;
    }

    .e_FlowCommonStyleBox-001 .stylebox_title {
        display: inline-block;
        width: auto;
        height: inherit;
        background-color: #1890FF;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 0;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .e_FlowCommonStyleBox-001 .stylebox_link a {
        color: inherit;
        display: table-cell;
        vertical-align: middle;
    }

    .e_FlowCommonStyleBox-001 .link_icon {
        display: inline-block;
        margin-left: 5px;
    }

        .e_FlowCommonStyleBox-001 .link_icon::before {
            content: '\e6af';
        }

    .e_FlowCommonStyleBox-001 .stylebox_top_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

    .e_FlowCommonStyleBox-001 .stylebox_content {
        border-style: solid;
        border-width: 1px;
        border-color: #f0f0f0;
        width: 100%;
        width-uint: %;
    }

    .e_FlowCommonStyleBox-001 .stylebox_bottom_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

/*e_IndexOrdinaryStyleBox-001*/
.e_IndexOrdinaryStyleBox-001 {
    /* position: absolute;*/
    width: 100%;
    height: auto;
    width-uint: %;
}

    /*stylebox_top*/
    .e_IndexOrdinaryStyleBox-001 .stylebox_top {
        background-color: transparent;
    }

    /*stylebox_link*/
    .e_IndexOrdinaryStyleBox-001 .stylebox_link {
        color: #666666;
        font-size: 14px;
        display: table;
        height: inherit;
        border-width: 0;
    }

        .e_IndexOrdinaryStyleBox-001 .stylebox_link:hover {
            color: rgba(101, 190, 186, 1);
        }

        .e_IndexOrdinaryStyleBox-001 .stylebox_link:active {
            color: rgba(101, 190, 186, 1);
        }

    .e_IndexOrdinaryStyleBox-001 .stylebox_top {
        width: auto;
        height: 40px;
    }

    .e_IndexOrdinaryStyleBox-001 .title_icon {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        margin-right: 10px;
        font-size: medium;
    }

        .e_IndexOrdinaryStyleBox-001 .title_icon::before {
            content: "";
        }

    .e_IndexOrdinaryStyleBox-001 .title_main {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-weight: normal;
        font-size: 16px;
        max-width: 600px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .e_IndexOrdinaryStyleBox-001 .title_sub {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
        font-weight: normal;
        margin-left: 10px;
    }

    .e_IndexOrdinaryStyleBox-001 .stylebox_title {
        display: inline-block;
        width: auto;
        height: inherit;
        background-color: rgba(101, 190, 186, 1);
        padding-left: 15px;
        padding-right: 15px;
        font-size: 0;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .e_IndexOrdinaryStyleBox-001 .stylebox_link {
        float: right;
        vertical-align: middle;
        margin-right: 15px;
    }

        .e_IndexOrdinaryStyleBox-001 .stylebox_link a {
            color: inherit;
            display: table-cell;
            vertical-align: middle;
        }

    .e_IndexOrdinaryStyleBox-001 .link_icon {
        display: inline-block;
        margin-left: 5px;
    }

        .e_IndexOrdinaryStyleBox-001 .link_icon::before {
            content: '\e6af';
        }

    .e_IndexOrdinaryStyleBox-001 .stylebox_top_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

    .e_IndexOrdinaryStyleBox-001 .stylebox_content {
        border-style: solid;
        border-width: 1px;
        border-color: #f0f0f0;
        width: 100%;
        height: calc(100% - 48px);
        width-uint: %;
    }

    .e_IndexOrdinaryStyleBox-001 .stylebox_bottom_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

/*e_SideMajorStyleBox-001*/
.e_SideMajorStyleBox-001 {
    /* position: absolute;*/
    width: 100%;
    height: auto;
    width-uint: %;
}

    /*stylebox_link*/
    .e_SideMajorStyleBox-001 .stylebox_link {
        color: #666666;
        font-size: 14px;
        display: table;
        height: inherit;
        border-width: 0;
        float: right;
        vertical-align: middle;
        margin-right: 15px;
    }

    .e_SideMajorStyleBox-001 .stylebox_top {
        width: auto;
        height: 40px;
        background-color: rgba(101, 190, 186, 1);
    }

    .e_SideMajorStyleBox-001 .title_icon {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        margin-right: 10px;
        font-size: medium;
    }

        .e_SideMajorStyleBox-001 .title_icon::before {
            content: "";
        }

    .e_SideMajorStyleBox-001 .title_main {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-weight: normal;
        font-size: 16px;
        max-width: 600px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .e_SideMajorStyleBox-001 .title_sub {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
        font-weight: normal;
        margin-left: 10px;
    }

    .e_SideMajorStyleBox-001 .stylebox_title {
        display: inline-block;
        width: auto;
        height: inherit;
        background-color: rgba(101, 190, 186, 1);
        padding-left: 15px;
        padding-right: 15px;
        font-size: 0;
        vertical-align: bottom;
        white-space: nowrap;
    }

    .e_SideMajorStyleBox-001 .stylebox_link a {
        color: inherit;
        display: table-cell;
        vertical-align: middle;
    }

    .e_SideMajorStyleBox-001 .link_icon {
        display: inline-block;
        margin-left: 5px;
    }

        .e_SideMajorStyleBox-001 .link_icon::before {
            content: '\e6af';
        }

    .e_SideMajorStyleBox-001 .stylebox_top_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

    .e_SideMajorStyleBox-001 .stylebox_content {
        border-style: solid;
        border-width: 1px;
        border-color: #f0f0f0;
        width: 100%;
        width-uint: %;
    }

    .e_SideMajorStyleBox-001 .stylebox_bottom_line {
        height: 1px;
        background-color: rgba(240, 240, 240, 1);
    }

.w_fimgbox-001 {
    width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
}

    .w_fimgbox-001 .w_imgbox {
        width: 100%;
        height: 100%;
        position: relative;
        min-height: inherit;
    }

        .w_fimgbox-001 .w_imgbox > img {
            width: 100%;
            height: auto;
        }

        .w_fimgbox-001 .w_imgbox > .p_contentbox {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

.Banner-container {
    height: 100vh;
    min-height: 300px;
    max-height: 750px !important;
    width: 100%;
}

.banner-bg-ss {
    background: rgba(0, 0, 0, 0) !important;
}

.subpage_ad .text {
    display: none;
}

/*图片标题列表*/
.w_fimg-000 .p_title {
    display: inline-table;
    margin: 0;
    min-width: 37px;
    padding: 0;
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

    .w_fimg-000 .p_title .font {
        vertical-align: middle;
        line-height: 21px;
    }

    .w_fimg-000 .p_title:hover {
        color: rgba(87, 177, 173, 1);
    }

    .w_fimg-000 .p_title:active {
        color: rgba(69, 165, 161, 1);
    }

    .w_fimg-000 .p_title .iconfont:before {
        display: inline-block;
        content: "";
    }

.w_fimg-000 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 200px;
}

    .w_fimg-000 .animated {
        width: 100%;
        height: 100%;
        position: relative;
        min-height: inherit;
    }

    .w_fimg-000 .font {
        white-space: nowrap;
    }

    .w_fimg-000 .p_link001 {
        width: 100%;
        height: 100%;
    }

    .w_fimg-000 .p_link002 {
        width: 100%;
        height: 30px;
    }

    .w_fimg-000 .p_box {
        width: 100%;
        height: 100%;
        text-align: center;
        position: static;
    }

    .w_fimg-000 .p_dimage {
        height: inherit;
        overflow: hidden;
        font-size: 0;
    }

    .w_fimg-000 .e_image:hover:after {
        background: transparent;
    }

    .w_fimg-000 .p_dimage:empty {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background: #f2f2f2 url(../images/camera.png) no-repeat center;
    }

@media only screen and (max-width: 768px) {
    #c_portalResnav_main-15580763825692032 {
        margin-top: 0px !important;
    }

    #c_portalResnav_main-15584960461718585 {
        margin-top: 0px !important;
        background: #ce9d5f;
        padding: 20px !important;
    }

    #c_portalResnav_main-15580763825692032 {
        background: #ce9d5f;
        padding: 20px !important;
    }

    .c_portalResnav_main-01001 .p_problemCategory {
        display: block;
    }

    .c_portalResnav_main-01001 .p_navPc {
        display: none;
    }

    .c_portalResnav_main-01001 .p_linkBox {
        display: none;
    }

    .c_portalResnav_main-01001 .p_parent {
        display: block;
    }

    .c_portalResnav_main-01001 .p_categoryBtn:before {
        /* content: "\e669";*/
    }

    .c_portalResnav_main-01001 .icon-arrow_up:before {
        content: "\e69a";
    }

    .c_portalResnav_main-01001 .icon-arrow_down:before {
        content: "\e69c";
    }

    .c_portalResnav_main-01001 .p_btn-show {
        color: #fff;
        background: #ce9d5f;
        /* height: 90px; */
    }

    .c_portalResnav_main-01001 .p_btn-hide {
        width: 12%;
        height: 100%;
        float: left;
        background-color: #ce9d5f;
    }

    .c_portalResnav_main-01001 .p_category {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
    }

    .c_portalResnav_main-01001 .p_parent {
        width: auto;
        height: auto;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: flex;
        display: -webkit-flex;
        display: -moz-box;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-box;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 0 0 5px;
    }

    .c_portalResnav_main-01001 .p_categoryBox {
        overflow-y: auto;
        width: 88%;
        height: 100%;
        float: left;
        background-color: rgb(239, 239, 245);
    }

        .c_portalResnav_main-01001 .p_categoryBox > .p_parentBox {
            background-color: #FFFFFE !important;
            padding-left: 0px;
        }

    .c_portalResnav_main-01001 .p_parentBox {
        width: auto;
        height: auto;
        color: #fff;
    }

    .c_portalResnav_main-01001 .p_parentBox {
        width: auto;
        height: auto;
        color: #fff;
        background-color: rgb(239, 239, 245);
        padding-left: 20px;
    }

    .c_portalResnav_main-01001 .p_childBox .p_parent {
        border-bottom: 1px solid #c0c0c0;
    }

    .c_portalResnav_main-01001 .p_c-fff {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
        color: #fff;
        font-size: 24px;
    }

    .c_portalResnav_main-01001 .p_categoryBtn {
        display: block;
        margin: 12px 5px 10px 0;
        color: #000000;
        font-size: 12px;
    }

    .c_portalResnav_main-01001 .p_link {
        height: auto;
        vertical-align: middle;
        width: initial;
        margin: 15px 0px 15px 15px;
        -webkit-flex: 1;
        -moz-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: block;
        -moz-box-flex: 1;
        -webkit-box-flex: 1;
        box-flex: 1;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: flex;
        display: -webkit-flex;
        display: -moz-box;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-box;
        color: #000;
        font-size: 16px
    }

    .c_portalResnav_main-01001 {
        width: 640px;
    }
}

@media only screen and (min-width: 769px) {

    /*å¤§å±*/
    .c_portalResnav_main-01001 .p_problemCategory {
        display: none;
    }

    .c_portalResnav_main-01001 .p_parent {
        display: none;
    }

    .c_portalResnav_main-01001 .p_navPc {
        display: block;
    }

    .c_portalResnav_main-01001 .p_linkBox {
        display: block;
    }

    .c_portalResnav_main-01001 {
        width: auto;
        height: auto;
        overflow: visible;
    }

        /*p_category*/
        .c_portalResnav_main-01001 .p_category {
            height: 100%;
            width: 100%;
            position: relative;
            z-index: 111111111111
        }

    .clearfix:before,
    .clearfix:after {
        content: "";
        display: block;
        clear: both;
        width: 0;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

    .c_portalResnav_main-01001 .p_categoryBox {
        line-height: 24px;
        width: 100%;
        float: left;
    }

        .c_portalResnav_main-01001 .p_categoryBox .p_linkBox {
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
        }

        .c_portalResnav_main-01001 .p_categoryBox > .p_parentBox {
            border-top: 0px solid #fff;
        }

            .c_portalResnav_main-01001 .p_categoryBox > .p_parentBox:hover {
                border-bottom: 2px solid #e37c26;
            }

        .c_portalResnav_main-01001 .p_categoryBox .p_title {
            height: auto;
            width: auto;
            -webkit-flex: 1;
            -moz-flex: 1;
            -ms-flex: 1;
            flex: 1;
            display: block;
            -moz-box-flex: 1;
            -webkit-box-flex: 1;
            box-flex: 1;
            font-size: 16px;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #ffffff;
        }

        .c_portalResnav_main-01001 .p_categoryBox .slideOut .p_title {
            font-size: 14px;
        }

        .c_portalResnav_main-01001 .p_categoryBox .p_title:hover {
            color: #ffffff;
        }

    .c_portalResnav_main-01001 .p_categoryBtn {
        display: inline-block;
        vertical-align: middle;
        background-color: rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0;
        color: #e29029;
        height: auto;
        width: 14px;
        margin: 0 4px 0 0;
        padding: 0;
        position: static;
        text-align: center;
        color: rgba(217, 217, 217, 1);
        display: none;
    }

        .c_portalResnav_main-01001 .p_categoryBtn:hover {
            border-width: 0;
            border-style: solid;
            color: #e29029;
            border-color: rgba(255, 255, 255, 0);
            background-color: rgba(255, 255, 255, 0);
            box-shadow: none;
        }

        .c_portalResnav_main-01001 .p_categoryBtn:active {
            border-width: 0;
            border-style: solid;
            color: #e29029;
            border-color: rgba(255, 255, 255, 0);
            background-color: rgba(255, 255, 255, 0);
            box-shadow: none;
        }

    .c_portalResnav_main-01001 .p_linkBox .iconfont:before {
        content: '';
    }

    .c_portalResnav_main-01001 .p_childBox .p_linkBox .icon-duduyinleappicon1401:before {
        content: '\e65f';
        color: #e29029;
        font-size: 10px
    }

    .c_portalResnav_main-01001 .p_categoryBox .p_childBox {
        border: 1px solid rgba(240, 240, 240, 1);
        z-index: 9;
        background: #fff !important;
    }

    .c_portalResnav_main-01001 .p_categoryBox .p_parentBox {
        position: relative;
        width: 14.25%;
        /* width: auto;*/
        height: 90px;
        float: left;
        text-align: center;
    }

    .c_portalResnav_main-01001 .p_childBox .p_parentBox {
        position: relative;
        width: 100%;
        /* width: auto;*/
        height: 50px;
        float: left;
        text-align: center;
    }

    .c_portalResnav_main-01001 .p_parentBox:last-child .p_linkBox {
        border-bottom: 0 none;
    }

    /* .c_portalResnav_main-01001 .p_parentBox:last-child .p_linkBox :hover{ background-color:rgba(239, 248, 248,1) }*/
    .c_portalResnav_main-01001 .p_categoryBox > .p_parentBox > .p_childBox {
        margin-top: 90px;
        left: 0px;
    }

    .c_portalResnav_main-01001 .p_categoryBox .slideOut {
        position: absolute;
        left: 100%;
        top: 0;
        width: 100%;
        height: auto;
        background: #fff;
    }

    .c_portalResnav_main-01001 .p_category > .js_categoryBox > .p_parentBox > .p_childBox {
        display: none;
    }

        .c_portalResnav_main-01001 .p_category > .js_categoryBox > .p_parentBox > .p_childBox.slideOut {
            display: block;
        }
}

#w_grid-1548322045199 {
    border-bottom: #5b5751 1px solid;
}

#w_grid-1558496000961 {
    border-bottom: #5b5751 1px solid;
}

.c_portalResnav_main-01001 .p_categoryBox .p_childBox .p_title {
    color: #444
}

    .c_portalResnav_main-01001 .p_categoryBox .p_childBox .p_title:hover {
        color: #e29029
    }

.w_grid-001 {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    min-height: 12rem;
    width: 100%;
}

    .w_grid-001 > .w_grid {
        width: 100%;
        position: relative;
    }

    .w_grid-001 > div > .p_gridbox {
        width: 100%;
        overflow: hidden;
        position: static;
    }

        .w_grid-001 > div > .p_gridbox > .p_gridCell {
            float: left;
            position: static;
        }

            .w_grid-001 > div > .p_gridbox > .p_gridCell:not(:empty):before {
                content: '';
                height: 0.1px;
                display: block;
            }

            .w_grid-001 > div > .p_gridbox > .p_gridCell:first-child {
                margin-left: 0;
                clear: left;
            }

#w_grid-001 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
    margin-left: 0;
    clear: left;
}

@media only screen and (max-width: 768px) {
    .w_grid-001 > div > .p_gridbox > .p_gridCell {
        width: 100%;
        margin-left: 0;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
}

@media only screen and (min-width: 769px) {
    .w_grid-001 > div > .p_gridbox > .p_gridCell {
        width: 49.5%;
        margin-left: 1%;
        margin-top: 0.6rem;
        margin-bottom: 0.6rem;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

.w_grid-000 {
    margin-left: auto;
    margin-right: auto;
    min-height: 12rem;
    width: 100%;
}

    .w_grid-000 > .w_grid {
        width: 100%;
        position: relative;
    }

    .w_grid-000 > div > .p_gridbox {
        width: 100%;
        overflow: hidden;
        position: static;
    }

    .w_grid-000 > div > div > .p_gridCell {
        float: left;
        position: static;
    }

        .w_grid-000 > div > div > .p_gridCell:not(:empty):before {
            content: '';
            height: 0.1px;
            display: block;
        }

    .w_grid-000 > .w_grid.signal {
        min-height: inherit;
    }

        .w_grid-000 > .w_grid.signal > .p_gridbox {
            min-height: inherit;
        }

            .w_grid-000 > .w_grid.signal > .p_gridbox > .p_gridCell {
                min-height: inherit;
            }

    .w_grid-000 > div > .p_gridbox > .p_gridCell:first-child {
        margin-left: 0;
        clear: left;
    }

#w_grid-000 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

@media only screen and (max-width: 768px) {
    .w_grid-000 > div > .p_gridbox > .p_gridCell {
        margin-left: 0;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }

    /*导航手机端样式*/
    #content_box-1558074493383-0 {
        width: 160px;
        float: left;
    }

    #content_box-1558074493383-1 {
        width: 100px;
        float: right;
        position: relative;
        z-index: 1;
        height: 1080px;
    }

    #content_box-1558074493383-2 {
        width: 45px;
        height: 45px;
        right: 125px;
        position: fixed;
    }

    #w_grid-1548322045199 {
        height: 80px !important;
    }

        #w_grid-1548322045199 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
            height: 80px;
        }

    #c_portalResPublic_codeContainer-15580761128141391 {
        margin-left: 15px !important;
        margin-top: 20px !important;
    }

    #content_box-1558074493383-1 .p_category {
        width: 100%;
        height: 1080px;
        position: fixed;
        top: 0;
        left: 100%;
    }

    #content_box-1558496004543-1 .p_category {
        width: 100%;
        position: fixed;
        top: 0;
        left: 100%;
    }

    #w_grid-1558074493383 .p_gridbox {
        overflow: visible !important;
    }

    /*母版导航手机端样式*/
    #content_box-1558496004543-0 {
        width: 160px;
        float: left;
    }

    #content_box-1558496004543-1 {
        width: 100px;
        float: right;
        position: relative;
        z-index: 1;
    }

    #content_box-1558496004543-2 {
        width: 45px;
        height: 45px;
        right: 125px;
        position: fixed;
    }

    #w_grid-1558496000961 {
        height: 84px !important;
    }
}

@media only screen and (min-width: 769px) {
    .w_grid-000 > div > .p_gridbox > .p_gridCell:first-child {
        width: 100%;
        margin-left: 0;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

/*引导页效果*/
#w_grid-1558004597776 {
    background-image: url(../images/yd_bj001.jpg);
    background-image-part-image: url(../images/yd_bj001.jpg);
    animation-duration: 8.5s;
}

.yd_body {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 50px;
    position: relative;
}

.yd_logo {
    padding-top: 30px
}

.yd_bj {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.yd_text {
    margin-top: 40%;
}

    .yd_text h1 {
        font-size: 16px;
        line-height: 2em;
    }

    .yd_text :before {
        position: absolute;
        width: 1px;
        display: block;
        content: "";
        height: 120px;
        background: #999;
        left: 50%;
        bottom: 46%;
        animation-name: scrollTip;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: cubic-bezier(0.82, 0.24, 0.25, 1);
    }

@keyframes scrollTip {
    0% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    49% {
        transform: scale(1, 1);
        transform-origin: top;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }
}

.yd_more a {
    display: block;
    width: 110px;
    height: 110px;
    background: url(../images/yd_tb01.png);
    margin: 0 auto;
    margin-top: 30px;
    font-size: 0px;
    position: relative;
    animation: 1s linear infinite CDturn;
    animation-direction: alternate;
    opacity: 1
}

.yd_more span {
    display: block;
    width: 15px;
    height: 13px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 53px;
    left: 50%;
    transform: translatex(-50%);
    transition: all .5s;
}

.yd_more a:hover span {
    bottom: 42px;
}

.yd_more a:hover {
    background: url(../images/yd_tb02.png);
    animation: none;
}

@keyframes CDturn {
    from {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

#w_grid-1548322045199 {
    background-color: rgba(0, 0, 0, 0);
}

    #w_grid-1548322045199.fixed {
        background-color: rgba(255, 255, 255, 1);
        border-bottom: #ddd 1px solid;
    }

        #w_grid-1548322045199.fixed .p_categoryBox .p_title {
            color: #222;
        }

            #w_grid-1548322045199.fixed .p_categoryBox .p_title:hover {
                color: #da7a01;
            }

#w_grid-1558496000961 {
    background-color: rgba(0, 0, 0, 0);
}

    #w_grid-1558496000961.fixed {
        background-color: rgba(255, 255, 255, 1);
        border-bottom: #ddd 1px solid;
    }

        #w_grid-1558496000961.fixed .p_categoryBox .p_title {
            color: #222;
        }

            #w_grid-1558496000961.fixed .p_categoryBox .p_title:hover {
                color: #da7a01;
            }

/*导航*/
.language a {
    display: block;
    width: 45px;
    height: 45px;
    border: #ce9d5f 1px solid;
    line-height: 45px;
    text-align: center;
    color: #ce9d5f;
}

    .language a:hover {
        background: #ce9d5f;
        color: #fff;
    }

.logo_01 {
    display: block;
}

.logo_02 {
    display: none;
}

.fixed .logo_01 {
    display: none;
}

.fixed .logo_02 {
    display: block;
}

/*首页关于我们*/
#w_grid-1558345851912 {
    background-image: url(../images/about_bj.jpg);
    background-image-part-image: url(../images/about_bj.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#w_common_text-1558604518073 p {
    border-bottom: #f0f0f0 1px solid;
    padding-bottom: 5px;
}

#w_common_text-1558605812103 p {
    border-bottom: #f0f0f0 1px solid;
    padding-bottom: 5px;
}

#c_portalResIntro_category-1558604271954 .p_parentBox:nth-child(3) {
    background: #ce9d5f;
}

#c_portalResIntro_category-1558604271954 .p_categoryBox .p_parentBox:nth-child(3) .p_title {
    color: #fff !important;
}

#c_portalResIntro_category-1558605812128 .p_parentBox:nth-child(4) {
    background: #ce9d5f;
}

#c_portalResIntro_category-1558605812128 .p_categoryBox .p_parentBox:nth-child(4) .p_title {
    color: #fff !important;
}

/*流式按钮-001*/
.w_fbtn-001 {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 150px;
    min-height: 36px;
    max-height: 0;
    text-align: center;
    margin: 0 auto;
    font-size: 0;
}

    .w_fbtn-001 .p_CommonBtn {
        width: 100%;
        height: inherit;
        padding: 0;
    }

        .w_fbtn-001 .p_CommonBtn .font {
            text-align: center;
            display: inline-block;
            vertical-align: middle;
            width: 100%;
            font-size: 14px;
            height: auto;
            line-height: 50px;
        }

    .w_fbtn-001 .animated {
        width: 100%;
        height: 100%;
        min-height: inherit;
    }

    .w_fbtn-001 .p_link {
        min-height: inherit;
        display: block;
    }

    .w_fbtn-001 .p_CommonBtn {
        border-style: solid;
    }

    .w_fbtn-001 .p_CommonBtn {
        width: 100%;
        height: 36px;
        color: rgba(255, 255, 255, 1);
        border-width: 1px;
        border-style: none;
        border-color: transparent;
        background-color: rgba(255, 102, 0, 1);
        padding-top: 0;
        padding-right: 20px;
        padding-left: 20px;
        text-align: center;
        min-height: inherit;
    }

        .w_fbtn-001 .p_CommonBtn:before {
            content: '';
            width: 0;
            height: 100%;
            display: inline-block;
            vertical-align: middle;
        }

@media only screen and (max-width:768px) {
    #c_portalResProduct_list-15585303838364422 a:hover {
        color: #ce9d5f;
        text-decoration: none
    }

    #c_portalResProduct_list-15585303838364422 a:focus {
        color: #ce9d5f;
        text-decoration: underline;
    }

    #c_portalResProduct_list-15585303838364422 a:active {
        color: #ce9d5f;
        text-decoration: none
    }

    .c_portalResProduct_list-01001019 {
        overflow: hidden;
        width: 100%;
        height: auto;
        min-width: 640px;
        margin-left: 0;
        margin-right: 0;
    }

        .c_portalResProduct_list-01001019 .p_ProductList {
            margin: 0;
            width: auto;
            height: auto;
            padding: 0;
            overflow: hidden;
            background-color: transparent;
            white-space: normal;
            font-size: 0;
        }

        .c_portalResProduct_list-01001019 .p_categorySummaryBox {
            padding: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.09);
        }

        .c_portalResProduct_list-01001019 .p_categorySummary {
            color: rgba(0, 0, 0, 0.45);
            font-size: 14px;
            line-height: 22px;
            text-align: left;
            vertical-align: top;
            word-break: break-all;
        }

        .c_portalResProduct_list-01001019 .p_sort {
            margin: 0;
            width: auto;
            height: auto;
            padding: 0 15px;
            overflow: hidden;
            font-size: 16px;
            display: -webkit-box;
            display: -moz-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            border-bottom: 10px solid #F5F5F5;
            display: none;
        }

    #w_grid-1557225604941 {
        display: none;
    }

    .c_portalResProduct_list-01001019 .d_sortBtn {
        -webkit-flex: 1.5;
        flex: 1.5;
        -webkit-box-flex: 1.5;
        -moz-box-flex: 1.5;
        -ms-flex: 1.5;
        display: block;
        position: relative;
        width: 100%;
        line-height: 40px;
        text-align: center;
    }

        .c_portalResProduct_list-01001019 .d_sortBtn:hover,
        .c_portalResProduct_list-01001019 .d_sortBtn:active {
            border-color: #a01c31;
            color: #a01c31;
            z-index: 2;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn.active {
            border-color: #a01c31;
            color: #a01c31;
            z-index: 2;
        }

    .c_portalResProduct_list-01001019 .p_default {
        -webkit-flex: 1;
        flex: 1;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
    }

    .c_portalResProduct_list-01001019 .d_sortBtn:lang(active) {
        border-color: #a01c31;
        color: #a01c31;
        z-index: 2;
    }

    .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont:first-child {
        display: none;
    }

    .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont {
        display: inline-block;
        font-size: 12px;
        width: 0;
        height: 0;
        margin: 5px 0 0 3px;
        font: 0/0 arial;
        vertical-align: middle;
        border: 5px dashed transparent;
        border-top: 5px solid rgba(0, 0, 0, 0.45);
        text-align: center;
    }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont:before {
            content: "\e69a";
            line-height: 30px;
        }

    .c_portalResProduct_list-01001019 .d_sortBtn:lang(active) .font .iconfont,
    .c_portalResProduct_list-01001019 .d_sortBtn:hover .font .iconfont,
    .c_portalResProduct_list-01001019 .d_sortBtn:active .font .iconfont {
        color: #a01c31;
        border-top-color: #a01c31;
    }

    .c_portalResProduct_list-01001019 .d_sortBtn .font .down-arrow {
        margin-top: 0;
        border-top: 0 none;
        border-bottom: 5px solid rgba(0, 0, 0, 0.45);
    }

    .c_portalResProduct_list-01001019 .d_sortBtn .font .arrow:before {
        content: "\e69c";
    }

    .c_portalResProduct_list-01001019 .p_default .font .iconfont {
        display: none;
    }

    .c_portalResProduct_list-01001019 .p_products {
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: hidden;
        white-space: normal;
    }

    .c_portalResProduct_list-01001019 .p_Product {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: calc((100% - 0px)/4);
        padding: 15px 15px 0;
        height: inherit;
    }

    .c_portalResProduct_list-01001019 .p_ProductInner {
        width: 100%;
        padding: 0 0 15px;
        border-top: 0 none;
        border-left: 0 none;
        border-right: 0 none;
        box-sizing: content-box;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .c_portalResProduct_list-01001019 .p_Product:last-of-type .p_ProductInner {
        border: 0 none;
    }

    .c_portalResProduct_list-01001019 .p_images {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 0;
        overflow: hidden;
        webkit-flex: 1;
        flex: 1;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
    }

    .c_portalResProduct_list-01001019 .p_image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .c_portalResProduct_list-01001019 .p_imagesPc {
        display: none;
    }

    .c_portalResProduct_list-01001019 .p_linkB {
        width: inherit;
        height: inherit;
        display: block;
        position: static;
    }

    .c_portalResProduct_list-01001019 .p_image {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .c_portalResProduct_list-01001019 .p_ThumbnailBox {
        display: none;
    }

    .c_portalResProduct_list-01001019 .d_articles {
        height: auto;
        width: auto;
        padding: 0 0 0 15px;
        margin: 0;
        overflow: hidden;
        -webkit-flex: 2.4;
        flex: 2.4;
        -webkit-box-flex: 2.4;
        -moz-box-flex: 2.4;
        -ms-flex: 2.4;
    }

    .c_portalResProduct_list-01001019 .d_HeadBox {
        margin: 0;
        width: auto;
        height: auto;
        padding: 0;
        border-width: 1px;
        border-style: none;
        border-color: rgba(228, 228, 228, 0);
        background-color: transparent;
        overflow: hidden;
    }

    .c_portalResProduct_list-01001019 .d_title {
        display: block;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        font-weight: 400;
        cursor: pointer;
        line-height: 22px;
        vertical-align: middle;
    }

    .c_portalResProduct_list-01001019 .p_TagBox {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        width: auto;
        height: auto;
        padding: 0;
        border-width: 1px;
        border-style: none;
        border-color: rgba(228, 228, 228, 0);
        background-color: transparent;
        overflow: hidden;
        display: none;
    }

    .c_portalResProduct_list-01001019 .p_tag {
        float: left;
        margin: 0 5px 0 5px;
        padding: 0;
        border-width: 1px;
        border-style: none;
        border-color: transparent;
        overflow: hidden;
    }

        .c_portalResProduct_list-01001019 .p_tag:hover {
            border-width: 1px;
            border-style: none;
            border-color: transparent;
        }

        .c_portalResProduct_list-01001019 .p_tag:active {
            border-width: 1px;
            border-style: none;
            border-color: transparent;
        }

    .c_portalResProduct_list-01001019 .d_item {
        width: auto;
        height: auto;
        margin: 5px 0;
        padding: 0;
        vertical-align: middle;
        overflow: hidden;
        display: none;
    }

        .c_portalResProduct_list-01001019 .d_item .d_itemLable {
            display: inline-block;
            vertical-align: middle;
            margin: 0 5px 0 0;
            font-size: 14px;
        }

        .c_portalResProduct_list-01001019 .d_item .d_itemValue {
            display: inline-block;
            vertical-align: middle;
            font-size: 14px;
        }

    .c_portalResProduct_list-01001019 .p_salePricePc,
    .c_portalResProduct_list-01001019 .p_NomBoxPc {
        display: none;
    }

    .c_portalResProduct_list-01001019 .d_SummaryBox {
        margin: 5px 0;
        width: auto;
        height: auto;
        padding: 0;
        overflow: hidden;
    }

    .c_portalResProduct_list-01001019 .d_summary {
        color: #999;
        font-size: 12px;
        line-height: 20px;
        text-align: left;
        vertical-align: top;
        word-break: break-all;
    }

    .c_portalResProduct_list-01001019 .d_SalePrice {
        display: inline-table;
        margin: 0;
        padding: 0;
        text-align: left;
        vertical-align: middle;
    }

    .c_portalResProduct_list-01001019 .p_priceUnit::before {
        content: "\e6d7";
    }

    .c_portalResProduct_list-01001019 .p_interaction {
        margin: 0;
        width: auto;
        height: auto;
        padding: 0;
        border-width: 1px;
        border-style: none;
        border-color: rgba(228, 228, 228, 0);
        background-color: transparent;
        overflow: hidden;
        word-break: break-all;
        white-space: normal;
        font-size: 14px;
    }

        .c_portalResProduct_list-01001019 .p_interaction .btn-default {
            display: inline-block;
            margin: 5px 0 0;
        }

    .c_portalResProduct_list-01001019 .p_keyword {
        display: inline-block;
        padding-right: 5px;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: middle;
    }
}

@media only screen and (min-width:769px) {
    .c_portalResProduct_list-01001019 {
        overflow: hidden;
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

        .c_portalResProduct_list-01001019 .p_ProductList {
            width: auto;
            height: auto;
            overflow: hidden;
            white-space: normal;
            font-size: 0;
            padding: 20px 25px;
            padding-bottom: 50px;
        }

        .c_portalResProduct_list-01001019 .p_categorySummaryBox {
            padding: 0 0 20px;
            margin: 0 0 30px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.09);
        }

        .c_portalResProduct_list-01001019 .p_categorySummary {
            color: rgba(0, 0, 0, 0.45);
            font-size: 14px;
            line-height: 22px;
            text-align: left;
            vertical-align: top;
            word-break: break-all;
        }

        .c_portalResProduct_list-01001019 .p_sort {
            margin: 0 0 10px;
            width: auto;
            height: auto;
            padding: 0 0 0 1px;
            border-width: 1px;
            border-style: none;
            border-color: rgba(228, 228, 228, 0);
            background-color: transparent;
            overflow: hidden;
            clear: both;
            font-size: 14px;
            display: none;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn {
            position: relative;
            float: left;
            height: 30px;
            margin: 0 0 0 -1px;
            line-height: 30px;
            text-align: left;
            padding-left: 15px;
            padding-right: 30px;
            background-color: rgba(255, 255, 255, 1);
            border-width: 1px;
            border-style: solid;
            border-color: #D9D9D9;
            cursor: pointer;
            color: rgba(0, 0, 0, 0.65);
        }

            .c_portalResProduct_list-01001019 .d_sortBtn:hover,
            .c_portalResProduct_list-01001019 .d_sortBtn:active {
                border-color: #a01c31;
                color: #a01c31;
                z-index: 2;
            }

            .c_portalResProduct_list-01001019 .d_sortBtn.active {
                border-color: #a01c31;
                color: #a01c31;
                z-index: 2;
            }

        .c_portalResProduct_list-01001019 .p_default {
            padding-right: 15px;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn:lang(active) {
            border-color: #a01c31;
            color: #a01c31;
            z-index: 2;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont:first-child {
            display: none;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont {
            display: inline-block;
            position: absolute;
            top: 0;
            right: 8px;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.65);
            text-align: center;
            transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
        }

            .c_portalResProduct_list-01001019 .d_sortBtn .font .iconfont:before {
                content: "\e69a";
                line-height: 30px;
            }

        .c_portalResProduct_list-01001019 .d_sortBtn:lang(active) .font .iconfont,
        .c_portalResProduct_list-01001019 .d_sortBtn:hover .font .iconfont,
        .c_portalResProduct_list-01001019 .d_sortBtn:active .font .iconfont {
            color: #a01c31;
        }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .arrow {
            transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
        }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .down-arrow {
            transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
        }

        .c_portalResProduct_list-01001019 .d_sortBtn .font .arrow:before {
            content: "\e69a";
        }

        .c_portalResProduct_list-01001019 .p_default .iconfont.arrow {
            display: none;
        }

        .c_portalResProduct_list-01001019 .p_products {
            width: auto;
            height: auto;
            margin: 0;
            padding: 0;
            overflow: hidden;
            white-space: normal;
        }

        .c_portalResProduct_list-01001019 .p_Product {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: calc((100% - 0px)/4);
            padding: 10px;
            height: inherit;
        }

        .c_portalResProduct_list-01001019 .p_ProductInner {
            width: 100%;
            padding: 0 0 5px;
            box-sizing: content-box;
            border: #dbdbdb 1px solid
        }

            .c_portalResProduct_list-01001019 .p_ProductInner:hover {
                border-width: 3px;
                border-color: #ce9d5f;
                margin: -2px;
            }

        .c_portalResProduct_list-01001019 .p_images {
            position: relative;
            width: 100%;
            height: 188px;
            margin: 0;
            padding: 0;
            text-align: center;
            font-size: 0;
            overflow: hidden;
            padding-bottom: 100% !important;
        }

        .c_portalResProduct_list-01001019 .p_imagesMo {
            display: none;
        }

        .c_portalResProduct_list-01001019 .p_linkB {
            width: inherit;
            height: inherit;
            display: block;
            position: static;
        }

        .c_portalResProduct_list-01001019 .p_image {
            width: 100%;
            height: 100%;
            padding: 0;
        }

        .c_portalResProduct_list-01001019 .p_ThumbnailBox {
            position: absolute;
            left: 0;
            bottom: 1px;
            z-index: 10;
            width: 236px;
            height: auto;
            padding: 0;
            overflow: hidden;
            height: auto;
        }

            .c_portalResProduct_list-01001019 .p_ThumbnailBox .p_thumbnail {
                position: relative;
                width: 42px;
                height: 34px;
                float: left;
                margin: 0 2px;
                max-width: 42px;
                max-height: 34px;
                overflow: hidden;
                border: 2px solid rgba(0, 0, 0, .45)
            }

                .c_portalResProduct_list-01001019 .p_ThumbnailBox .p_thumbnail:hover {
                    border-color: rgba(255, 255, 255, .7)
                }

        .c_portalResProduct_list-01001019 .d_articles {
            height: auto;
            width: auto;
            margin: 0;
            overflow: hidden;
            -webkit-flex: 2.4;
            flex: 2.4;
            -webkit-box-flex: 2.4;
            -moz-box-flex: 2.4;
            -ms-flex: 2.4;
        }

        .c_portalResProduct_list-01001019 .d_HeadBox {
            margin: 5px 0 0;
            width: auto;
            height: auto;
            padding: 15px 0px;
            border-width: 1px;
            border-style: none;
            border-color: rgba(228, 228, 228, 0);
            background-color: transparent;
            overflow: hidden;
            text-align: center;
        }

        .c_portalResProduct_list-01001019 .d_title {
            display: block;
            width: auto;
            height: auto;
            margin: 0;
            padding: 0;
            font-weight: 400;
            cursor: pointer;
            line-height: 50px;
            vertical-align: middle;
            text-align: center;
        }

            .c_portalResProduct_list-01001019 .d_title:hover {
                color: #ce9d5f
            }

        .c_portalResProduct_list-01001019 .p_TagBox {
            position: absolute;
            top: 0;
            right: 0;
            margin: 0;
            width: auto;
            height: auto;
            padding: 0;
            border-width: 1px;
            border-style: none;
            border-color: rgba(228, 228, 228, 0);
            background-color: transparent;
            overflow: hidden;
        }

        .c_portalResProduct_list-01001019 .p_tag {
            float: left;
            margin: 0 5px 0 5px;
            padding: 0;
            border-width: 1px;
            border-style: none;
            border-color: transparent;
            overflow: hidden;
        }

            .c_portalResProduct_list-01001019 .p_tag:hover {
                border-width: 1px;
                border-style: none;
                border-color: transparent;
            }

            .c_portalResProduct_list-01001019 .p_tag:active {
                border-width: 1px;
                border-style: none;
                border-color: transparent;
            }

        .c_portalResProduct_list-01001019 .d_item {
            width: auto;
            height: auto;
            margin: 5px 0;
            padding: 0;
            vertical-align: middle;
            overflow: hidden;
            display: none;
        }

            .c_portalResProduct_list-01001019 .d_item .d_itemLable {
                display: inline-block;
                vertical-align: middle;
                margin: 0 5px 0 0;
                font-size: 14px;
            }

            .c_portalResProduct_list-01001019 .d_item .d_itemValue {
                display: inline-block;
                vertical-align: middle;
                font-size: 14px;
            }

        .c_portalResProduct_list-01001019 .p_salePriceMo,
        .c_portalResProduct_list-01001019 .p_NomBoxMo {
            display: none;
        }

        .c_portalResProduct_list-01001019 .d_SummaryBox {
            margin: 5px 0;
            width: auto;
            height: auto;
            padding: 0;
            overflow: hidden;
            display: none;
        }

        .c_portalResProduct_list-01001019 .d_summary {
            line-height: 20px;
            text-align: left;
            vertical-align: top;
            word-break: break-all;
        }

        .c_portalResProduct_list-01001019 .d_SalePrice {
            display: inline-table;
            margin: 0;
            padding: 0;
            text-align: left;
            vertical-align: middle;
        }

        .c_portalResProduct_list-01001019 .p_priceUnit::before {
            content: "\e6d7";
        }

        .c_portalResProduct_list-01001019 .p_interaction {
            margin: 0;
            width: auto;
            height: auto;
            padding: 0;
            border-width: 1px;
            border-style: none;
            border-color: rgba(228, 228, 228, 0);
            background-color: transparent;
            overflow: hidden;
            word-break: break-all;
            white-space: normal;
            font-size: 14px;
        }

            .c_portalResProduct_list-01001019 .p_interaction .btn-default {
                display: inline-block;
                margin: 5px 0 0;
            }

        .c_portalResProduct_list-01001019 .p_keyword {
            display: inline-block;
            padding-right: 5px;
            white-space: nowrap;
            overflow: hidden;
            vertical-align: middle;
        }
}

@media only screen and (min-width:769px) and (max-width: 1024px) {
}

.c_portalResProduct_list-01001019 .p_CommonSummaryBoxA {
    text-align: center;
}

.c_portalResProduct_list-01001019 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

.c_portalResProduct_list-01001019 > div {
    animation-fill-mode: both;
}

.c_portalResProduct_list-01001019 .proBox {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.c_portalResProduct_list-01001019 .proContainer {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0rem auto;
}

.c_portalResProduct_list-01001019 .proLi {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.c_portalResProduct_list-01001019 .porTbox {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0px;
    padding-bottom: 100%;
}

.c_portalResProduct_list-01001019 .proImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
}

.c_portalResProduct_list-01001019 .porBbox {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 130px;
    padding: 20px 20px 10px;
    border: 1px solid #e9e9e9;
}

.c_portalResProduct_list-01001019 .proTitle {
    font-size: 1rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.c_portalResProduct_list-01001019 .proSummry {
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    margin: 10px 0;
    text-overflow: ellipsis;
}

.c_portalResProduct_list-01001019 .lookDetail {
    position: relative;
    display: block;
    color: #777;
    height: 38px;
    line-height: 38px;
    border-top: 1px solid #e5e5e5;
}

.c_portalResProduct_list-01001019 .arrowsR {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
    width: 30px;
}

    .c_portalResProduct_list-01001019 .arrowsR img {
        position: absolute;
        transition: all .5s ease;
    }

.c_portalResProduct_list-01001019 .harr {
    opacity: 0;
}

.c_portalResProduct_list-01001019 .showBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, .6);
    transition: all 0.5s ease;
}

.c_portalResProduct_list-01001019 .showBoxLink {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 60%;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}

    .c_portalResProduct_list-01001019 .showBoxLink::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: #fff;
        transition: all .5s ease;
    }

    .c_portalResProduct_list-01001019 .showBoxLink::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: #fff;
        transition: all .5s ease;
    }

.c_portalResProduct_list-01001019 .lookDetail:hover .barr {
    opacity: 0;
}

.c_portalResProduct_list-01001019 .lookDetail:hover .harr {
    opacity: 1;
}

.c_portalResProduct_list-01001019 .proLi:hover .showBox {
    opacity: 1;
}

.c_portalResProduct_list-01001019 .proLi:hover .proImg {
    transform: translate(-50%, -50%) scale(1.1);
}

.c_portalResProduct_list-01001019 .proLi:hover .showBoxLink::before {
    width: 1rem;
}

.c_portalResProduct_list-01001019 .proLi:hover .showBoxLink::after {
    width: 1rem;
}

@media only screen and (min-width: 769px) {
    .c_portalResProduct_list-01001019 .proContainer {
        max-width: 100%;
    }

    .c_portalResProduct_list-01001019 .proLi {
        width: calc(100% / 4);
        height: auto;
        float: left;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .c_portalResProduct_list-01001019 .proContainer {
        max-width: 100%;
    }

    .c_portalResProduct_list-01001019 .proLi {
        width: 50%;
        height: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .c_portalResProduct_list-01001019 .p_pagebox .pre {
        background-color: #e37c26 !important;
    }

    .c_portalResProduct_list-01001019 .proLi {
        padding: 20px 0px;
    }
}

.c_portalResProduct_list-01001019 .p_page .pre .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

.c_portalResProduct_list-01001019 .p_page .next .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

.c_portalResProduct_list-01001019 .p_more .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

.c_portalResProduct_list-01001019 .p_loading .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

.c_portalResProduct_list-01001019 .p_page .pageNum.active {
    background-color: #e37c26;
    border-color: #e37c26;
}

.c_portalResProduct_list-01001019 .p_page .pageNum:active {
    background-color: #e37c26 !important;
    border-color: #e37c26 !important;
}

.c_portalResProduct_list-01001019 .p_page .pageNum:hover {
    background-color: #e37c26 !important;
    border-color: #e37c26 !important;
}

.c_portalResProduct_list-01001019 .p_page .next:active {
    background-color: #e37c26 !important;
    border-color: #e37c26 !important;
}

.c_portalResProduct_list-01001019 .p_page .next:hover {
    background-color: #e37c26 !important;
    border-color: #e37c26 !important;
}

.c_portalResNews_list-01001 {
    min-width: 320px;
    width: 100%;
}

    .c_portalResNews_list-01001 .p_PromptNoneData {
        width: auto;
        text-align: center
    }

        .c_portalResNews_list-01001 .p_PromptNoneData .prompt_title .iconfont:before {
            content: ""
        }

        .c_portalResNews_list-01001 .p_PromptNoneData .prompt_title .first {
            height: auto;
            display: table-cell;
            position: relative;
            vertical-align: middle;
            padding: 0 10px 5px 0;
        }

        .c_portalResNews_list-01001 .p_PromptNoneData .prompt_title {
            display: inline-table;
            padding: 0 30px;
            min-height: 200px;
            height: 100%
        }

            .c_portalResNews_list-01001 .p_PromptNoneData .prompt_title .first:before {
                content: "\e6b4"
            }

            .c_portalResNews_list-01001 .p_PromptNoneData .prompt_title .font {
                display: table-cell;
                vertical-align: middle;
                text-align: left
            }

        .c_portalResNews_list-01001 .p_PromptNoneData .promptbox {
            width: auto;
            height: 100%
        }

        .c_portalResNews_list-01001 .p_PromptNoneData .prompt_content {
            padding-left: 65px
        }

    /*引导短连接*/
    .c_portalResNews_list-01001 .p_moreBtn {
        position: static;
        width: auto;
        display: inline-table;
        min-height: 29px;
        margin: 0;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        min-width: 86px;
        cursor: pointer;
        text-align: center
    }

        .c_portalResNews_list-01001 .p_moreBtn .font {
            white-space: nowrap;
            overflow: visible;
            vertical-align: middle
        }

        .c_portalResNews_list-01001 .p_moreBtn .iconfont:before {
            content: ""
        }

@-moz-keyframes three-quarters-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes three-quarters-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes three-quarters-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading_animation {
    -moz-animation: three-quarters-loader 850ms infinite linear;
    -webkit-animation: three-quarters-loader 850ms infinite linear;
    animation: three-quarters-loader 850ms infinite linear;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
    width: 32px;
    height: 32px;
    vertical-align: middle
}

.c_portalResNews_list-01001 .p_loading {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

    .c_portalResNews_list-01001 .p_loading .iconfont:before {
        content: ""
    }

    .c_portalResNews_list-01001 .p_loading .font {
        display: inline-block;
        margin-left: 20px;
        height: inherit
    }

/*无效果/分组*/
.c_portalResNews_list-01001 .p_moreBox {
    margin: 0 20px;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden
}

/*引导短连接 查看详情 */
.c_portalResNews_list-01001 .p_ToDetail {
    display: inline-block;
    margin: 0;
    padding: 10px 20px;
    min-width: 86px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

a > .c_portalResNews_list-01001 .p_ToDetail:hover {
    cursor: pointer
}

/*概要信息*/
.c_portalResNews_list-01001 .p_SummaryBox {
    margin: 0;
    width: 236px;
    height: 317px;
    padding: 0;
    overflow: hidden
}

.c_portalResNews_list-01001 .p_summary {
    text-align: left;
    vertical-align: top;
    word-break: normal;
}

/*辅助字段值*/
.c_portalResNews_list-01001 .p_time {
    display: inline-block;
    margin: 0;
    padding: 0 5px 0 0;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    line-height: 18px;
    vertical-align: top
}

/* 互动信息 */
.c_portalResNews_list-01001 .p_assist {
    margin: 0;
    width: 236px;
    height: 317px;
    padding: 0;
    overflow: hidden
}

/*概要列表标题*/
.c_portalResNews_list-01001 .p_TitleBox {
    width: auto;
    height: auto;
    padding: 5px 0;
    overflow: hidden;
    vertical-align: top;
}

.c_portalResNews_list-01001 .p_title {
    display: inline-table;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #222;
}

    .c_portalResNews_list-01001 .p_title:hover {
        color: #e37c26;
    }

/*列表序容器*/
.c_portalResNews_list-01001 .p_header {
    margin: 5px 0 0;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
}

/*无效果/分组*/
.c_portalResNews_list-01001 .p_content {
    margin: 0;
    width: 236px;
    height: 317px;
    padding: 0;
    overflow: hidden
}

/*资讯列表容器*/
.c_portalResNews_list-01001 .p_images {
    margin: 0;
    width: 168px;
    height: 138px;
    padding: 0;
    overflow: hidden;
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
    vertical-align: middle;
    text-align: center;
    margin-right: 15px;
    display: none
}

/*行列表容器*/
.c_portalResNews_list-01001 .p_articles {
    margin: 0;
    width: inherit;
    height: 186px;
    padding: 0;
}

/*通用容器*/
.c_portalResNews_list-01001 .p_news {
    margin: 0;
    width: inherit;
    height: auto;
    padding: 0;
    overflow: hidden;
}

/*主要内容区容器*/
.c_portalResNews_list-01001 .p_Newslist {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.c_portalResNews_list-01001 {
    overflow: hidden;
}

    .c_portalResNews_list-01001 .p_content {
        width: auto;
        height: auto;
        vertical-align: top
    }

    .c_portalResNews_list-01001 .p_SummaryBox {
        width: auto;
        height: auto;
    }

    .c_portalResNews_list-01001 .p_assist {
        width: auto;
        height: auto;
    }

    /*覆盖阶段结束*/
    /*改为inline-block*/
    .c_portalResNews_list-01001 .p_icon {
        display: inline-block;
        vertical-align: middle;
        margin-top: 2px
    }

    .c_portalResNews_list-01001 .p_about {
        display: inline-block;
        vertical-align: middle
    }

    /*end*/
    /*组件样式开始*/
    .c_portalResNews_list-01001 .p_articles {
        display: inline-block;
        height: auto;
        min-width: 320px;
        width: calc((100% - 0px)/1);
        padding: 15px 20px;
        overflow: hidden;
        float: left;
    }

    .c_portalResNews_list-01001 .p_thumbnail {
        width: 100%;
        height: auto;
        vertical-align: middle;
        text-align: center;
        overflow: hidden
    }

        .c_portalResNews_list-01001 .p_thumbnail img {
            width: 100%;
        }

    .c_portalResNews_list-01001 .higher .p_thumbnail {
        position: absolute;
        height: 100%
    }

    .c_portalResNews_list-01001 .widther .p_thumbnail {
        position: absolute;
        height: 100%
    }

    .c_portalResNews_list-01001 .smaller .p_thumbnail {
        position: absolute;
        height: 100%
    }

    .c_portalResNews_list-01001 .p_assist {
        margin-top: 2px;
    }

    .c_portalResNews_list-01001 .p_SummaryBox {
        clear: both;
        margin-bottom: 10px;
        margin-top: 8px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .c_portalResNews_list-01001 .p_ToDetail {
        float: left;
        position: relative;
        border-color: #cf8b32 !important;
        margin-top: 15px;
        display: none;
    }

    .c_portalResNews_list-01001 .p_summary {
        white-space: normal;
        line-height: 1.5;
        font-size: 0.925rem;
    }

    .c_portalResNews_list-01001 .p_categorySummaryBox {
        overflow: hidden;
        padding: 10px;
        display: none;
    }

@media only screen and (max-width: 768px) {
    .c_portalResNews_list-01001 .p_articles {
        margin-top: 10px !important;
        width: 100% !important;
    }

    .c_portalResNews_list-01001 .mp_linkUrl {
        display: block;
        height: auto;
    }

    .c_portalResNews_list-01001 .p_SummaryBox {
        display: none;
    }

    .c_portalResNews_list-01001 .p_ToDetail {
        display: none !important;
    }

    .c_portalResNews_list-01001 .mP_SummaryBox {
        clear: both;
    }

    .c_portalResNews_list-01001 .p_Information {
        display: flex;
        padding: 10px 0;
    }

        .c_portalResNews_list-01001 .p_Information li {
            flex: 1;
            height: 20px;
            overflow: hidden;
        }

    .c_portalResNews_list-01001 .p_KeyWord {
        width: 100%;
        margin-top: 5px;
    }

        .c_portalResNews_list-01001 .p_KeyWord .p_tag {
            padding: 5px 15px;
            margin-right: 10px;
            border-radius: 3px;
        }

    .c_portalResNews_list-01001 .blank {
        width: 100%;
        height: 15px;
        overflow: hidden;
    }

    .c_portalResNews_list-01001 .p_articles {
        border: none
    }
}

@media only screen and (min-width: 769px) {
    .c_portalResNews_list-01001 .mp_linkUrl {
        display: none;
    }

    .c_portalResNews_list-01001 .mP_SummaryBox {
        display: none;
    }

    .c_portalResNews_list-01001 .p_Information {
        display: none;
    }

    .c_portalResNews_list-01001 .p_KeyWord {
        display: none;
    }

    .c_portalResNews_list-01001 .blank {
        display: none;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

.w_fline-001 .p_FLine {
    width: 100%;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(0, 78, 162, 1);
    opacity: 1;
    filter: alpha(opacity:100);
    display: inline-block;
    vertical-align: middle;
}

.w_fline-001 {
    width: 100%;
    min-height: 20px;
    display: block;
    margin: 0 auto;
}

    .w_fline-001 .w_fline {
        width: 100%;
        min-height: inherit;
        font-size: 0;
    }

        .w_fline-001 .w_fline:before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            min-height: inherit;
            width: 0;
        }

.c_portalResOnlineService_categorylay-01001 {
    width: 24px;
    height: 152px;
    position: fixed !important;
    /*overflow: hidden;*/
    right: 0 !important;
    top: 20% !important;
    left: initial !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    min-height: 1920px;
}

@media only screen and (max-width: 768px) {

    /*//小屏*/
    .c_portalResOnlineService_categorylay-01001 .p_btnBox {
        height: inherit;
        width: inherit;
        background-color: #1890ff;
        text-align: center;
        position: inherit;
        display: block;
    }

    .c_portalResOnlineService_categorylay-01001 .p_btn {
        font-size: 14px;
        height: inherit;
        width: inherit;
        color: rgba(255, 255, 255, 1);
        position: inherit;
        display: block;
    }

        .c_portalResOnlineService_categorylay-01001 .p_btn .font {
            display: block;
            vertical-align: middle;
            margin-top: 25px;
            height: auto;
        }

        .c_portalResOnlineService_categorylay-01001 .p_btn .iconfont:before {
            content: "\e6af";
        }

    .c_portalResOnlineService_categorylay-01001 .p_Box {
        position: absolute;
        left: -220px;
        width: 220px;
        background: #fff !important;
        height: auto;
        overflow: hidden;
    }

    .c_portalResOnlineService_categorylay-01001 .p_headBox {
        width: auto;
        height: auto;
        padding: 20px;
        border: 1px solid #E4E4E4;
        border-bottom: none;
    }

        .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name {
            font-size: 16px;
            color: #333333
        }

            .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name .iconfont {
                font-size: 28px;
                background-color: #999999;
                color: #fff;
                border-radius: 4px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 5px;
            }

                .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name .iconfont:before {
                    content: "\e628";
                }

        .c_portalResOnlineService_categorylay-01001 .p_headBox .p_tel {
            margin-top: 10px;
            font-size: 20px;
            font-weight: bold;
            color: #333333;
        }

    .c_portalResOnlineService_categorylay-01001 .p_contentBox {
        width: auto;
        height: auto;
        padding: 20px 15px;
        border: 1px solid #E4E4E4;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles {
        width: auto;
        height: auto;
        color: #999999;
        margin-bottom: 30px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_contentBox .p_articles:last-child {
        margin-bottom: 10px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_title,
    .p_articles .p_QQ,
    .p_articles .p_Wang,
    .p_articles .p_skpey {
        float: left;
        width: 7em;
        text-align: right;
        font-size: 14px;
    }

        .c_portalResOnlineService_categorylay-01001 .p_articles .p_title .iconfont:before {
            content: "\e628";
            margin-right: 5px;
        }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_QQ .iconfont:before {
        content: "\e6e4";
        margin-right: 5px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_Wang .iconfont:before {
        content: "\e6e5";
        margin-right: 5px;
        color: #1890ff;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_skpey .iconfont:before {
        content: "\e6e3";
        margin-right: 5px;
        color: #1890ff;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_list,
    .p_articles .p_listA,
    .p_articles .p_listB,
    .p_articles .p_listC {
        margin-top: 10px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_AssistName .font,
    .p_articles .p_AssistNameA .font,
    .p_articles .p_AssistNameB .font,
    .p_articles .p_AssistNameC .font {
        font-size: 14px;
        line-height: 19px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_footerBox {
        width: auto;
        height: auto;
    }

    .c_portalResOnlineService_categorylay-01001 .p_timeBox {
        width: auto;
        height: auto;
        padding: 20px;
        border: 1px solid #E4E4E4;
        border-top: none;
        text-align: center;
    }

    .c_portalResOnlineService_categorylay-01001 .p_time {
        display: inline-block;
        font-size: 14px;
        color: #999999;
        vertical-align: middle;
    }

        .c_portalResOnlineService_categorylay-01001 .p_time .iconfont:before {
            content: "\e67b";
            margin-right: 5px;
        }

    .c_portalResOnlineService_categorylay-01001 .p_AssistNameC {
        font-size: 14px;
        color: #999999;
        display: inline-block;
        vertical-align: middle;
    }

    .c_portalResOnlineService_categorylay-01001 .p_contralBox {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .c_portalResOnlineService_categorylay-01001 .p_Box.open .p_contralBox {
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .c_portalResOnlineService_categorylay-01001 .p_btnBox.open .p_btn .iconfont:before {
        content: "\e6b0";
    }
}

@media only screen and (min-width:768px) {

    /*//大屏*/
    .c_portalResOnlineService_categorylay-01001 .p_btnBox {
        height: inherit;
        width: inherit;
        background-color: #1890ff;
        text-align: center;
        position: inherit;
        display: block;
    }

    .c_portalResOnlineService_categorylay-01001 .p_btn {
        font-size: 14px;
        height: inherit;
        width: inherit;
        color: rgba(255, 255, 255, 1);
        position: inherit;
        display: block;
    }

        .c_portalResOnlineService_categorylay-01001 .p_btn .font {
            display: block;
            vertical-align: middle;
            margin-top: 25px;
            height: auto;
        }

        .c_portalResOnlineService_categorylay-01001 .p_btn .iconfont:before {
            content: "\e6af";
        }

    .c_portalResOnlineService_categorylay-01001 .p_Box {
        position: absolute;
        left: -220px;
        width: 220px;
        height: auto;
        overflow: hidden;
    }

    .c_portalResOnlineService_categorylay-01001 .p_headBox {
        width: auto;
        height: auto;
        padding: 20px;
        border: 1px solid #E4E4E4;
        border-bottom: none;
    }

        .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name {
            font-size: 16px;
            color: #333333
        }

            .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name .iconfont {
                font-size: 28px;
                background-color: #999999;
                color: #fff;
                border-radius: 4px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 5px;
            }

                .c_portalResOnlineService_categorylay-01001 .p_headBox .p_name .iconfont:before {
                    content: "\e628";
                }

        .c_portalResOnlineService_categorylay-01001 .p_headBox .p_tel {
            margin-top: 10px;
            font-size: 20px;
            font-weight: bold;
            color: #333333;
        }

    .c_portalResOnlineService_categorylay-01001 .p_contentBox {
        width: auto;
        height: auto;
        padding: 20px 15px;
        border: 1px solid #E4E4E4;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles {
        width: auto;
        height: auto;
        color: #999999;
        margin-bottom: 30px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_contentBox .p_articles:last-child {
        margin-bottom: 10px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_title,
    .p_articles .p_QQ,
    .p_articles .p_Wang,
    .p_articles .p_skpey {
        float: left;
        width: 7em;
        text-align: right;
        font-size: 14px;
    }

        .c_portalResOnlineService_categorylay-01001 .p_articles .p_title .iconfont:before {
            content: "\e628";
            margin-right: 5px;
        }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_QQ .iconfont:before {
        content: "\e6e4";
        margin-right: 5px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_Wang .iconfont:before {
        content: "\e6e5";
        margin-right: 5px;
        color: #1890ff;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_skpey .iconfont:before {
        content: "\e6e3";
        margin-right: 5px;
        color: #1890ff;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_list,
    .p_articles .p_listA,
    .p_articles .p_listB,
    .p_articles .p_listC {
        margin-top: 10px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_articles .p_AssistName .font,
    .p_articles .p_AssistNameA .font,
    .p_articles .p_AssistNameB .font,
    .p_articles .p_AssistNameC .font {
        font-size: 14px;
        line-height: 19px;
    }

    .c_portalResOnlineService_categorylay-01001 .p_footerBox {
        width: auto;
        height: auto;
    }

    .c_portalResOnlineService_categorylay-01001 .p_timeBox {
        width: auto;
        height: auto;
        padding: 20px;
        border: 1px solid #E4E4E4;
        border-top: none;
        text-align: center;
    }

    .c_portalResOnlineService_categorylay-01001 .p_time {
        display: inline-block;
        font-size: 14px;
        color: #999999;
        vertical-align: middle;
    }

        .c_portalResOnlineService_categorylay-01001 .p_time .iconfont:before {
            content: "\e67b";
            margin-right: 5px;
        }

    .c_portalResOnlineService_categorylay-01001 .p_AssistNameC {
        font-size: 14px;
        color: #999999;
        display: inline-block;
        vertical-align: middle;
    }

    .c_portalResOnlineService_categorylay-01001 .p_contralBox {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .c_portalResOnlineService_categorylay-01001 .p_Box.open .p_contralBox {
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .c_portalResOnlineService_categorylay-01001 .p_btnBox.open .p_btn .iconfont:before {
        content: "\e6b0";
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    /*//中屏*/
}

@CHARSET "UTF-8";

* {
    padding: 0;
    margin: 0;
}

.pagebox {
    width: 100%;
}

/*page property_start*/
.pagebox,
#-remove--flag {
    width: 100%;
    margin: 0px auto;
}

/*page property_end*/
/*page property_start*/
body,
#-remove--flag {
}

/*page property_end*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

#c_portalResEbizads_banner-15622249060426985 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResEbizads_banner-15622249060426985 > div {
    animation-fill-mode: both;
}

#c_portalResEbizads_banner-15622249060426985 .banner-text {
    max-width: 1700px;
    width: 90%;
}

    #c_portalResEbizads_banner-15622249060426985 .banner-text h1 {
        font-size: 56px;
    }

    #c_portalResEbizads_banner-15622249060426985 .banner-text h2 {
        font-size: 20px;
    }

        #c_portalResEbizads_banner-15622249060426985 .banner-text h2 span {
            font-size: 14px;
        }

#c_portalResEbizads_banner-15622249060426985 .banner-switch {
    background-color: rgba(244, 130, 33, 0.9);
}

#c_portalResEbizads_banner-15622249060426985 .small-title {
    font-size: 24px;
}

#c_portalResEbizads_banner-15622249060426985 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: -90px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#c_portalResNews_list-15625471793975119 .p_articles {
    width: calc((100% - 0px)/3);
}

#c_portalResNews_list-15625471793975119 .p_CommonSummaryBoxA {
    text-align: center;
}

#c_portalResNews_list-15625471793975119 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResNews_list-15625471793975119 > div {
    animation-name: lv-fadeInUp;
    animation-duration: 1s;
    animation-delay: 1.1s;
    animation-fill-mode: both;
}

#c_portalResNews_list-15625471793975119 .newContent {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#c_portalResNews_list-15625471793975119 .newHeader {
    padding: 2rem 0 1rem;
}

#c_portalResNews_list-15625471793975119 .newBox {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0rem;
}

#c_portalResNews_list-15625471793975119 .newsWidth {
    position: relative;
    float: left;
    height: 180px;
    padding: 1rem;
}

#c_portalResNews_list-15625471793975119 .newsMargin {
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: calc((100% - 20px)/1);
    border-radius: 5px;
    background: #fff;
    transition: all .5s ease;
}

#c_portalResNews_list-15625471793975119 .newsinfo {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

#c_portalResNews_list-15625471793975119 .newsdate {
    position: absolute;
    top: -14px;
    border-radius: 5px;
    width: 100px;
    margin: 0 0 40px;
    background-color: #e37c26;
    padding: 40px 10px 20px;
    transition: all .5s ease;
}

#c_portalResNews_list-15625471793975119 .md {
    color: #FFF;
    font-size: 30px;
    line-height: 30px;
    text-align: right;
    width: 100%;
    white-space: nowrap;
}

#c_portalResNews_list-15625471793975119 .year {
    color: #fff;
    font-size: 16px;
    text-align: right;
    transition: all .5s ease;
}

#c_portalResNews_list-15625471793975119 .title {
    height: 30px;
    line-height: 30px;
    font-size: 22px;
    color: #333;
    margin-bottom: 1rem;
}

#c_portalResNews_list-15625471793975119 .newsbody {
    position: absolute;
    top: 30px;
    left: 150px;
    transition: all .5s ease;
}

#c_portalResNews_list-15625471793975119 .ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

#c_portalResNews_list-15625471793975119 .description {
    width: 100%;
    line-height: 24px;
    max-height: 48px;
    font-size: 14px;
    color: #666666;
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2px;
    transition: all .5s ease;
}

#c_portalResNews_list-15625471793975119 .newIcon {
    position: absolute;
    font-size: 2.25rem;
    color: #e37c26;
    opacity: 0;
}

#c_portalResNews_list-15625471793975119 .clear {
    clear: both;
}

@media only screen and (max-width: 768px) {
    #c_portalResNews_list-15625471793975119 .newsWidth {
        width: 100%;
        padding: 20px 0px;
        height: 180px;
    }

    #c_portalResNews_list-15625471793975119 .newsinfo {
        padding: 0 30px;
    }

    #c_portalResNews_list-15625471793975119 .newsbody {
        width: calc(100% - 170px);
    }

    #c_portalResNews_list-15625471793975119 .newIcon {
        opacity: 1;
        right: 0;
        top: 30px;
    }

    #c_portalResNews_list-15625471793975119 .description {
        margin-top: 0;
        line-height: 18px;
    }

    #c_portalResNews_list-15625471793975119 .title {
        margin-bottom: 6px;
    }
}

@media only screen and (min-width: 769px) {
    #c_portalResNews_list-15625471793975119 .newsWidth {
        width: calc(100% / 2);
    }

    #c_portalResNews_list-15625471793975119 .newsinfo {
        padding: 0 40px;
    }

    #c_portalResNews_list-15625471793975119 .newsbody {
        width: calc(100% - 180px);
    }

    #c_portalResNews_list-15625471793975119 .newIcon {
        right: 10px;
        top: 60px;
        transition: all .5s ease;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .newsMargin {
        background: #fff;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .newsdate {
        background-color: #b12830;
        padding: 60px 10px 20px;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .year {
        color: #fff;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .newsbody {
        top: 30px;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .title {
        color: #e37c26;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .description {
        color: #666;
    }

    #c_portalResNews_list-15625471793975119 .newsWidth:hover .newIcon {
        opacity: 1;
        right: 0px;
        top: 60px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #c_portalResNews_list-15625471793975119 .newsWidth {
        width: 50%
    }
}

#c_portalResNews_list-15625471793975119 .p_page .pre .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15625471793975119 .p_page .next .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15625471793975119 .p_more .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15625471793975119 .p_loading .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15625471793975119 .newsWidth:hover .newsdate {
    background: #b12830;
}

#c_portalResNews_list-15625471793975119 .p_hot .iconfont:before {
    shadow-angle: 0;
    shadow-distance: 0;
    shadow-angle-ofInset: 0;
    shadow-distance-ofInset: 0;
}

#c_portalResNews_list-15625471793975119 .p_new .iconfont:before {
    shadow-angle: 0;
    shadow-distance: 0;
    shadow-angle-ofInset: 0;
    shadow-distance-ofInset: 0;
}

#c_portalResNews_list-15625471793975119 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
}

#c_portalResnav_main-15892472307795179 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResnav_main-15892472307795179 > div {
    animation-fill-mode: both;
}

#c_portalResnav_main-15892472307795179 a {
    color: #333;
    transition: all .3s ease;
    text-decoration: none;
}

#c_portalResnav_main-15892472307795179 .top-nav-wrap {
    display: block;
    font-size: 14px;
    color: #333;
}

    #c_portalResnav_main-15892472307795179 .top-nav-wrap .clear {
        clear: both;
    }

    #c_portalResnav_main-15892472307795179 .top-nav-wrap .btlink7 {
        display: none;
    }

    #c_portalResnav_main-15892472307795179 .top-nav-wrap .btlink6 {
        margin-right: 0px;
    }

#c_portalResnav_main-15892472307795179 .top-nav {
    width: auto;
    float: left;
    margin-right: 6%;
    margin-left: 3%;
    line-height: 24px;
}

#c_portalResnav_main-15892472307795179 .top-nav-a1 {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

#c_portalResnav_main-15892472307795179 .top-nav-a2 {
    display: block;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 0px;
    color: #fff;
}

@media (max-width: 768px) {
    #c_portalResnav_main-15892472307795179 .top-nav-wrap {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 100%;
    }

    #c_portalResnav_main-15892472307795179 .top-nav {
        flex: 0 0 100%;
        margin-right: 0;
    }

    #c_portalResnav_main-15892472307795179 .top-nav-a1 {
        font-size: 16px;
        line-height: 50px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background-size: 13px !important;
        background: url(../images/btlink_jia.png) no-repeat right center;
    }

    #c_portalResnav_main-15892472307795179 .footer-sub-hides {
        display: none;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #c_portalResnav_main-15892472307795179 .top-nav-a2 {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        background: url(../images/btlink_ico.png) no-repeat left center;
        background-size: 3px auto;
        line-height: 36px;
        margin-bottom: 0;
        padding-left: 15px;
    }

    #c_portalResnav_main-15892472307795179 .top-nav.cur .top-nav-a1 {
        background: url(../images/btlink_jian.png) no-repeat right center;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #c_portalResnav_main-15892472307795179 .top-nav {
        margin-right: 5%;
    }
}

#c_portalResnav_main-15892472307795179 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#c_portalResProduct_list-15783029152654731 .p_Product {
    width: calc((100% - 0px)/4);
}

#c_portalResProduct_list-15783029152654731 .p_CommonSummaryBoxA {
    text-align: center;
}

#c_portalResProduct_list-15783029152654731 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResProduct_list-15783029152654731 > div {
    animation-name: fadeInRight;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#c_portalResProduct_list-15783029152654731 .p_page .pre .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResProduct_list-15783029152654731 .p_page .next .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResProduct_list-15783029152654731 .p_more .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResProduct_list-15783029152654731 .p_loading .iconfont:before {
    shadow-angle: 0px;
    shadow-distance: 0px;
    shadow-angle-ofInset: 0px;
    shadow-distance-ofInset: 0px;
}

#c_portalResProduct_list-15783029152654731 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#c_portalResnav_main-15622286198346388 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResnav_main-15622286198346388 > div {
    animation-duration: NaNs;
    animation-delay: NaNs;
    animation-fill-mode: both;
}

#c_portalResnav_main-15622286198346388 .clear {
    clear: both;
}

#c_portalResnav_main-15622286198346388 ::placeholder {
    font-size: 36px;
    color: #515151;
}

#c_portalResnav_main-15622286198346388 .hvr-left:nth-child(9) {
    display: none;
}

#c_portalResnav_main-15622286198346388 .f-cb {
    zoom: 1px;
}

    #c_portalResnav_main-15622286198346388 .f-cb:after {
        display: block;
        height: 0px;
        clear: both;
        visibility: hidden;
        overflow: hidden;
        content: ".";
    }

#c_portalResnav_main-15622286198346388 .fl {
    float: left;
    display: inline;
}

#c_portalResnav_main-15622286198346388 .fr {
    float: right;
    display: inline;
}

#c_portalResnav_main-15622286198346388 .head_lan {
    width: auto;
    height: 36px;
    margin-top: 37px;
   /* border-radius: 30px;*/
    margin-bottom: 27px;
    overflow:hidden;
}

    #c_portalResnav_main-15622286198346388 .head_lan .lan {
        width: 100%;
        line-height: 32px;
        color: #212121;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

        #c_portalResnav_main-15622286198346388 .head_lan .lan .iconfont {
            line-height: 36px;
            height: 36px;
            width: 30px;
            text-align: center;
            margin-left: 15px;
            display: inline-block;
        }

            #c_portalResnav_main-15622286198346388 .head_lan .lan .iconfont:before {
                content: '\e614';
                font-size: 18px;
                text-align: center;
            }

        #c_portalResnav_main-15622286198346388 .head_lan .lan a {
            display: block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            -webkit-transition: all .5s ease;
            transition: all .5s ease;
        }

            #c_portalResnav_main-15622286198346388 .head_lan .lan a:hover {
                background: rgba(136, 3, 10, .5);
            }

#c_portalResnav_main-15622286198346388 .n-nav-sub a {
    color: #212121;
}

#c_portalResnav_main-15622286198346388 .head_lan .lan:after {
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    content: ".";
}

#c_portalResnav_main-15622286198346388 .head_lan .lan_tel {
    font-family: arial;
    font-size: 24px;
    overflow: hidden;
    float:left;
}


.lan_y {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

    .lan_y a {
        line-height: 30px;
        padding: 0 10px;
        display: inline-block;
        color: #fff;
        border: 1px solid #e37c26;
       /* transition: all 0.5s ease;*/
        background: #e37c26;
        border-radius: 18px;
        font-weight:bold
    }

        .lan_y a:hover {
            /*transition: all 0.5s ease;*/
            background: #f08519;
            border: 1PX solid #f08519;
            color: #ffffff;
            border-radius: 18px;
        }


    #c_portalResnav_main-15622286198346388 .head_lan .lan_tel .lan_phone {
        width: 21px;
        height: 26px;
        margin-right: 5px;
        margin-top: 3px;
        display: block;
        background: url(../images/phone.png);
        float: left;
    }

#c_portalResnav_main-15622286198346388 .head_lan .lan_tel a {
    color: #f48221;
    font-weight: bold;
}

    #c_portalResnav_main-15622286198346388 .head_lan .lan_tel .iconfont {
        line-height: 30px;
        height: 30px;
        width: 30px;
        text-align: center;
        margin-right: 10px;
        border-radius: 50%;
        border: 1px solid #f08519;
        display: inline-block;
    }

        #c_portalResnav_main-15622286198346388 .head_lan .lan_tel .iconfont:before {
            content: '\e628';
            color: #f08519;
            font-size: 18px;
            text-align: center;
        }

#c_portalResnav_main-15622286198346388 .header1.active .lan_tel .iconfont {
    border: 1px solid #d01415;
}

    #c_portalResnav_main-15622286198346388 .header1.active .lan_tel .iconfont:before {
        color: #d01415;
    }

#c_portalResnav_main-15622286198346388 .header1.active .lan_tel a {
    color: #00418f;
}

#c_portalResnav_main-15622286198346388 .header1:hover .lan_tel .iconfont {
    border: 1px solid #d01415;
}

    #c_portalResnav_main-15622286198346388 .header1:hover .lan_tel .iconfont:before {
        color: #d01415;
    }

#c_portalResnav_main-15622286198346388 .header1:hover .lan_tel a {
   /* color: #f48221;*/
}

#c_portalResnav_main-15622286198346388 .scroll {
    overflow-y: unset !important;
    display: unset important;
}

#c_portalResnav_main-15622286198346388 .header1 {
    z-index: 9;
    height: 100px;
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    top: 0px;
    width: 100%;
    /* padding: 0 60px;*/
    padding: 0 !important;
    box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

    #c_portalResnav_main-15622286198346388 .header1.active {
        background: rgba(255, 255, 255, .75);
    }

    #c_portalResnav_main-15622286198346388 .header1.scroll {
        height: 70px;
    }

    #c_portalResnav_main-15622286198346388 .header1:hover {
        background: rgba(255, 255, 255, 1);
    }

#c_portalResnav_main-15622286198346388 .wel_top {
    z-index: 9;
    height: 40px;
    position: fixed;
    background: #e37c26;
    top: 0px;
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
}

    #c_portalResnav_main-15622286198346388 .wel_top .top_tel {
        color: #fff;
        line-height: 40px;
        font-weight: bold;
        font-size: 16px;
    }

        #c_portalResnav_main-15622286198346388 .wel_top .top_tel .iconfont {
            line-height: 40px;
            height: 40px;
            width: 30px;
            display: inline-block;
        }

            #c_portalResnav_main-15622286198346388 .wel_top .top_tel .iconfont:before {
                content: '\e628';
                color: #fff;
                font-size: 20px;
            }

    #c_portalResnav_main-15622286198346388 .wel_top .top_link {
        color: #fff;
        line-height: 40px;
    }

        #c_portalResnav_main-15622286198346388 .wel_top .top_link a {
            color: #fff;
            display: inline-block;
        }

    #c_portalResnav_main-15622286198346388 .wel_top .clear {
        clear: both;
    }

#c_portalResnav_main-15622286198346388 .header1 h1 {
    width: 300px;
    height: 100px;
    position: relative;
    margin-top: 5px;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    #c_portalResnav_main-15622286198346388 .header1 h1 img {
       /* max-width: 100%;*/
      /* width:300px;*/
        position: absolute;
        left: 0px;
        top: 0px;
        opacity: 0;
        -webkit-transition: all 0.5s 0s cubic-bezier(0.86, 0.5, 1, 1);
        transition: all 0.5s 0s cubic-bezier(0.86, 0.5, 1, 1);
    }

        #c_portalResnav_main-15622286198346388 .header1 h1 img.img1 {
            opacity: 1;
        }

#c_portalResnav_main-15622286198346388 .header1:hover h1 img.img1 {
    opacity: 0;
}

#c_portalResnav_main-15622286198346388 .header1.active h1 img.img1 {
    opacity: 0;
}

#c_portalResnav_main-15622286198346388 .header1:hover h1 img.img2 {
    opacity: 1;
}

#c_portalResnav_main-15622286198346388 .header1.active h1 img.img2 {
    opacity: 1;
}

#c_portalResnav_main-15622286198346388 .header1.scroll h1 {
    height: 70px;
    width: 261px;
}

#c_portalResnav_main-15622286198346388 .header1 nav {
    float: left;
    height: 100px;
    line-height: 100px;
    width: 60%;
    position: absolute;
    left: 50%;
    top: 0px;
    margin-left: -405px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#c_portalResnav_main-15622286198346388 .header1.scroll nav {
    height: 70px;
    line-height: 70px;
}

#c_portalResnav_main-15622286198346388 .header1 nav li {
    float: left;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    margin: 0px;
    padding: 0px 25px;
}

#c_portalResnav_main-15622286198346388 .header1.scroll nav li {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s;
}

#c_portalResnav_main-15622286198346388 .header1 nav li:nth-child(7) {
    margin-right: 0px;
}

#c_portalResnav_main-15622286198346388 .js-m.animate {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

#c_portalResnav_main-15622286198346388 .js-m.js-m-2 {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

    #c_portalResnav_main-15622286198346388 .js-m.js-m-2:hover {
        /*background: #00418f;*/
    }

        #c_portalResnav_main-15622286198346388 .js-m.js-m-2:hover a.home-dec {
            /*color: #fff;*/
            color: #b12830;
        }

    #c_portalResnav_main-15622286198346388 .js-m.js-m-2.animate {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        position: relative;
    }

#c_portalResnav_main-15622286198346388 .hvr-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #e37c26;
    left: 0%;
    right: 0px;
    width: 0%;
    bottom: 0px;
    height: 0px !important;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#c_portalResnav_main-15622286198346388 .hvr-left:hover:before {
    width: 100%;
}

#c_portalResnav_main-15622286198346388 .hvr-left.cur:before {
    width: 100%;
}

#c_portalResnav_main-15622286198346388 .hvr-left {
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
}

#c_portalResnav_main-15622286198346388 .header1 nav li > a {
    /*color: #212121;*/
    font-weight: bold;
    display: block;
    position: relative;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

#c_portalResnav_main-15622286198346388 .header1 .nav-sub {
    width: 180px;
    background: #fff;
    position: absolute;
    top: 90px;
    left: 0px;
    height: auto;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform .3s .2s;
    transition: transform .3s .2s;
}

    #c_portalResnav_main-15622286198346388 .header1 .nav-sub.active {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transition: -webkit-transform .3s;
        transition: transform .3s;
    }

        #c_portalResnav_main-15622286198346388 .header1 .nav-sub.active .n-nav-sub {
            opacity: 1;
            -webkit-transform: translate(0, 0);
            -ms-transform: translate(0, 0);
            transform: translate(0, 0);
            -webkit-transition: all .2s .3s;
            transition: all .2s .3s;
        }

#c_portalResnav_main-15622286198346388 .header1.scroll .nav-sub {
    top: 70px;
}

#c_portalResnav_main-15622286198346388 .header1 .nav-sub .n-nav-sub {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    -ms-transform: translate(0, -20px);
    transform: translate(0, -20px);
    -webkit-transition: all .2s;
    transition: all .2s;
}

#c_portalResnav_main-15622286198346388 .header1 .nav-sub a {
    height: 45px;
    line-height: 45px;
    display: block;
    padding: 0 20px;
    text-align: left;
    color: #333;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
}

    #c_portalResnav_main-15622286198346388 .header1 .nav-sub a:hover {
        background-color: #006ac0;
        color: #fff;
    }

#c_portalResnav_main-15622286198346388 .header1 .nav-sub .nav-arrow {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 16px;
    height: 16px;
    opacity: 0;
    -webkit-transform: rotate(0deg) translate(-20px, 0px);
    -ms-transform: rotate(0deg) translate(-20px, 0px);
    transform: rotate(0deg) translate(-20px, 0px);
}

#c_portalResnav_main-15622286198346388 .header1 .nav-sub a:hover .nav-arrow {
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms;
    transition: transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms;
    opacity: 1;
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    -ms-transform: rotate(0deg) translate(0px, 0px);
    transform: rotate(0deg) translate(0px, 0px);
}

#c_portalResnav_main-15622286198346388 .icon-up:before {
    content: '\e6a7';
}

#c_portalResnav_main-15622286198346388 .header1 .nav-sub .nav-arrow:before {
    font-size: 16px;
    color: #fff;
}

#c_portalResnav_main-15622286198346388 .header1 .header-right {
    /* width: 200px !important;*/
    position: absolute;
    /*  right: 60px;*/
    right: 10px !important;
    top: 0px;
    z-index: 10;
}

    #c_portalResnav_main-15622286198346388 .header1 .header-right .search-btn {
        width: 60px;
        height: 120px;
        line-height: 120px;
        text-align: center;
        cursor: pointer;
        display: inherit;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

#c_portalResnav_main-15622286198346388 .header1.scroll .header-right .search-btn {
    height: 70px;
    line-height: 70px;
}

#c_portalResnav_main-15622286198346388 .icon-search1:before {
    content: '\e661';
}

#c_portalResnav_main-15622286198346388 .header1 .header-right .search-btn:before {
    font-size: 25px;
    color: #fff;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

#c_portalResnav_main-15622286198346388 .header1:hover .header-right .search-btn:before {
    color: #000;
}

#c_portalResnav_main-15622286198346388 .header1.active .header-right .search-btn:before {
    color: #000;
}

#c_portalResnav_main-15622286198346388 .header1:hover .header-right .search-btn:hover:before {
    color: #006ac0;
}

#c_portalResnav_main-15622286198346388 .header1.active .header-right .search-btn:hover:before {
    color: #006ac0;
}

#c_portalResnav_main-15622286198346388 .header2 {
    height: 60px;
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    z-index: 22;
    top: 0px;
    width: 100%;
    display: none;
}


    #c_portalResnav_main-15622286198346388 .header2.mo {
        height: 60px;
    }

        #c_portalResnav_main-15622286198346388 .header2.mo .logo {
            width: 170px;
            height: 38px;
        }

    #c_portalResnav_main-15622286198346388 .header2 .main-wrap {
        height: 60px;
        padding: 0 3%;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    }

    #c_portalResnav_main-15622286198346388 .header2 .logo {
        width: 170px;
        height: 38px;
        margin-top: 10px;
        overflow: hidden;
    }

        #c_portalResnav_main-15622286198346388 .header2 .logo a {
            display: block;
        }

        #c_portalResnav_main-15622286198346388 .header2 .logo img {
            height: 38px;
            vertical-align: top;
        }

    #c_portalResnav_main-15622286198346388 .header2 .nav-btn {
        width: 25px;
        height: 16px;
        position: relative;
        cursor: pointer;
        margin-top: 22px;
    }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn.active {
            -webkit-animation: rotate 0.5s linear 0s;
            animation: rotate 0.5s linear 0s;
        }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn .line {
            display: block;
            width: 100%;
            height: 2px;
            border-radius: 2px;
            background-color: #e37c26;
            position: absolute;
            left: 50%;
            margin-left: -15px;
        }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn .line1 {
            -webkit-transform-origin: 4px 0;
            -ms-transform-origin: 4px 0;
            transform-origin: 4px 0;
        }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn.active .line1 {
            top: 0px;
        }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn.hover .line {
            background: #e37c26;
        }

        #c_portalResnav_main-15622286198346388 .header2 .nav-btn .line2 {
            top: 7px;
        }


.header2 .lan_y {
    float: right;
    padding-top: 13px;
    padding-left: 20px;
}



        #c_portalResnav_main-15622286198346388 .header2 .nav-btn .line3 {
            bottom: 0px;
            -webkit-transform-origin: 1px center;
            -ms-transform-origin: 1px center;
            transform-origin: 1px center;
        }

    #c_portalResnav_main-15622286198346388 .header2 .caid {
        height: 55px;
        line-height: 55px;
        padding-right: 10px;
        position: relative;
    }

    #c_portalResnav_main-15622286198346388 .header2 .sub-menu {
        width: 100%;
        padding: 0 3%;
        display: none;
        position: absolute;
        left: 0px;
        top: 70px;
        z-index: 2;
        overflow-y: auto;
    }

        #c_portalResnav_main-15622286198346388 .header2 .sub-menu ul {
            width: 100%;
            overflow-y: auto;
            height: calc(100vh - 55px - 1.5rem);
        }

#c_portalResnav_main-15622286198346388 .js-m-3 {
    opacity: 0;
    -webkit-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    transform: translate(30px, 0);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

    #c_portalResnav_main-15622286198346388 .js-m-3.animate {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

#c_portalResnav_main-15622286198346388 .header2 .sub-menu li {
    border-bottom: 1px solid #555;
    font-size: 16px;
    padding: 0 20px;
}

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .tit {
    display: inline-block;
    text-decoration: none;
    width: 80%;
    line-height: 60px;
    color: #fff;
    position: relative;
    box-sizing: border-box;
}

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .sub-tit.on {
    background-color: #e9e9e9;
}

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .sec-list {
    line-height: 40px;
    padding: 10px 0%;
    display: none;
}

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .jt {
    position: relative;
    display: inline-block;
    width: 10%;
    height: 60px;
    text-align: center;
    background: none;
    float: right;
}

    #c_portalResnav_main-15622286198346388 .header2 .sub-menu .jt:after {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background: url(../images/rbqbhvzezzkeubjmaaaaamfrel8486.png) no-repeat center;
        background-size: 17px auto;
        position: absolute;
        right: 3%;
        top: 15px;
    }

    #c_portalResnav_main-15622286198346388 .header2 .sub-menu .jt.jtRote:after {
        background: url(../images/rbqbg1zez1eebkkyaaaaadz6rb0116.png) no-repeat center;
        background-size: 20px auto;
    }

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .sec-list p {
    background: url(../images/rbqbhvzedjgefkuaaaaaagbohja006.png) no-repeat left center;
    background-size: 3px auto;
    font-size: 14px;
}

#c_portalResnav_main-15622286198346388 .header2 .sub-menu .sec-list a {
    padding-left: 5%;
    color: #fff;
    display: block;
}

    #c_portalResnav_main-15622286198346388 .header2 .sub-menu .sec-list a:active {
        color: #006ac0;
    }

#c_portalResnav_main-15622286198346388 .search-bg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(55, 55, 55, .95);
    display: none;
}

#c_portalResnav_main-15622286198346388 .search-alert {
    position: fixed;
    z-index: 100;
    background-color: #222;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform .3s .5s;
    transition: transform .3s .5s;
}

    #c_portalResnav_main-15622286198346388 .search-alert .close {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 38px;
        right: 2.6%;
        cursor: pointer;
        text-shadow: none;
        opacity: 1;
        float: none;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        #c_portalResnav_main-15622286198346388 .search-alert .close:before {
            font-size: 30px;
            top: 0px;
            left: 0px;
            color: #fff;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        #c_portalResnav_main-15622286198346388 .search-alert .close:hover:before {
            color: #006ac0;
        }

#c_portalResnav_main-15622286198346388 .icon-close:before {
    content: "\e6d3";
}

#c_portalResnav_main-15622286198346388 .search-alert .cent-form {
    position: absolute;
    width: 94.8%;
    left: 2.6%;
    top: 50%;
    height: 80px;
    margin-top: -63px;
    border-bottom: 1px solid #515151;
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
    -webkit-transition: all .5s;
    transition: all .5s;
}

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form:before {
        color: #fff;
        font-size: 30px;
        position: absolute;
        left: 0px;
        height: 50px;
        top: 50%;
        margin-top: -25px;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form .tex {
        border: none;
        font-size: 36px;
        height: 46px;
        line-height: 46px;
        text-align: center;
        width: 100%;
        color: #fff;
        background: none;
        padding-left: 10%;
        padding-right: 20%;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form .sub-butn {
        border: none;
        height: 46px;
        font-size: 24px;
        line-height: 46px;
        color: #555;
        text-align: center;
        background: none;
        position: absolute;
        right: 0px;
        top: 0px;
        width: 105px;
    }

#c_portalResnav_main-15622286198346388 .search-alert.active {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
}

    #c_portalResnav_main-15622286198346388 .search-alert.active .cent-form {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: all .5s .3s;
        transition: all .5s .3s;
    }

#c_portalResnav_main-15622286198346388 .header2 .mo_tel {
    font-size: 16px;
    color: #006ac0;
    font-weight: bold;
    line-height: 60px;
}

    #c_portalResnav_main-15622286198346388 .header2 .mo_tel .iconfont {
        line-height: 40px;
        height: 40px;
        width: 30px;
        display: inline-block;
    }

        #c_portalResnav_main-15622286198346388 .header2 .mo_tel .iconfont:before {
            content: '\e628';
            color: #006ac0;
            font-size: 20px;
        }

#c_portalResnav_main-15622286198346388 .header2 .mo_lan {
    line-height: 60px;
}

@media only screen and (min-width: 769px) {
    #c_portalResnav_main-15622286198346388 .pc_nav {
        height: 90px;
    }
}

@media only screen and (max-width: 768px) {
    #c_portalResnav_main-15622286198346388 .pc_nav {
        height: 60px;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .close {
        right: 5%;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form {
        height: 60px;
    }

    #c_portalResnav_main-15622286198346388 ::placeholder {
        font-size: 22px;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form .tex {
        font-size: 22px;
        padding-right: 30%;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form .sub-butn {
        font-size: 22px;
    }

    #c_portalResnav_main-15622286198346388 .search-alert .cent-form:before {
        font-size: 24px;
        height: 46px;
        margin-top: -17px;
    }
}

@media only screen and (max-width: 1480px) {
    #c_portalResnav_main-15622286198346388 .header1 nav {
        margin-left: -380px;
    }
}

@media only screen and (max-width: 1200px) {
    #c_portalResnav_main-15622286198346388 .pc_nav {
        height: 60px;
    }

    #c_portalResnav_main-15622286198346388 .wel_top {
        display: none !important;
    }

    #c_portalResnav_main-15622286198346388 .header1 {
        display: none !important;
    }

        #c_portalResnav_main-15622286198346388 .header1.active {
            display: none !important;
        }

    #c_portalResnav_main-15622286198346388 .header2 {
        display: block;
    }
}

@media only screen and (max-width: 1360px) {
    #c_portalResnav_main-15622286198346388 .header1 {
        padding: 0 30px;
    }

        #c_portalResnav_main-15622286198346388 .header1 nav li {
            margin: 0px;
            padding: 0px 9px;
            font-size: 18px;
        }

        #c_portalResnav_main-15622286198346388 .header1 nav {
          /*  margin-left: 0px;
            width: 50% !important;
            left: 57% !important;*/
        }

        #c_portalResnav_main-15622286198346388 .header1 h1 img {
            width: none;
        }
}

#c_portalResnav_main-15622286198346388 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#c_portalResNews_list-15898687055192498 .p_articles {
    width: calc((100% - 0px)/1);
}

#c_portalResNews_list-15898687055192498 .p_CommonSummaryBoxA {
    text-align: center;
}

#c_portalResNews_list-15898687055192498 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#c_portalResNews_list-15898687055192498 > div {
    animation-fill-mode: both;
}

#c_portalResNews_list-15898687055192498 {
    width: 100%;
    max-width: none;
    min-width: 320px;
    height: 70px;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

    #c_portalResNews_list-15898687055192498 .p_categorySummaryBox {
        display: none;
    }

    #c_portalResNews_list-15898687055192498 .e_box.p_images.cut.higher.picture {
        display: none;
    }

    #c_portalResNews_list-15898687055192498 .p_news {
        width: 100;
        background: none;
    }

    #c_portalResNews_list-15898687055192498 .lantern {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    #c_portalResNews_list-15898687055192498 .p_SummaryBox {
        display: none;
    }

    #c_portalResNews_list-15898687055192498 .p_ToDetail {
        display: none;
    }

    #c_portalResNews_list-15898687055192498 span.i_timer {
        display: none;
    }

    #c_portalResNews_list-15898687055192498 .p_assist {
        margin-top: 10px;
        width: 30%;
        display: inline-block;
        text-align: right;
        float: right;
    }

    #c_portalResNews_list-15898687055192498 .p_TitleBox a {
        font-size: 14px;
        color: rgba(51, 51, 51, 1);
    }

    #c_portalResNews_list-15898687055192498 .p_TitleBox {
        width: 100%;
        display: inline-block;
    }

        #c_portalResNews_list-15898687055192498 .p_TitleBox:hover a {
            color: rgba(208, 35, 28, 1);
        }

    #c_portalResNews_list-15898687055192498 .p_time {
        color: rgba(153, 153, 153, 1);
    }

    #c_portalResNews_list-15898687055192498 .p_page .pre .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

    #c_portalResNews_list-15898687055192498 .p_page .next .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

    #c_portalResNews_list-15898687055192498 .p_more .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

    #c_portalResNews_list-15898687055192498 .p_loading .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

    #c_portalResNews_list-15898687055192498 .borderB_default {
        border-bottom: 0px solid #d9d9d9;
    }

    #c_portalResNews_list-15898687055192498 .p_hot .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

    #c_portalResNews_list-15898687055192498 .p_new .iconfont:before {
        shadow-angle: 0px;
        shadow-distance: 0px;
        shadow-angle-ofInset: 0px;
        shadow-distance-ofInset: 0px;
    }

#c_portalResOnlineService_categorylay-15899438597724191 {
    position: fixed;
    top: 20%;
    left: auto;
    bottom: auto;
    right: 0px;
    transform: none;
    width: 40px;
    height: 152px;
    z-index: 99999999;
    content: normal;
    max-width: 1180px;
    min-width: 0px;
    max-height: none;
    min-height: 1920px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    -webkit-transform: none;
}

#w_grid-1562224470576 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

/*w_grid-1562224470576*/
@media only screen and (max-width: 768px) {
    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .c_portalResEbizads_banner-01001 {
        margin-top: 0px;
    }

    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .w_grid-000:nth-child(2) {
        margin-top: -60px;
    }
}

/*w_grid-1562224470576*/
@media only screen and (min-width: 769px) {
    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .c_portalResEbizads_banner-01001 {
        margin-top: -90px;
    }

    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .w_grid-000:nth-child(2) {
        margin-top: -90px;
    }
}

/*w_grid-1562224470576*/
@media only screen and (max-width: 1200px) and (min-width: 769px) {
    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .c_portalResEbizads_banner-01001 {
        margin-top: 60px;
    }

    #w_grid-1562224470576 > div > .p_gridbox > .p_gridCell > .w_grid-000:nth-child(2) {
        margin-top: -60px;
    }
}

#w_grid-1589868590828 > div > .p_gridbox {
    background-color: rgba(248, 248, 248, 1);
}

#w_grid-1589868590828 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589868590828 > div {
    animation-fill-mode: both;
}

    #w_grid-1589868590828 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589868590828*/
@media only screen and (min-width: 769px) {
    #w_grid-1589868590828 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589868590828 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589868590828 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_grid-1589868596662 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589868596662 > div {
    animation-fill-mode: both;
}

    #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589868596662*/
@media only screen and (min-width: 769px) {
    #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell:nth-child(3n+0) {
            width: 12.15%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell:nth-child(3n+1) {
            margin-left: 0px;
            clear: left;
            margin-right: 0px;
            width: 9.31%;
        }

        #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell:nth-child(3n+2) {
            width: 78.53%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589868596662 > div > .p_gridbox > .p_gridCell:nth-child(3n) {
            margin-right: 0px;
        }
}

#w_grid-1589868853576 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1562224601777 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
    width: 100%;
}

/*w_grid-1562224601777*/
@media only screen and (max-width: 768px) {
    #w_grid-1562224601777 > div > .p_gridbox > .p_gridCell > .w_grid-000:nth-child(2) {
        margin-top: 0px;
    }
}

#w_grid-1562236405483 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1562236405483 > div {
    animation-fill-mode: both;
}

    #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1562236405483 > div > .p_gridbox:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        background: #e37c26;
        height: 80%;
        z-index: -1;
    }

#w_grid-1562236405483.scrolled > div > .p_gridbox:after {
    animation: lv_widthin 1.5s forwards 0.3s;
}

/*w_grid-1562236405483*/
@media only screen and (max-width: 768px) {
    #w_grid-1562236405483 > div > .p_gridbox:after {
        width: 60%;
        height: 30%;
    }

    #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 2rem;
        margin-top: 2rem;
        margin-left: 0%;
    }
}

/*w_grid-1562236405483*/
@media only screen and (min-width: 769px) {
    #w_grid-1562236405483 > div > .p_gridbox:after {
        max-width: 45%;
    }

    #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 3rem;
        margin-top: 3rem;
        margin-left: 0%;
    }

        #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0%;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

/*w_grid-1562236405483*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1562236405483 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 3rem;
        margin-top: 3rem;
        margin-left: 0%;
    }

    #w_grid-1562236405483 > div > .p_gridbox:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 45%;
        background: #0644be;
        height: 50%;
        z-index: -1;
    }
}

#w_grid-1562236539293 > div > .p_gridbox {
    align-items: center;
    display: flex;
}

#w_grid-1562236539293 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1562236539293 > div {
    animation-fill-mode: both;
}

    #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1562236539293*/
@media only screen and (max-width: 768px) {
    #w_grid-1562236539293 > div > .p_gridbox {
        display: block;
    }
}

/*w_grid-1562236539293*/
@media only screen and (min-width: 769px) {
    #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 4%;
    }

        #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
            width: 48%;
            margin-left: 4%;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
            margin-left: 0px;
            clear: left;
            margin-right: 0px;
            width: 48%;
        }

        #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(2n) {
            margin-right: 0px;
        }
}

/*w_grid-1562236539293*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1562236539293 > div > .p_gridbox {
        display: block;
    }

        #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell {
            margin-bottom: 0rem;
            margin-top: 0rem;
            margin-left: 0;
        }

            #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                clear: none;
            }

            #w_grid-1562236539293 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
                margin-right: 0;
            }
}

#w_fimg-1562237533900 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimg-1562237533900 > div {
    animation-name: lv-fadeInLeft;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

#w_fimg-1562237533900 .p_dimage:before {
    position: absolute;
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    box-sizing: border-box;
    background: rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 20px;
    left: 20px;
    z-index: 1;
}

#w_fimg-1562237533900 .p_dimage:after {
    position: absolute;
    content: '';
    display: none;
    width: 60px;
    height: 60px;
    background: url(../images/zd_about_more02.png) no-repeat center center;
    color: #fff;
    left: calc((100% - 60px)/2);
    top: calc((100% - 60px)/2);
    z-index: 1;
}

#w_fimg-1562237533900 .p_dimage > img {
    height: 500px;
    object-fit: cover;
    transition: all .8s ease;
    -moz-transition: all .8s ease;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
}

#w_fimg-1562237533900:hover .p_dimage > img {
    overflow: hidden;
    transform: scale3D(1.1, 1.1, 1.1);
    cursor: pointer;
}

/*w_fimg-1562237533900*/
@media only screen and (max-width: 768px) {
    #w_fimg-1562237533900 .p_dimage > img {
        height: 260px;
    }
}

#w_grid-1562236704536 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1562236704536 > div > .p_gridbox > .p_gridCell > .reset_style:nth-child(1) {
    font-family: 'Oswald', sans-serif;
}

/*w_grid-1562236704536*/
@media only screen and (max-width: 768px) {
    #w_grid-1562236704536 > div > .p_gridbox > .p_gridCell > .reset_style:nth-child(1) span {
        font-size: 30px !important;
    }

    #w_grid-1562236704536 > div > .p_gridbox > .p_gridCell > .reset_style:nth-child(2) span {
        font-size: 22px !important;
    }
}

/*w_grid-1562236704536*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1562236704536 > div > .p_gridbox > .p_gridCell > .reset_style:nth-child(1) span {
        font-size: 50px !important;
    }

    #w_grid-1562236704536 > div > .p_gridbox > .p_gridCell > .reset_style:nth-child(2) span {
        font-size: 26px !important;
    }
}

#w_common_text-1562236919034 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1562236919034 > div {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

#w_common_text-1562236919034 .p_link001 {
    height: calc(100%);
}

#w_common_text-1562236927767 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1562236927767 > div {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 1.1s;
    animation-fill-mode: both;
}

#w_common_text-1562236927767 .p_link001 {
    height: calc(100%);
}

#w_fline-1562237954640 .p_FLine {
    border-top-color: #e37c26;
    border-top-width: 2px;
}

#w_fline-1562237954640 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1562237954640 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1562237954640 > div {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 1.2s;
    animation-fill-mode: both;
}

#w_common_text-1562237125457 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1562237125457 > div {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 1.3s;
    animation-fill-mode: both;
}

#w_common_text-1562237125457 .p_link001 {
    height: calc(100%);
}

#w_grid-1562554743512 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1562554743512 > div {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 1.4s;
    animation-fill-mode: both;
}

    #w_grid-1562554743512 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1562554743512*/
@media only screen and (min-width: 769px) {
    #w_grid-1562554743512 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1562554743512 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1562554743512 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_grid-1589188744640 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_fbtn-1589188730997 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #e37c26;
    border: 1px solid #e37c26;
    transition: all 0.5s ease;
}

    #w_fbtn-1589188730997 .p_CommonBtn .font {
        color: #e37c26;
    }

    #w_fbtn-1589188730997 .p_CommonBtn:hover {
        background-color: #e37c26;
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589188730997 .p_CommonBtn:hover .font {
            color: rgba(255, 255, 255, 1);
        }

    #w_fbtn-1589188730997 .p_CommonBtn:active {
        background-color: #e37c26;
    }

#w_fbtn-1589188730997 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589188730997 > div {
    animation-fill-mode: both;
}

#w_grid-1573638560547 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1574045933218 > div > .p_gridbox {
    background-image: url(../images/bj1.jpg);
}

#w_grid-1574045933218 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1574045933218 > div {
    animation-fill-mode: both;
}

    #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1574045933218*/
@media only screen and (min-width: 769px) {
    #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1574045933218*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1574045933218 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_grid-1574045933218 .p_gridbox {
    background-position: center center;
    background-attachment: fixed;
}

#w_common_text-1573641550888 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573641550888 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

#w_fline-1589188233241 .p_FLine {
    border-top-width: 2px;
}

#w_fline-1589188233241 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589188233241 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589188233241 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_common_text-1573641617058 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573641617058 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_grid-1573638543210 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1573639956632 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1573639956632 > div {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

    #w_grid-1573639956632 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1573639956632*/
@media only screen and (min-width: 769px) {
    #w_grid-1573639956632 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1573639956632 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1573639956632 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_fbtn-1573641790625 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #e37c26;
    border: 1px solid #e37c26;
    transition: all 0.5s ease;
}

    #w_fbtn-1573641790625 .p_CommonBtn .font {
        color: #e37c26;
    }

    #w_fbtn-1573641790625 .p_CommonBtn:hover {
        background-color: #e37c26;
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1573641790625 .p_CommonBtn:hover .font {
            color: rgba(255, 255, 255, 1);
        }

    #w_fbtn-1573641790625 .p_CommonBtn:active {
        background-color: #e37c26;
    }

#w_fbtn-1573641790625 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1573641790625 > div {
    animation-fill-mode: both;
}

#w_grid-1573642743138 > div > .p_gridbox {
    /*background: url(../images/bj34.jpg) no-repeat center top fixed #05234d;*/
}

#w_grid-1573642743138 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1573642743138 > div {
    animation-fill-mode: both;
}

    #w_grid-1573642743138 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1573642743138*/
@media only screen and (min-width: 769px) {
    #w_grid-1573642743138 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0;
    }

        #w_grid-1573642743138 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1573642743138 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

#w_grid-1573642858052 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_common_text-1573642874797 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573642874797 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

#w_fline-1589196160561 .p_FLine {
    border-top-width: 2px;
}

#w_fline-1589196160561 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589196160561 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589196160561 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_common_text-1573642882103 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573642882103 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_grid-1573642961937 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1573642961937 > div {
    animation-fill-mode: both;
}

    #w_grid-1573642961937 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1573642961937*/
@media only screen and (min-width: 769px) {
    #w_grid-1573642961937 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0%;
    }

        #w_grid-1573642961937 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1573642961937 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

#w_grid-1589192455994 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589192455994 > div {
    animation-fill-mode: both;
}

    #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589192455994*/
@media only screen and (min-width: 769px) {
    #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 2%;
    }

        #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(4n+0) {
            width: 23.5%;
            margin-left: 2%;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(4n+1) {
            margin-left: 0;
            clear: left;
            margin-right: 0;
            width: 23.5%;
        }

        #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(4n+2) {
            width: 23.5%;
            margin-left: 2%;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(4n+3) {
            width: 23.5%;
            margin-left: 2%;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589192455994 > div > .p_gridbox > .p_gridCell:nth-child(4n) {
            margin-right: 0;
        }
}

#w_fimgbox-1589192456001 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimgbox-1589192456001 > div {
    animation-name: fadeInUp;
    animation-duration: 1.4s;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

#w_grid-1589192456017 > div > .p_gridbox {
    background-color: rgba(247, 179, 26, 0.0);
    height: 100%;
    transition: 0.5s;
}

    #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell > .w_grid-000 {
        opacity: 0;
        transition: 0.5s;
    }

#w_grid-1589192456017 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589192456017 > div {
    animation-fill-mode: both;
    height: 100%;
}

    #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1589192456017 > div > .p_gridbox:hover {
        background-color: rgba(247, 179, 26, 0.8);
    }

        #w_grid-1589192456017 > div > .p_gridbox:hover .w_grid-000 {
            opacity: 1;
        }

        #w_grid-1589192456017 > div > .p_gridbox:hover .p_FLine {
            border-top-color: #ffffff;
        }

/*w_grid-1589192456017*/
@media only screen and (min-width: 769px) {
    #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1589192456017*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456017 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_fline-1589192456027 .p_FLine {
    border-top-color: rgba(255, 255, 255, 1);
    transition: 0.5s;
}

#w_fline-1589192456027 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589192456027 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589192456027 > div {
    animation-fill-mode: both;
}

#w_grid-1589192456030 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1589192456030 .reset_style {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*w_grid-1589192456030*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456030 .reset_style {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

#w_fbtn-1589245294724 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}

    #w_fbtn-1589245294724 .p_CommonBtn .font {
        color: rgba(255, 255, 255, 1);
    }

    #w_fbtn-1589245294724 .p_CommonBtn:hover {
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589245294724 .p_CommonBtn:hover .font {
            color: #e37c26;
        }

    #w_fbtn-1589245294724 .p_CommonBtn:active {
        background-color: rgba(255, 255, 255, 1);
    }

#w_fbtn-1589245294724 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589245294724 > div {
    animation-fill-mode: both;
}

#w_fimgbox-1589192456006 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimgbox-1589192456006 > div {
    animation-name: fadeInUp;
    animation-duration: 1.4s;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

#w_grid-1589192456040 > div > .p_gridbox {
    background-color: rgba(247, 179, 26, 0.0);
    height: 100%;
    transition: 0.5s;
}

    #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell > .w_grid-000 {
        opacity: 0;
        transition: 0.5s;
    }

#w_grid-1589192456040 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589192456040 > div {
    animation-fill-mode: both;
    height: 100%;
}

    #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1589192456040 > div > .p_gridbox:hover {
        background-color: rgba(247, 179, 26, 0.8);
    }

        #w_grid-1589192456040 > div > .p_gridbox:hover .w_grid-000 {
            opacity: 1;
        }

        #w_grid-1589192456040 > div > .p_gridbox:hover .p_FLine {
            border-top-color: #ffffff;
        }

/*w_grid-1589192456040*/
@media only screen and (min-width: 769px) {
    #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1589192456040*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456040 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_fline-1589192456050 .p_FLine {
    border-top-color: rgba(255, 255, 255, 1);
    transition: 0.5s;
}

#w_fline-1589192456050 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589192456050 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589192456050 > div {
    animation-fill-mode: both;
}

#w_grid-1589192456053 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1589192456053 .reset_style {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*w_grid-1589192456053*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456053 .reset_style {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

#w_fbtn-1589245576945 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}

    #w_fbtn-1589245576945 .p_CommonBtn .font {
        color: rgba(255, 255, 255, 1);
    }

    #w_fbtn-1589245576945 .p_CommonBtn:hover {
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589245576945 .p_CommonBtn:hover .font {
            color: #e37c26;
        }

    #w_fbtn-1589245576945 .p_CommonBtn:active {
        background-color: rgba(255, 255, 255, 1);
    }

#w_fbtn-1589245576945 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589245576945 > div {
    animation-fill-mode: both;
}

#w_fimgbox-1589192456011 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimgbox-1589192456011 > div {
    animation-name: fadeInUp;
    animation-duration: 1.4s;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

#w_grid-1589192456063 > div > .p_gridbox {
    background-color: rgba(247, 179, 26, 0.0);
    height: 100%;
    transition: 0.5s;
}

    #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell > .w_grid-000 {
        opacity: 0;
        transition: 0.5s;
    }

#w_grid-1589192456063 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589192456063 > div {
    animation-fill-mode: both;
    height: 100%;
}

    #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1589192456063 > div > .p_gridbox:hover {
        background-color: rgba(247, 179, 26, 0.8);
    }

        #w_grid-1589192456063 > div > .p_gridbox:hover .w_grid-000 {
            opacity: 1;
        }

        #w_grid-1589192456063 > div > .p_gridbox:hover .p_FLine {
            border-top-color: #ffffff;
        }

/*w_grid-1589192456063*/
@media only screen and (min-width: 769px) {
    #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1589192456063*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589192456063 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_fline-1589192456073 .p_FLine {
    border-top-color: rgba(255, 255, 255, 1);
    transition: 0.5s;
}

#w_fline-1589192456073 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589192456073 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589192456073 > div {
    animation-fill-mode: both;
}

#w_grid-1589192456078 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1589192456078 .reset_style {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*w_grid-1589192456078*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589192456078 .reset_style {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

#w_fbtn-1589245581508 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}

    #w_fbtn-1589245581508 .p_CommonBtn .font {
        color: rgba(255, 255, 255, 1);
    }

    #w_fbtn-1589245581508 .p_CommonBtn:hover {
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589245581508 .p_CommonBtn:hover .font {
            color: #e37c26;
        }

    #w_fbtn-1589245581508 .p_CommonBtn:active {
        background-color: rgba(255, 255, 255, 1);
    }

#w_fbtn-1589245581508 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589245581508 > div {
    animation-fill-mode: both;
}

#w_fimgbox-1589195004046 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimgbox-1589195004046 > div {
    animation-name: fadeInUp;
    animation-duration: 1.4s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

#w_grid-1589195004052 > div > .p_gridbox {
    background-color: rgba(247, 179, 26, 0.0);
    height: 100%;
    transition: 0.5s;
}

    #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell > .w_grid-000 {
        opacity: 0;
        transition: 0.5s;
    }

#w_grid-1589195004052 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589195004052 > div {
    animation-fill-mode: both;
    height: 100%;
}

    #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1589195004052 > div > .p_gridbox:hover {
        background-color: rgba(247, 179, 26, 0.8);
    }

        #w_grid-1589195004052 > div > .p_gridbox:hover .w_grid-000 {
            opacity: 1;
        }

        #w_grid-1589195004052 > div > .p_gridbox:hover .p_FLine {
            border-top-color: #ffffff;
        }

/*w_grid-1589195004052*/
@media only screen and (min-width: 769px) {
    #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1589195004052*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0px;
    }

        #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589195004052 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_fline-1589195004062 .p_FLine {
    border-top-color: rgba(255, 255, 255, 1);
    transition: 0.5s;
}

#w_fline-1589195004062 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589195004062 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589195004062 > div {
    animation-fill-mode: both;
}

#w_grid-1589195004066 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_grid-1589195004066 .reset_style {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/*w_grid-1589195004066*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589195004066 .reset_style {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

#w_fbtn-1589245586874 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}

    #w_fbtn-1589245586874 .p_CommonBtn .font {
        color: rgba(255, 255, 255, 1);
    }

    #w_fbtn-1589245586874 .p_CommonBtn:hover {
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589245586874 .p_CommonBtn:hover .font {
            color: #e37c26;
        }

    #w_fbtn-1589245586874 .p_CommonBtn:active {
        background-color: rgba(255, 255, 255, 1);
    }

#w_fbtn-1589245586874 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589245586874 > div {
    animation-fill-mode: both;
}

#w_grid-1562236412793 > div > .p_gridbox {
    background-image: url(../images/zd_news_bg.jpg);
}

#w_grid-1562236412793 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1562236412793 > div {
    animation-fill-mode: both;
}

    #w_grid-1562236412793 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1562236412793*/
@media only screen and (max-width: 768px) {
    #w_grid-1562236412793 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 2rem;
        margin-top: 2rem;
        margin-left: 0px;
    }
}

/*w_grid-1562236412793*/
@media only screen and (min-width: 769px) {
    #w_grid-1562236412793 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 3rem;
        margin-top: 3rem;
        margin-left: 0px;
    }

        #w_grid-1562236412793 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1562236412793 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_grid-1589867759545 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
    clear: left;
}

#w_common_text-1573698300745 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573698300745 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

#w_fline-1589243143776 .p_FLine {
    border-top-color: rgba(0, 78, 162, 1);
    border-top-width: 2px;
}

#w_fline-1589243143776 .w_fline .p_FLine {
    border-top-style: solid;
}

#w_fline-1589243143776 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fline-1589243143776 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_common_text-1573698313269 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_common_text-1573698313269 > div {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

#w_grid-1562323520722 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1562323520722 > div {
    animation-fill-mode: both;
}

    #w_grid-1562323520722 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1562323520722*/
@media only screen and (min-width: 769px) {
    #w_grid-1562323520722 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0%;
    }

        #w_grid-1562323520722 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1562323520722 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

#w_fbtn-1589244956117 .p_CommonBtn {
    background-color: rgba(0, 0, 0, 0);
    border-color: #e37c26;
    border: 1px solid #e37c26;
    transition: all 0.5s ease;
}

    #w_fbtn-1589244956117 .p_CommonBtn .font {
        color: #e37c26;
    }

    #w_fbtn-1589244956117 .p_CommonBtn:hover {
        background-color: #e37c26;
        border: 1px solid #e37c26;
        border-radius: 30px;
        transition: all 0.5s ease;
    }

        #w_fbtn-1589244956117 .p_CommonBtn:hover .font {
            color: rgba(255, 255, 255, 1);
        }

    #w_fbtn-1589244956117 .p_CommonBtn:active {
        background-color: #e37c26;
    }

#w_fbtn-1589244956117 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fbtn-1589244956117 > div {
    animation-fill-mode: both;
}

#w_grid-1589247425898 > div > .p_gridbox {
    /* background: url(../images/wf_btbg02.jpg) no-repeat center center;*/
    background: #404243;
}

#w_grid-1589247425898 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589247425898 > div {
    animation-fill-mode: both;
}

    #w_grid-1589247425898 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589247425898*/
@media only screen and (max-width: 768px) {
    #w_grid-1589247425898 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 2rem;
        margin-left: 0px;
    }
}

/*w_grid-1589247425898*/
@media only screen and (min-width: 769px) {
    #w_grid-1589247425898 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 1rem;
        margin-left: 0px;
    }

        #w_grid-1589247425898 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589247425898 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

#w_grid-1589247425913 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589247425913 > div {
    animation-fill-mode: both;
}

    #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589247425913*/
@media only screen and (max-width: 768px) {
    #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 2rem;
        margin-top: 1rem;
        margin-left: 0%;
    }

    #w_grid-1589247425913 #content_box-1557903955456-1589247425913 {
        margin-top: 20px;
    }
}

/*w_grid-1589247425913*/
@media only screen and (min-width: 769px) {
    #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1%;
    }

        #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(3n+0) {
            width: 9.9078%;
            margin-left: 1%;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(3n+1) {
            margin-left: 0px;
            clear: left;
            margin-right: 0px;
            width: 54%;
        }

        #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(3n+2) {
            width: 45%;
            clear: none;
        }

        #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(3n) {
            margin-right: 0px;
        }
}

/*w_grid-1589247425913*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 2rem;
        margin-top: 0rem;
        margin-left: 0%;
    }

    #w_grid-1589247425913 #content_box-1557903955456-1589247425913 {
        margin-top: 20px;
    }

    #w_grid-1589247425913 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
        width: 100%;
        margin-left: 0%;
        margin-right: 0px;
        clear: none;
    }
}

#w_grid-1589248664343 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
    margin-left: 0;
}

#w_common_text-1589247425933 .p_link001 {
    height: calc(100%);
}

#w_common_text-1589247425938 .p_link001 {
    height: calc(100%);
}

#w_fimg-1562549954086 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_fimg-1562549954086 > div {
    animation-fill-mode: both;
}

#w_grid-1589247425922 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589247425922 > div {
    animation-fill-mode: both;
}

    #w_grid-1589247425922 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
        margin-left: 0px;
        clear: left;
    }

/*w_grid-1589247425922*/
@media only screen and (min-width: 769px) {
    #w_grid-1589247425922 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 0rem;
        margin-top: 0rem;
        margin-left: 0;
    }

        #w_grid-1589247425922 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589247425922 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

#w_grid-1589247425922 .p_gridbox {
    border-top-color: rgba(255, 255, 255, .1);
    border-top-style: solid;
    border-top-width: 1px;
}

#w_grid-1589247425941 .p_MatteIcon .iconfont:before {
    content: '\e602';
}

#w_grid-1589247425941 > div {
    animation-fill-mode: both;
}

    #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
        margin-left: 0px;
        clear: left;
    }

    #w_grid-1589247425941 > div > .p_gridbox {
        background: none !important;
        border: none !important;
    }

/*w_grid-1589247425941*/
@media only screen and (max-width: 768px) {
    #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 0;
    }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

/*w_grid-1589247425941*/
@media only screen and (min-width: 769px) {
    #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 0px;
    }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0px;
            margin-right: 0px;
            clear: none;
        }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0px;
        }
}

/*w_grid-1589247425941*/
@media only screen and (max-width: 1024px) and (min-width: 769px) {
    #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 0px;
    }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n+0) {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            clear: none;
        }

        #w_grid-1589247425941 > div > .p_gridbox > .p_gridCell:nth-child(1n) {
            margin-right: 0;
        }
}

#w_common_text-1589247425950 .p_link001 {
    height: calc(100%);
}

#w_grid-1562224470576 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589868590828 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589868596662 {
    width: 100%;
    max-width: 90%;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589868853576 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589868858641 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 14%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589869351198 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 13%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562224601777 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 492px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562236405483 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562236539293 {
    width: 94%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimg-1562237533900 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 200px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562236704536 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1562236919034 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1562236927767 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fline-1562237954640 {
    width: 100%;
    max-width: 50px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 36px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1562237125457 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562554743512 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589188744640 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fbtn-1589188730997 {
    width: 100%;
    max-width: 220px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 52px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573638560547 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1574045933218 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573641550888 {
    width: 94%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fline-1589188233241 {
    width: 100%;
    max-width: 50px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573641617058 {
    width: 94%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573638543210 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573639956632 {
    width: 90%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fbtn-1573641790625 {
    width: 100%;
    max-width: 220px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 52px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573642743138 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573642858052 {
    width: 94%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573642874797 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fline-1589196160561 {
    width: 100%;
    max-width: 50px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573642882103 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1573642961937 {
    width: 90%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192455994 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimgbox-1589192456001 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456017 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: 100%;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456023 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fline-1589192456027 {
    width: 100%;
    max-width: 30px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 10px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456030 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456036 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fbtn-1589245294724 {
    width: 100%;
    max-width: 150px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 43px;
    margin-top: 30px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimgbox-1589192456006 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456040 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: 100%;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456046 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fline-1589192456050 {
    width: 100%;
    max-width: 30px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 10px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456053 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456059 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fbtn-1589245576945 {
    width: 100%;
    max-width: 150px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 43px;
    margin-top: 30px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimgbox-1589192456011 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456063 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: 100%;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456069 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fline-1589192456073 {
    width: 100%;
    max-width: 30px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 10px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589192456078 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589192456084 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fbtn-1589245581508 {
    width: 100%;
    max-width: 150px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 43px;
    margin-top: 30px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimgbox-1589195004046 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589195004052 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: 100%;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589195004058 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fline-1589195004062 {
    width: 100%;
    max-width: 30px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 10px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589195004066 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589195004072 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 0px;
}

#w_fbtn-1589245586874 {
    width: 100%;
    max-width: 150px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 43px;
    margin-top: 30px;
    margin-left: 36px;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562236412793 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589867759545 {
    width: 100%;
    max-width: 90%;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573698300745 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fline-1589243143776 {
    width: 100%;
    max-width: 50px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 20px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1573698313269 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1562323520722 {
    width: 94%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 192px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fbtn-1589244956117 {
    width: 100%;
    max-width: 220px;
    min-width: 0px;
    height: auto;
    max-height: 0px;
    min-height: 52px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589247425898 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589247425913 {
    width: 94%;
    max-width: 1600px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 182px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589248664343 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 182px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589247425933 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589247425938 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 20px;
    margin-left: 0px;
    /*margin-right: 40px;
    margin-bottom: 0px;*/
    margin-right: 10px;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_fimg-1562549954086 {
    width: 100%;
    max-width: 140px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589247788771 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 5px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589247425922 {
    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_grid-1589247425941 {
    width: 94%;
    max-width: 1600px;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#w_common_text-1589247425950 {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

#c_portalResNews_list-15898687055192498 .p_TitleBox {
    width: 70%;
}


.product_w {
    background: #f4f4f4;
    padding-top: 25px;
}

.pro_w_b {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.pro_list_a {
    overflow: hidden;
}

.pro_list_a1 {
    width: calc(100% / 4);
    float: left;
    padding: 10px 6px 0;
    overflow: hidden;
}

.pro_list_a1_ul {
    overflow: hidden;
}

    .pro_list_a1_ul .a1 {
        width: 100%;
        padding: 6px 0;
    }

.pro_list_li {
    position: relative;
    overflow: hidden;
}

    .pro_list_li a {
        position: relative;
        display: block;
        overflow: hidden;
    }

.pro_list_liimg {
    width: 100%;
  
    text-align: center;
    /*    边框*/
    border: 1px solid #f4f4f4;
}

    .pro_list_liimg img {
        width: auto;
        height: 165px;
    }

.pro_list_lispan {
    position: absolute;
    background: rgba(236, 133, 46,.7);
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    height: 44px;
}

    .pro_list_lispan span {
        display: block;
        line-height: 44px;
        padding: 0 10px;
        height: 44px;
        overflow: hidden;
        color: #fff;
    }

    .pro_list_lispan p {
        line-height: 24px;
        font-size: 12px;
        padding: 0 10px 0 10px;
        max-height: 72px;
        overflow: hidden;
    }

.pro_list_li:hover .pro_list_lispan {
    height: 165px;
    padding: 25px 0 10px 0;
    transition: all 0.5s ease;
}

.pro_list_li:hover .pro_list_liimg {
/* border-top:0px;*/
}



    .pro_list_li:hover .pro_list_lispan span {
        color: #fff;
        font-size: 18px;
    }

.pro_list_li a .pro_list_liimg img {
    transition-duration: 1s;
}

.pro_list_li:hover a .pro_list_liimg img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.pro_list_b {
    overflow: hidden;
}

.pro_list_b1 {
    width: 100%;
}

.pro_list_b1_ul {
    overflow: hidden;
}

    .pro_list_b1_ul .b1 {
        width: calc(100% / 2);
        padding: 6px 6px 10px;
        float: left;
    }

.pro_til {
    padding-top: 50px;
    max-height: 540px;
}

.pro_list_tilh1 {
    padding-bottom: 20px;
}

    .pro_list_tilh1 .h1_a {
        font-size: 38px;
        display: block;
        line-height: 42px;
        font-weight: bold;
    }

    .pro_list_tilh1 .h1_y {
        text-transform: uppercase;
        font-size: 18px;
        color: #e37c26;
        line-height: 36px;
    }

    .pro_list_tilh1 .h1_i {
        width: 60px;
        height: 2px;
        background: #e37c26;
        display: block;
    }

.pro_list_tilp1 {
    line-height: 30px;
    font-size: 14px;
    padding: 10px 10px 50px 0;
}

.pro_til .w_fbtn-001 {
    text-align: left;
    margin: 0 !important;
}

.pro_in {
    width: calc(100% / 2);
    float: left;
    padding: 13px;
}

.product_info {
    background: #ffffff;
    padding: 20px;
    overflow: hidden;
}

.pro_info_img {
    width: 100%;
    float: left;
    padding: 0 15px;
}

    .pro_info_img img {
        width: 100%;
    }

.pro_info_nr {
    width: 100%;
    float: left;
    padding: 10px 15px 0;
}

    .pro_info_nr .pro_ih3 {
        line-height: 40px;
        padding: 5px 0 10px;
    }

    .pro_info_nr .pro_ifont {
        line-height: 30px;
    }

.pro_describe {
    background: #ffffff;
    padding: 20px 30px;
    margin: 15px 0;
}

.pro_dh3 {
    line-height: 40px;
    padding: 5px 0 10px;
}

    .pro_dh3 span {
        border-left: 5px solid #e37c26;
        padding-left: 8px;
    }

.pro_dfont {
    line-height: 30px;
}

.reset_ying {
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    text-transform: uppercase;
    color: #969797;
    padding-top: 8px;
}

@media only screen and (min-width: 1024px) {
    .pro_in {
        width: calc(100% / 4);
    }

    .pro_info_img {
        width: 35%;
    }

    .pro_info_nr {
        width: 65%;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
    .pro_list_tilp1 {
        padding: 10px 10px 10px 0;
    }

    .pro_in {
        width: calc(100% / 3);
    }

    .pro_info_img {
        width: 35%;
    }

    .pro_info_nr {
        width: 65%;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 800px) and (min-width: 600px) {
    .pro_list_liimg img {
        width: 100%;
        height: 165px;
    }

    .pro_in {
        width: calc(100% / 2);
    }
}

@media only screen and (max-width: 800px) {
    .pro_list_a1 {
        width: calc(100% / 2);
    }

    .pro_in {
        width: calc(100% / 2);
    }
}

@media only screen and (max-width: 600px) {
    .pro_list_liimg img {
        width: auto;
        height: 165px;
    }
}


.foot_cp {
    overflow: hidden;
    width: 260px;
}

    .foot_cp a {
        display: inline-block;
        width: 130px;
        float: left;
    }

.e_ewm {
    width: 105px;
    float: left;
}

.e_dz {
    width: calc(100% - 105px) !important;
    padding-left: 20px;
}

@media only screen and (max-width: 1200px) and (min-width: 1024px) {
    #c_portalResnav_main-15892472307795179 .top-nav {
        margin-left: 0;
        margin-right: 3px;
    }
}


.pro_dl {
    position: absolute;
    background: #fff;
    width: 160px;
    display: none;
    left: 0;
    padding: 5px 0;
    box-shadow: 0 1px 12px 0 rgba(0,0,0,.2);
}

    .pro_dl dd {
        font-size: 14px;
        line-height: 28px;
        padding: 5px 12px;
        text-align: left;
    }

        .pro_dl dd a {
            display: inline-block;
        }

        .pro_dl dd:hover {
            background: #00418f;
        }

            .pro_dl dd:hover a {
                color: #fff;
            }

#c_portalResnav_main-15622286198346388 .js-m.js-m-2:hover .pro_dl {
    display: block;
}


.navActive {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

    .navActive a {
        color: #b12830;
    }

.childMenusActive span {
    /*border-bottom: 3px solid #fff;*/
    color: #b12830;
}

@media only screen and (max-width: 1920px) and (min-width: 1367px) {
    .pro_list_liimg img {
        width: 100%;
        height: 200px;
    }

    .pro_list_li:hover .pro_list_lispan {
        height: 200px;
    }

    #c_portalResnav_main-15622286198346388 .header1 nav li {
        font-size: 20px
    }
}




