@charset "utf-8";
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #231815;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #231815;
    width: 7px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

::selection {
    background: #231815;
    color: #fff;
}

input {
    -webkit-appearance: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}


/* 去除iphone按钮默认样式代码 */

input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
    -webkit-appearance: none;
}


/* 通用外层 */

.boxes {
    position: relative;
    padding: 3vw 0px;
    overflow: hidden;
}

.boxes.f {
    background: #f9f9f9;
}


/* 通用宽度 */

.w1500 {
    width: 90%;
    max-width: 1500px;
    margin: 0px auto;
    position: relative;
}


/* 通用宽度 */

.w1400 {
    width: 85%;
    max-width: 1400px;
    margin: 0px auto;
    position: relative;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}


/* 通用弹出层样式 */

.lightBox {
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 1000;
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    opacity: 0;
    visibility: hidden;
    position: fixed;
}

.lightBox.active {
    opacity: 1;
    visibility: visible
}


/* 通用视频弹出层样式 */

.videoBox {
    width: 70%;
    max-width: 1000px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    background: #fff;
    padding: 35px 0px;
    border-radius: 10px;
}

.videoBox video {
    display: block;
    position: relative;
    width: 100%;
}

.videoCloseBtn {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .5s;
}

.videoCloseBtn:hover {
    -webkit-transform: rotate(180deg);
}


/* 通用半透明背景代码 */

.transBg {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .0) 100%);
}


/* 通用处理单行文字溢出代码 */

.singleLine {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 通用处理多行文字溢出代码 */

.multiLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.7;
}


/* 通用字体字号行距样式 */

.singePage {
    width: 100%;
    line-height: 2;
    font-size: 16px;
}

.singePage p {
    margin-bottom: 15px;
}

.singePage.c {
    text-align: center;
}

.singePage img {
    width: auto;
    max-width: 100%;
    display: inline;
}


/* 通用分页样式 */

#page {
    display: flex;
    text-align: center;
    margin-top: 2vw;
    width: 100%;
    padding-bottom: 1vw;
}

#page ul {
    width: 100%;
    justify-content: center;
    display: flex;
}

#page li.xl-prevPage,
#page li.xl-nextPage {
    display: none;
}

#page li {
    display: block;
    width: 35px;
    height: auto;
    cursor: pointer;
    color: #3e3e3e;
    font-size: 12px;
    line-height: 33px;
    text-align: center;
    -webkit-appearance: none;
    -webkit-transition: all .4s;
    margin-right: 5px;
    border: 1px solid #ededed;
}

.xl-nextPage,
.xl-prevPage {
    width: 60px;
    color: #2a2a32;
    height: 28px;
}

#page li.xl-disabled {
    opacity: .5;
    cursor: no-drop;
}

#page li.xl-disabled:hover {
    background-color: #f9f9f9;
    color: #666;
}

#page li.xl-active {
    background-color: #da2e34;
    color: #FFF
}

#page li:hover {
    background-color: #da2e34;
    color: #FFF
}

#page li.xl-jumpText {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    opacity: 1;
}

#page li.xl-jumpText:hover {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}

#page li.xl-jumpButton {
    padding: 0 5px;
}

#xlJumpNum {
    width: 35px;
    margin: 0 3px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

input[type="number"] {
    -moz-appearance: textfield;
}


/* 通用详情页样式 */

.detail_page {
    width: 100%;
    background: #f4f4f4;
    position: relative;
    padding: 3vw;
}

.detail_box {
    width: calc(100% - 425px);
    height: auto;
    background: #fff;
    padding: 30px;
}

.detail_box .title {
    font-size: 30px;
    line-height: 45px;
    padding-bottom: 15px;
}

.detail_box .date {
    width: 100%;
    height: auto;
    position: relative;
    font-size: 14px;
    line-height: 25px;
    opacity: 0.6;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.othre_list {
    width: 400px;
    height: auto;
    position: relative;
    background: #fff;
    padding: 30px;
}

.othre_list .name {
    width: 100%;
    height: auto;
    position: relative;
    font-size: 30px;
    line-height: 45px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 15px;
}

.othre_list .name::after {
    width: 120px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -3px;
    content: '';
    background: #da2e34;
}

.detail_box .singePage {
    min-height: 500px;
}

.o_list {
    width: 100%;
    height: auto;
    position: relative;
}

.o_list a {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    line-height: 25px;
    padding: 25px 0px;
}

.o_list a:last-child {
    border-bottom: none;
}

.o_list a:hover {
    color: #da2e34;
}


/* 通用查看更多按钮样式一 */

.commonMore {
    font-size: 16px;
    position: relative;
    z-index: 0;
    width: 158px;
    height: 54px;
    margin-top: 50px;
    padding: 0;
    border-radius: 32px;
    color: #da2e34;
    cursor: pointer;
    display: block;
}

.commonMore.w {
    color: #fff;
}

.commonMore.active,
.commonMore.active:hover {
    background: #ccc;
    color: #fff;
    cursor: no-drop;
}

.commonMore.c {
    margin: 0px auto;
    margin-top: 50px;
}

.commonMore:hover {
    color: #fff;
    border-color: transparent;
    background: transparent;
}


/* 通用查看更多按钮样式二：圆形 */

.commonMore2 {
    width: 65px;
    height: 65px;
    margin: 100px auto 0px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #da2e34;
    line-height: 65px;
    text-align: center;
    -webkit-transition: all .35s;
    position: relative;
}

.commonMore2.left {
    margin: 100px 0px 0px;
}

.commonMore2 i {
    position: relative;
}

.commonMore2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    border-radius: 50%;
    background: #da2e34;
    -webkit-transform: scale(0);
    -webkit-transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    content: '';
    opacity: 0;
}

.commonMore2:hover {
    font-size: 20px;
    color: #fff;
}

.commonMore2:hover::before {
    -webkit-transform: scale(1);
    opacity: 1;
}


/* 通用查看更多按钮样式三：文字+icon */

.commonMore3 {
    width: 200px;
    height: 60px;
    border-radius: 50px;
    margin: 100px auto 0px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #da2e34;
    color: #da2e34;
    overflow: hidden;
    -webkit-transition: all .4s;
    background-color: #fff;
    padding: 0px 20px;
}

.commonMore3.bw {
    border-color: #fff;
}

.commonMore3 p {
    margin-left: 15px;
    font-size: 16px;
}

.commonMore3 .icon {
    width: 40px;
    height: 40px;
    background: #da2e34;
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    -webkit-transition: all .4s;
}

.commonMore3:hover {
    background: #da2e34;
    color: #fff;
    border-color: #da2e34;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
}

.commonMore3:hover .icon {
    background: #fff;
    color: #da2e34;
}


/* 通用回到顶部代码 */

.backTop {
    position: fixed;
    right: 50px;
    display: block;
    bottom: -100px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    cursor: pointer;
    line-height: 50px;
    font-size: 28px;
    text-align: center;
    z-index: 50;
    color: rgba(0, 0, 0, .4);
    -webkit-transition: all .5s;
}

.backTop.active {
    bottom: 50px
}

.backTop:hover {
    background-color: #2a2a32;
    color: #fff
}


/* 通用基于swiper的banner代码 */

.swiperBanner {
    height: 40vw;
    position: relative;
    margin-top: 120px;
    overflow: hidden;
}

.swiperBanner .swiper-slide {
    overflow: hidden;
}

.swiperBanner .swiper-button-next,
.swiperBanner .swiper-button-prev {
    width: 50px;
    height: 50px;
    -webkit-transition: all .5s;
    -webkit-transform: translateX(0px);
    background: rgba(39, 123, 186, .5);
}

.swiperBanner .swiper-button-next {
    right: -50px;
}

.swiperBanner .swiper-button-prev {
    left: -50px;
}

.swiperBanner .swiper-button-next:after,
.swiperBanner .swiper-button-prev:after {
    font-size: 14px;
}

.swiperBanner:hover .swiper-button-next {
    right: 10px;
}

.swiperBanner:hover .swiper-button-prev {
    left: 10px;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center center
}

.swiperBanner .swiper-button-next:hover,
.swiperBanner .swiper-button-prev:hover {
    background: rgba(39, 123, 186, 1);
}

.swiper-pagination.bannerDot {
    position: absolute;
    width: auto;
    height: auto;
    display: flex;
    left: 50%;
    -webkit-transform: translateX(-50%);
    bottom: 2vw;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, .3);
    padding: 10px 15px;
    padding-right: 5px;
    border-radius: 20px;
}

.swiper-pagination.bannerDot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .5);
    display: block;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-transition: all .35s;
    border: 1px solid #fff;
    background: transparent;
}

.swiper-pagination.bannerDot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}


/* 通用公告的代码 */

.noticeBox {
    width: 100%;
    display: flex;
    line-height: 60px;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 60px;
}

.noticeBox .icon {
    width: 100px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.noticeList {
    width: calc(100% - 200px);
}

.noticeList ul {
    display: block;
    width: 100%;
    float: left;
    height: 60px;
    overflow: hidden;
    margin-left: 20px
}

.noticeList ul li {
    width: 100%;
    height: 60px;
    position: relative;
    font-size: 16px;
}

.noticeList ul li a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    color: #fff;
}

.noticeList ul li a span {
    margin-left: 50px;
    opacity: .7;
}

.noticeBox .arrow {
    width: 100px;
    display: flex;
    justify-content: center;
}

.noticeBox .arrow>div {
    width: 40px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}


/* 通用视频播放按钮 */

.commonVideoBtn {
    width: 60px;
    height: 60px;
    position: relative;
    display: block;
    cursor: pointer;
    margin: 50px auto;
}

.commonVideoBtn::after,
.commonVideoBtn::before {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    position: absolute;
    left: -1px;
    top: -1px;
    content: '';
    border-radius: 50%;
    -webkit-animation: scaleAnimate 2s linear infinite;
    opacity: 0;
}

.commonVideoBtn::after {
    -webkit-animation-delay: .5s;
}

@-webkit-keyframes scaleAnimate {
    0% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(2);
        opacity: 0;
    }
}

.commonVideoBtn span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #fff;
    border-radius: 50%;
}

.commonVideoBtn span::after {
    width: 0px;
    height: 0px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #035ea3;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
}


/* 通用上一条下一条样式 */

.ndc_npnews {
    width: 100%;
    height: auto;
    display: flex;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-top: 50px;
}

.ndc_npnews .post_next,
.ndc_npnews .post_prev {
    line-height: 25px;
}

.ndc_npnews .post_next p,
.ndc_npnews .post_prev p {
    font-size: 14px;
}

.ndc_back {
    width: 20%;
    height: 55px;
    line-height: 25px;
    position: relative;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.ndc_back span {
    width: 25px;
    height: auto;
    display: block;
    padding: 3px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.ndc_back p {
    display: block;
    width: 100%;
    opacity: 0.5;
    font-size: 14px;
}

.ndc_npnews a:hover p {
    opacity: 1;
}

.ndc_npnews .post_next:hover .icon:after,
.ndc_npnews .post_prev:hover .icon:after {
    background: rgba(255, 255, 255, .2)
}

.ndc_npnews .post_next .icon,
.ndc_npnews .post_prev .icon {
    width: 20px;
    position: relative
}

.ndc_npnews .post_next .icon:before,
.ndc_npnews .post_prev .icon:before {
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../../images/common/udIcon.png) no-repeat;
    background-size: cover;
    content: '';
    opacity: .5
}

.ndc_npnews .post_next .icon:before {
    left: auto;
    right: 0;
    -webkit-transform: rotate(-180deg)
}

.ndc_npnews .post_next .name,
.ndc_npnews .post_prev .name {
    width: calc(100% - 20px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ndc_npnews .post_next .name {
    direction: initial;
}


/* 通用淡入样式一 */

.swiper-container.swiperNomal {
    height: 100vh;
}

.swiper-container.swiperNomal .pic {
    position: absolute;
    width: 100%;
    height: 100%;
    background: center center no-repeat;
    background-size: cover;
    transition: 1s linear 2s;
    -webkit-transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.swiper-container.swiperNomal .swiper-slide-active .pic {
    transition: 6s linear;
    transform: scale(1, 1);
    -webkit-transition: 6s linear;
    -webkit-transform: scale(1, 1);
}

.swiperNomal .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 10px;
    opacity: 1;
    border-radius: 50px;
    background: #fff;
    position: relative;
    -webkit-transition: all .8s;
    margin-right: 10px;
    opacity: .5;
}

.swiperNomal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 35px;
    opacity: 1;
}

.vlightBox {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0%;
    top: 0%;
    z-index: 200;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(15px);
    padding: 0px 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    visibility: hidden;
    opacity: 0;
}

.inner-player video {
    display: block;
    width: 70%;
    height: auto;
    border: 5px solid #fff;
    border-radius: 5px;
}

.pro_close {
    width: 50px;
    height: auto;
    line-height: 60px;
    text-align: center;
    padding: 17px;
    position: absolute;
    right: 5%;
    top: 5%;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .35s;
    background: #da2e34;
}

.pro_close:hover {
    -webkit-transform: rotate(45deg);
}

.pro_close img {
    opacity: 1;
}

.vlightBox.active {
    opacity: 1;
    visibility: visible;
}

.inner-player {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiperNomal .swiper-pagination {
    position: relative;
}

.swiperNomal .dotBox {
    display: flex;
    justify-content: center;
    width: auto;
    position: absolute;
    bottom: 2vw;
    width: 100%;
}

.swiperNomal .btnBox {
    width: auto;
    display: flex;
    position: relative;
    z-index: 10;
    margin-left: 5px;
}

.swiperNomal .btnBox .prev,
.swiperNomal .btnBox .next {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    margin: 0px 6px;
    color: #fff;
    cursor: pointer;
}


/* 通用自动滚动样式 */

.dowebok {
    width: 100%
}

.dowebok .img {
    margin-left: 5px;
    display: inline-block;
    width: 250px;
    height: auto;
    background: center center no-repeat;
    background-size: cover;
}

.str_wrap {
    overflow: hidden;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    left: 0px;
    bottom: 0px;
    white-space: nowrap
}

.str_move {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    cursor: move
}

.str_move_clone {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    left: 100%;
    top: 0
}

.str_vertical .str_move_clone {
    left: 0;
    top: 100%
}

.str_down .str_move_clone {
    left: 0;
    bottom: 100%
}

.str_down .str_move,
.str_vertical .str_move {
    white-space: normal;
    width: 100%
}


/* 通用内页banner样式 */

.sub_banner {
    position: relative;
    overflow: hidden;
}


/* 通用提示样式 */

.toast {
    width: 150px;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-40%) translateX(-50%);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    font-size: 14px;
    padding: 25px 15px;
    display: flex;
    border-radius: 8px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .3);
    text-align: center;
    flex-wrap: wrap;
}

.toast b {
    font-size: 16px;
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.toast.icon-warning {
    background: #fef0f0;
    border: 1px solid #fde2e2;
    color: #f56c6c;
}

.toast i {
    width: 35px;
    height: 35px;
    display: block;
    position: relative;
    background: url(../../images/common/noti_icon.png);
    background-size: cover;
    margin: 0px auto;
    margin-bottom: 15px;
}

.toast.icon-warning i {
    background-position: -35px 0px;
}

.toast.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.toast div {
    width: 100%;
}

.toast p {
    display: block;
    color: #000;
}

.toast.icon-warning p {
    color: #f56c6c;
}

.toast.icon-success {
    background: #f0f9eb;
}

.toast.icon-success p,
.toast.icon-success b {
    color: #67c23a;
}

.toast .close_icon {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    background: url(../../images/common/noti-close.png) no-repeat;
    background-size: cover;
    cursor: pointer;
}

.thum {
    position: relative;
    overflow: hidden;
}

.pic {
    background: center center no-repeat;
    background-size: cover;
    -webkit-transition: all 1s;
}

.inner {
    width: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.inner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all 0.5s;
}

#nav-icon2 {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 3%;
    top: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 5;
}


/* Icon 2 */

#nav-icon2 {
    display: none;
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: #fff;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
    top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
    top: 10px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
    top: 20px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px;
}

#nav-icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
}

#nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 12px;
}

#nav-icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 12px;
}

.detail_top {
    width: 100%;
    height: auto;
    position: relative;
    background: #3e3e3e center center no-repeat;
    background-size: cover;
    margin-top: 0px;
    padding: 300px 0px 100px;
    color: #fff;
}

.detail_top .title {
    font-size: 2.5vw;
    line-height: 1.5;
    font-weight: bold;
}

.detail_top .info {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.dpl {
    width: calc(100% - 250px);
    padding: 0px;
    padding-right: 80px;
    border: none;
}

.dpl .singePage img {
    width: 100% !important;
    height: auto !important;
}

.ndc_npnews {
    margin-top: 5vw;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 25px;
    flex-wrap: wrap;
}

.ndc_npnews .post_next,
.ndc_npnews .post_prev {
    padding: 10px 0px;
    line-height: 25px;
    width: 100%;
    font-size: 16px;
    display: flex;
}

.ndc_npnews .post_next .icon,
.ndc_npnews .post_prev .icon {
    width: 64px;
}

.ndc_npnews .post_next .name,
.ndc_npnews .post_prev .name {
    width: calc(100% - 64px);
}

.ndc_npnews .post_next .icon:before,
.ndc_npnews .post_prev .icon:before {
    display: none;
}

.ndc_npnews a:hover {
    color: #da2e34;
}

.de_pate {
    padding-top: 5vw;
    background: #f9f9f9;
    padding-bottom: 5vw;
}

.detail_top .w100 {
    width: 1200px;
    margin: 0px auto;
}

@keyframes roateOne {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(180deg);
    }
}

.st_fadeUp {
    -webkit-transition: all 1s ease 0.3s;
    -webkit-transform: translateY(50px);
    opacity: 0;
}

.st_fadeRight {
    -webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
    -webkit-transform: translateX(100px);
    opacity: 0;
}

.st_fadeRight.is-inview {
    -webkit-transform: translateX(0px);
    opacity: 1;
}

.st_fadeUp.is-inview {
    -webkit-transform: translateY(0px);
    opacity: 1;
}

.st_clipUp {
    overflow: hidden;
}

.st_clipUp p {
    -webkit-transform: translateY(100%);
    -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) .3s;
}

.st_poly {
    -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
    -webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.st_polyR {
    /* -webkit-clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%); */
    -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
    -webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.swiper-slide-active .st_poly,
.swiper-slide-active .st_polyR {
    -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%);
}

.st_polyL {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
}

.st_delay1 {
    -webkit-transition-delay: .1s;
}

.st_delay2 {
    -webkit-transition-delay: .2s;
}

.st_delay3 {
    -webkit-transition-delay: .3s;
}

.st_delay4 {
    -webkit-transition-delay: .4s;
}

.st_delay5 {
    -webkit-transition-delay: .5s;
}

.st_delay6 {
    -webkit-transition-delay: .6s;
}

.st_delay7 {
    -webkit-transition-delay: .7s;
}

.st_delay8 {
    -webkit-transition-delay: .8s;
}

.st_delay9 {
    -webkit-transition-delay: .9s;
}

.st_delay10 {
    -webkit-transition-delay: 1s;
}

.st_delay11 {
    -webkit-transition-delay: 1.1s;
}

.st_delay12 {
    -webkit-transition-delay: 1.2s;
}

.st_delay13 {
    -webkit-transition-delay: 1.3s;
}

.st_delay14 {
    -webkit-transition-delay: 1.4s;
}

.st_delay15 {
    -webkit-transition-delay: 1.5s;
}

.st_delay16 {
    -webkit-transition-delay: 1.6s;
}

.st_clipUp.is-inview p {
    -webkit-transform: translateY(0%);
}

.st_path {
    -webkit-transition: all 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.st_path .pic {
    -webkit-transition: all 1.5s ease;
    -webkit-transform: scale(1.1);
}

.st_path.is-inview {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.st_path.is-inview .pic {
    -webkit-transform: scale(1);
}

.subBanner {
    position: relative;
    overflow: hidden;
}

.subBanner img {}

.common_title.is-inview .cn p {
    -webkit-transform: translateY(0%);
}

.nav_bg {
    display: none;
    width: 45px;
    height: 45px;
    overflow: hidden;
    position: fixed;
    right: 10px;
    top: 7.5px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1);
}

.menu_btn {
    position: absolute;
    right: 0px;
    display: none;
    width: 45px;
    height: 45px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #e60012;
    color: transparent;
    border: none;
}

.menu_btn span {
    top: 22px;
    left: 13px;
    width: 20px;
}

.menu_btn span,
.menu_btn span:after,
.menu_btn span:before {
    position: absolute;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.menu_btn span:after,
.menu_btn span:before {
    content: "";
    left: 0;
    -webkit-transform: translateY(0px) rotate(0deg);
}

.menu_btn span:before {
    top: -6px;
    width: 14px;
}

.menu_btn span:after {
    top: 6px;
    width: 12px;
}

.menu_btn.active span {
    background-color: transparent;
}

.menu_btn.active span:before {
    -webkit-transform: translateY(6px) rotate(-45deg);
}

.menu_btn.active span:after {
    -webkit-transform: translateY(-6px) rotate(45deg);
}

.menu_btn.active span:after,
.menu_btn.active span:before {
    width: 20px;
}

.searchLight {
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 1000;
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
    opacity: 0;
    visibility: hidden;
    position: fixed;
}

.searchLight.active {
    opacity: 1;
    visibility: visible;
}

.searchGroup {
    width: 600px;
    height: auto;
    position: absolute;
    padding: 75px 100px;
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
}

.searchGroup .name {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 25px;
}

.searchGroup input {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    outline: none;
    margin-bottom: 25px;
}

.searchBtn {
    width: 120px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, .05);
    text-align: center;
    cursor: pointer;
    color: rgba(0, 0, 0, .5);
    -webkit-transition: all .35s;
}

.searchBtn:hover {
    background: #0b3088;
    color: #fff;
}

.searchGroup input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .3);
    font-size: 14px;
}

.searchClose {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    -webkit-transition: all .5s;
}

.searchClose:hover {
    -webkit-transform: rotate(-45deg);
}

.scResult {
    width: 100%;
    height: auto;
    background: #da2e34;
    color: #fff;
    font-weight: 700;
    text-indent: 45px;
    font-size: 20px;
    line-height: 40px;
    position: relative;
}

.scResult img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
    top: 7.5px;
}

.resultTips {
    width: 100%;
    height: auto;
    line-height: 40px;
    font-size: 14px
}

.resultTips span {
    color: #da2e34;
    padding: 0 3px;
    font-weight: 700
}

.noData {
    width: 200px;
    height: 200px;
    margin: 0px auto;
    font-size: 14px;
    text-align: center;
    display: none;
    position: relative;
}

.noData img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 30px;
    background-size: cover;
    opacity: .2;
}

.noData p {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    top: 60%;
    color: rgba(0, 0, 0, .2);
}

.noData.active {
    display: block
}

.rsult_list {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 20px;
}

.rs_item {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 45px;
}

.rs_item_top {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.rs_item_top .mark {
    font-size: 14px;
    text-align: center;
    color: #da2e34;
    height: 26px;
    border: 1px solid #da2e34;
    border-radius: 4px;
    margin-right: 20px;
    line-height: 24px;
    min-width: 90px;
    padding: 0 8px;
    box-sizing: border-box;
}

.rs_item_top .name {
    font-size: 22px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    flex: 1;
}

.rs_item_top .name:hover {
    color: #da2e34;
}

.rs_des:hover {
    opacity: 0.7;
}

.rs_des {
    background: #f4f4f4;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    padding: 16px;
    margin-bottom: 12px;
}

.rs_tips {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.rs_tips .ly {
    width: auto;
    display: flex;
}

.rs_tips .ly span {
    opacity: 0.5;
}

.rs_item_top .name span {
    background: yellow;
}

@media screen and (max-width: 1024px) {
    .nav_bg {
        display: block;
    }
    .nav_bg.active {
        -webkit-transform: scale(40);
    }
    .menu_btn {
        display: block;
        background: #019b4b;
        color: transparent;
        top: 7.5px;
        border-radius: 50%;
        right: 10px;
        z-index: 20;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
    }
    .detail_box,
    .othre_list {
        width: 100%;
        padding: 0;
        background: transparent;
    }
    .detail_box .title,
    .othre_list .name {
        font-size: 24px;
        line-height: 30px;
    }
    .detail_box .date {
        font-size: 12px;
    }
    .o_list a {
        padding: 15px 0;
    }
    .detail_box {
        margin-bottom: 10vw;
    }
    .rs_des {
        display: none;
    }
    .rs_item_top .mark {
        font-size: 10px;
        min-width: 60px;
        margin-right: 0px;
        width: 60px;
        margin-bottom: 5px;
        height: 22px;
        line-height: 20px;
    }
    .rs_item_top .name {
        font-size: 16px;
        width: 100%;
        display: block;
    }
    .rs_item_top {
        display: block;
        margin-bottom: 5px;
    }
    .rs_tips {
        font-size: 10px;
        opacity: 0.6;
    }
    .rs_item {
        margin-bottom: 5vw;
        padding-bottom: 5vw;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
}