@charset "UTF-8";

* {
    box-sizing: border-box !important;
    font-family: "Poppins";
    word-break: normal !important;
    word-wrap: normal !important;
    -webkit-font-smoothing: antialiased !important;
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

.invalid-feedback {
    font-size: 0px;
}

/* 分页器 */
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

ul.pagination li {
    width: 36px;
    height: 36px;
    background: transparent;
    text-align: center;
    line-height: 36px;
    margin: 0 5px;
}

ul.pagination li a {
    color: #333;
    display: block;
    width: 100%;
    height: 100%;
}

ul.pagination li.active,
ul.pagination li:hover {
    background: #127BF2;
    color: #fff;
}

ul.pagination li:hover a {
    color: #fff;
}

ul.pagination li:first-child,
ul.pagination li:last-child {
    font-size: 32px;
}

ul.pagination li.disabled {
    background: transparent !important;
    color: #999 !important;
    cursor: no-drop;
}

/* 留言 */
.ver-error-input {
    border: 1px solid #ff1f30;
}
.ver-errbox{
    position: relative;
}
.ver-errors {
    color: #ff1f30;
    font-size: 12px;
    margin: 0 !important;
    position: absolute;
    width: auto;
    max-width: 220px;
    background-color: #dedede;
    padding: 0 10px;
    border-radius: 5px;
    display: inline-block;
    left: 150px;
    vertical-align: top;
    top: 13px;
    line-height: 30px;
}
.ver-errors:before{
    content:'';
    width: 10px;
    height: 10px;
    background: #dedede;
    position: absolute;
    left: -5px;
    top: 10px;
    transform: rotate(45deg);
}
.ver-errors .ver-error-caret {
    color: #dedede;
    position: absolute;
    left: -12px;
    width: 15px;
    height: 30px;
    line-height: 30px;
    top: 0px;
}

.ver-errors .ver-error-caret.ver-icon-carets:before {
    content: "\e6cc";
}

.ver-money-input {
    vertical-align: middle;
    color: #333;
}

.ver-money-input::before {
    content: "￥";
}

.ver-money-input > input {
    width: 60px;
    border: 0;
    border-bottom: 1px solid #dedede;
    padding: 0;
    margin: 0;
}

.ver-error-inputs {
    border: 1px solid #ff1f30;
    border-right: 0;
}

.ver-errorMessageBlock{
    display: block;
    top: 5px;
    width: 100%;
    max-width: 100%;
    left: 0;
    background: none;
}
@media screen and (max-width: 800px) {
    .ver-errors {
        display: block;
        top: 10px;
        margin-left: -10px !important;
    }

    .ver-errors .ver-error-caret {
        left: 3px;
        top: -19px;
    }

    .ver-errors .ver-error-caret.ver-icon-carets:before {
        content: "\e6d0";
    }
}
/* 翻页 */
.news_page {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
    flex-wrap: wrap;
}

.news_page a {
    color: #666;
    font-size: 16px;
    display: block;
    width: 50%;
}

.news_page a span {
    color: #333;
}

.news_page a:hover {
    color: var(--yx_Color);
}

.news_page .news_page_next {
    text-align: right;
}

@media only screen and (max-width:768px) {
    .news_page a {
        width: 100%;
    }

    .news_page .news_page_next {
        text-align: left;
    }

}

/*Font_Css*/
@font-face {
    font-family: 'Poppins';
    src: url('/src/font/Poppins-Regular.otf');
}

@font-face {
    font-family: 'Poppins_blod';
    src: url('/src/font/Poppins-Black.otf');
}

@font-face {
    font-family: 'yx_icon';
    /* Project id 2650718 */
    src: url('//at.alicdn.com/t/c/font_2650718_2jfe9kygjre.woff2?t=1688605844380') format('woff2'),
        url('//at.alicdn.com/t/c/font_2650718_2jfe9kygjre.woff?t=1688605844380') format('woff'),
        url('//at.alicdn.com/t/c/font_2650718_2jfe9kygjre.ttf?t=1688605844380') format('truetype');
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #d7d7d7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #194b95;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #194b95;
}

.yx_icon {
    font-family: 'yx_icon' !important;
}

.yx_Hide {
    display: none !important;
}

.btn-primary {
    transition: all 0.6s;
}

#c_flipPage-1637288758471 .p_pageBullet {
    width: var(--yx_FS18);
    height: 2px;
    margin: 0px;
    background: #fff;
    opacity: 1;
}

#c_flipPage-1637288758471 .p_pageItem_active .p_pageBullet {
    width: var(--yx_FS36) !important;
    opacity: 1;
    background-color: var(--yx_Color) !important;
}

@keyframes scroll-icon {
    0% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
    }
}

@keyframes blink2 {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: (-50%, -50%) scale(1.5);
    }
}

:root {
    --yx_FS72: 72px;
    --yx_FS60: 60px;
    --yx_FS54: 54px;
    --yx_FS48: 48px;
    --yx_FS45: 46px;
    --yx_FS42: 40px;
    --yx_FS38: 38px;
    --yx_FS36: 32px;
    --yx_FS30: 30px;
    --yx_FS28: 28px;
    --yx_FS24: 24px;
    --yx_FS22: 20px;
    --yx_FS18: 18px;
    --yx_FS16: 16px;
    --yx_FS14: 14px;
    --yx_Color: #EA0000;
    --yx_CTwo: #323232;
    --yx_Grad: linear-gradient(to top, #EA0000 0%, #EA0000 100%);
}

h1 span {
    font-size: var(--yx_FS54) !important;
}

h2 span {
    font-size: var(--yx_FS42) !important;
}

h3 span {
    font-size: var(--yx_FS30) !important;
}

h4 span {
    font-size: var(--yx_FS24) !important;
}

h5 span {
    font-size: var(--yx_FS18) !important;
}

h6 span {
    font-size: var(--yx_FS16) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal !important;
}

/*end*/
a:active,
a:hover,
a:focus,
a:visited {
    outline: none !important;
    text-decoration: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}

i {
    font-style: normal;
}

/*yx_Css*/
.yx_Width {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 1520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.yx_Clear:before,
.yx_Clear:after {
    display: table;
    clear: both;
    content: "";
}

.yx_flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.yx_flexWrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}

.yx_flexJB {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.yx_flexJA {
    -webkit-box-pack: justify;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.yx_flexJE {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.yx_flexJC {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.yx_flexAE {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
}

.yx_flexAC {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.yx_ImgContain,
.yx_ImgCover {
    position: relative;
    height: 0;
    overflow: hidden;
}

.yx_ImgContain img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.yx_ImgCover img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.yx_Title {
    display: block;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yx_Summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.yx_More {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*end*/

/*media*/
@media only screen and (max-width:1440px) {
    :root {
        --yx_FS72: 54px;
        --yx_FS60: 48px;
        --yx_FS54: 42px;
        --yx_FS48: 45px;
        --yx_FS45: 42px;
        --yx_FS42: 36px;
        --yx_FS38: 30px;
        --yx_FS36: 28px;
        --yx_FS30: 26px;
        --yx_FS28: 24px;
        --yx_FS24: 22px;
        --yx_FS22: 18px;
        --yx_FS18: 16px;
        --yx_FS16: 14px;
    }
}

@media only screen and (max-width:1366px) {
    :root {
        --yx_FS72: 42px;
        --yx_FS60: 45px;
        --yx_FS54: 36px;
        --yx_FS48: 45px;
        --yx_FS45: 38px;
        --yx_FS42: 32px;
        --yx_FS38: 28px;
        --yx_FS36: 26px;
        --yx_FS30: 24px;
        --yx_FS28: 22px;
        --yx_FS24: 20px;
        --yx_FS22: 16px;
        --yx_FS18: 16px;
        --yx_FS16: 14px;
        --yx_FS14: 12px;
    }
}

@media only screen and (min-width:1025px) {
    .yx_Width {
        width: 84% !important;
    }

    .yx_List4 {
        display: block;
        width: calc((100% - (var(--yx_FS24)*3)) / 4) !important;
        margin-right: var(--yx_FS24) !important;
        margin-bottom: var(--yx_FS24) !important;
    }

    .yx_List4:nth-child(4n) {
        margin-right: 0 !important;
    }

    .yx_List3 {
        display: block;
        width: calc((100% - (var(--yx_FS36)*2)) / 3) !important;
        margin-right: var(--yx_FS36) !important;
        margin-bottom: var(--yx_FS28) !important;
    }

    .yx_List3:nth-child(3n) {
        margin-right: 0 !important;
    }

    .p_problemCategory {
        display: none;
    }
}

/*pad*/
@media only screen and (min-width:769px) and (max-width:1024px) {
    .yx_Width {
        width: 90% !important;
    }

    .yx_List4 {
        display: block;
        width: calc((100% - (var(--yx_FS24)*2)) / 3) !important;
        margin-right: var(--yx_FS24) !important;
        margin-bottom: var(--yx_FS24) !important;
    }

    .yx_List4:nth-child(3n) {
        margin-right: 0 !important;
    }

    .yx_List3 {
        display: block;
        width: calc((100% - (var(--yx_FS30)*2)) / 3) !important;
        margin-right: var(--yx_FS30) !important;
        margin-bottom: var(--yx_FS30) !important;
    }

    .yx_List3:nth-child(3n) {
        margin-right: 0 !important;
    }

    .p_problemCategory {
        display: none;
    }
}

/*phone*/
@media only screen and (max-width:768px) {
    #c_flipPage-1637288758471 .position_left {
        display: none !important;
    }

    .yx_Width {
        width: 96% !important;
    }

    .p_problemCategory {
        display: block;
    }

    .p_problemCategory .btn-primary {
        margin: 6px 0;
        background: var(--yx_Color);
        color: #fff;
        text-align: center;
        border-radius: 0px;
        width: 100%;
        border-color: var(--yx_Color);
    }

    .yx_PageNav_Box {
        display: none !important;
    }

    :root {
        --yx_FS72: 36px;
        --yx_FS60: 42px;
        --yx_FS54: 28px;
        --yx_FS48: 32px;
        --yx_FS30: 20px;
        --yx_FS42: 26px;
    }

    .yx_List3 {
        display: block;
        width: 100% !important;
        margin-right: 0px !important;
        margin-bottom: 18px !important;
    }

    .yx_List4 {
        display: block;
        width: calc((100% - 10px) / 2) !important;
        margin-right: 10px !important;
        margin-bottom: 10px !important;
    }

    .yx_List4:nth-child(2n) {
        margin-right: 0 !important;
    }
}

@media only screen and (max-width:410px) {
    :root {
        --yx_FS72: 36px;
        --yx_FS60: 32px;
        --yx_FS54: 24px;
        --yx_FS48: 26px;
        --yx_FS42: 22px;
        --yx_FS30: 20px;
        --yx_FS24: 18px;
        --yx_FS22: 16px;
        --yx_FS18: 15px;
        --yx_FS16: 14px;
        --yx_FS14: 12px;
    }
}

/*end*/


@media only screen and (max-width:1200px) {
    .yx_NavBtn span {
        background: #333;
    }

    .yx_Header .yx_EjBtn {
        font-family: 'yx_icon' !important;
    }

}

.yx_Bottom * {
    color: #999999;
    font-size: var(--yx_FS18);
}

/*面包屑样式*/
.e_breadcrumb-5 .p_breadcrumbItem span {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e_breadcrumb-5 .p_breadcrumbItem>a {
    display: flex;
    align-items: center;
}

.e_breadcrumb-5 .p_breadcrumbItem::after {
    display: none;
}