* {
    margin: 0;
    padding: 0;
    font-family: 'PingFangSC,微软雅黑,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif';
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.f16 {
    font-size: 16px;
}

.f34 {
    font-size: 34px;
}

.f18 {
    font-size: 18px;
}

.f48 {
    font-size: 48px;
}

.f20 {
    font-size: 20px;
}

.f30 {
    font-size: 30px;
}

.f14 {
    font-size: 14px;
}

.f36 {
    font-size: 36px;
}

.f58 {
    font-size: 58px;
}

.f24 {
    font-size: 24px;
}

.f38 {
    font-size: 38px;
}

.f26 {
    font-size: 26px;
}

.f22 {
    font-size: 22px;
}

.f28 {
    font-size: 28px;
}

.f60 {
    font-size: 60px;
}

.f17 {
    font-size: 17px;
}

.container {
    width: 1600px;
    margin: 0 auto;
}

img {
    width: auto;
    max-width: 100%;
    display: block;
}

input,
input:focus {
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

/* 分页  最先 */
.pages {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-wrap: wrap;
}

.pages a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    margin-right: 10px;
    transition: all .36s;

    font-weight: 400;
    color: #222222;
    line-height: 30px;
}

.pages a:nth-last-of-type(1) {
    transform: rotate(180deg);
}

.pages a:nth-last-of-type(1) {
    margin-right: 0;
}

.pages a:hover,
.pages a.active {
    background-color: #D80414;
    color: #fff;
    transition: all .36s;
    border-color: #D80414;
}

.pages_long {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    margin-top: 80px;
}

.pages_long .lf {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 80px;
    box-sizing: border-box;
    transition: all .36s;
}

.pages_long .rg {
    padding-right: 80px;
    text-align: right;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: 20px 80px 20px 0px;
    box-sizing: border-box;
    transition: all .36s;
}

.pages_long .iconfont {
    color: #D80414;
    transition: all .36s;
    font-weight: bold;
}

.pages_long .next {
    padding-right: 18px;
    border-right: 1px solid #EEEEEE;
    margin-right: 22px;
    transition: all .36s;
}

.pages_long .rg .next {
    border-left: 1px solid #EEEEEE;
    margin-left: 22px;
    border-right: none;
    padding-left: 18px;
    padding-right: 0;
    margin-right: 0;
    transition: all .36s;
}

.pages_long .rg .iconfont {
    transform: rotate(180deg);
    display: block;
}

.pages_long p {

    color: #222222;
    line-height: 30px;
    transition: all .36s;
}

.pages_long .return {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages_long .return .iconfont {
    font-size: 22px;
}

.pages_long .rg:hover,
.pages_long .lf:hover {
    background-color: #D80414;
    transition: all .36s;
}

.pages_long .rg:hover p,
.pages_long .rg:hover .iconfont,
.pages_long .lf:hover p,
.pages_long .lf:hover .iconfont {
    color: #fff;
    transition: all .36s;
}

.pages_long .rg:hover .next {
    border-color: #fff;
    transition: all .36s;
}

/* 分页  竣事 */
/* 头部样式  最先 */
header {
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    transition: all .5s;
}

header:hover {
    background-color: #fff;
    transition: all .5s;
}

header .logo1 {
    display: none;
}

header.actioe {
    width: 100%;
    position: fixed !important;
    top: 0;
    z-index: 999;
    transition: .6s;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    /* height: 80px !important; */
    background: #ffffff;
    z-index: 999;
    left: 0;
}

header.actioe .logo2,
header:hover .logo2 {
    display: none;
}

header.actioe .logo1,
header:hover .logo1 {
    display: block;
}

header .header_box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header_box nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

header .header_box nav>ul {
    display: flex;
    align-items: center;
    height: 100%;
}

header .header_box nav>ul>li {
    padding: 0 25px;

    display: flex;
    align-items: center;
    height: 100%;
    transition: all .5s;
}

header .header_box nav>ul>li:nth-last-of-type(1) {
    padding-right: 50px;
}

header .header_box nav>ul>li.active>a::after,
header .header_box nav>ul>li>a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D80414;
    transition: all .5s;
}

header .header_box nav>ul>li>a {

    color: #fff;
    transition: all .5s;
    position: relative;
}

header:hover .header_box nav>ul>li>a,
header.actioe .header_box nav>ul>li>a {
    color: #333;
    transition: all .5s;
}

header .header_box nav>ul>li.active>a,
header .header_box nav>ul>li:hover>a {
    color: #D80414;
    transition: all .5s;
    display: flex;
    height: 100%;
    align-items: center;
}

header .header_box .search {
    padding-left: 50px;
    position: relative;
}

header .header_box .search::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #CCCCCC;
}

header .header_box .search .iconfont {
    color: #fff;
    font-size: 16px;
    transition: all .5s;
}

header:hover .header_box .search .iconfont,
header.actioe .header_box .search .iconfont {
    color: #333;
    transition: all .5s;
}

header .header_box .search form {
    position: absolute;
    top: 70px;
    width: 300px;
    right: 0;
    background-color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    display: none;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 5px;
    z-index: 9;
}

header .header_box .search form input {
    flex: 1;
    margin-right: 20px;
    height: 40px;
}

.secondary {
    border-top: 1px solid #333;
    display: none;
}

.secondary ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secondary a {

    color: #333;
    line-height: 38px;
    font-weight: bold;
}

/* 头部样式  竣事 */
/* 下拉  最先 */
.select {
    position: absolute;
    top: 90px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 90px 0;
    box-sizing: border-box;
    z-index: 9;
    width: 100%;
    display: none;
}

.select_box {
    display: flex;
    justify-content: space-between;
}

.select_box .lf {
    width: 19%;
    border-right: 1px solid #D2D2D2;

    color: #333333;
    line-height: 42px;
}

.select_box .list {
    width: 48%;
    margin: 0;
}

.select_box .list>ul {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    flex-wrap: wrap;
    height: 220px;
    grid-template-rows: 52px 52px 52px 52px 52px 52px;
}

.select_box .list>ul li a {

    color: #333;
    line-height: 50px;
}

.select_box .list>ul li a .iconfont {
    font-size: 12px;
    margin-left: 10px;
}

.select_box .list>ul li a:hover {
    color: #D80414;
}

.select_box .rg {
    width: 25%;
    border-radius: 10px;
}

.select_box .rg img {
    border-radius: 10px;
}

/* 下拉  竣事 */
/* banner样式  最先 */
.sw {
    position: relative;
    overflow: hidden;
}

.sw img {
    width: 100%;
    height: 100%;
}

.sw .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    font-weight: bold;
    color: #FFFFFF;
}

.sw .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sw .swiper-slide img {
    animation: banner infinite 10s;
}

.sw .slide1 {
    height: 100%;
}

.sw .swiper-pagination {
    text-align: left;
}

.sw .swiper-pagination-progressbar {
    background-color: #fff;
}

.sw .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    border-radius: unset;
    opacity: 1 !important;
    background-color: #fff;
    position: relative;
}

.sw .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #D80414;
    animation: line 3.5s linear;
}

.sw .container.rg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    bottom: 4%;
}

.sw .container.num_page {
    bottom: 5%;
    display: flex;
    justify-content: flex-end;
}

.bt_box {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 5%;
    /* right: 0; */
    z-index: 9;
}

.numbox {
    color: #fff;
    z-index: 99;

}

.numbox .num {
    display: flex;
    align-items: flex-end;
}

.numbox .num .n1 {

    color: #D80414;
    line-height: 0.9;
}

.numbox .num .n2 {}

.numbox .num span {
    margin: 0 10px;
}

.sw .container.line_box {
    position: relative;
}

@keyframes banner {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* banner样式  竣事 */
/* 底部样式  最先 */
footer {
    background: #B00815;
    padding-top: 110px;
    padding-bottom: 100px;
}

footer .footer_box {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 54px;
}

footer .footer_box .code {
    margin-top: 80px;
    text-align: center;
    width: 39%;
}

footer .footer_box .code p {

    color: #FFFFFF;
    line-height: 30px;
}

footer .footer_box .list dl {
    width: 13%;
}

footer .footer_box dt {
    margin-bottom: 25px;
}

footer .list {
    margin: 0;
}

footer .footer_box .rg {
    width: 63%;
}

footer .footer_box dt a {

    color: #FFFFFF;
}

footer .footer_box dd,
footer .footer_box dd a {

    color: #FFFFFF;
    line-height: 2;
    transition: all .36s;
}

footer .footer_box dd {
    position: relative;
}

footer .footer_box dd::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    height: 1px;
    transition: all .36s;
    width: 0px;
}

footer .footer_box dd:hover::after {
    width: 10px;
}

footer .footer_box dd:hover a {
    padding-left: 15px;
    transition: all .36s;
    color: #ffb4ba;
}

footer .footer_box dd .iconfont {
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
    width: 20px;
    display: inline-block;
    text-align: center;
}

footer .footer_box dd .icon-dizhi1 {
    font-size: 20px;
}

footer .footer_box dd .icon-dianhua1 {
    font-size: 19px;
}

footer .footer_box .list {
    display: flex;
    justify-content: space-between;
}

footer .footer_box .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

footer .footer_box .bottom .copyright,
footer .footer_box .bottom .copyright a {

    color: #FFFFFF;
    line-height: 30px;
}

footer .footer_box .bottom .topping {
    width: 50px;
    cursor: pointer;
}

footer .footer_box .bottom .topping img {
    width: 100%;
}

/* 底部样式  竣事 */
.phone {
    display: none;
}

.phone .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.phone .top .rg {
    display: flex;
    align-items: center;
}

.phone .top .rg .search {
    margin-left: 16px;
}

.icon-guanbi {
    display: none;
}

/* 手机下拉  最先 */
.menu_list {
    display: none;
    height: calc(100vh - 70px);
    border-top: 1px solid #333;
    overflow: auto;
}

.menu_list .drop_down {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s;
}

.menu_list li a {
    font-size: 16px;

    color: #333;
}

.menu_list>ul>li {
    line-height: 50px;
}

.menu_list>ul>li>ul {
    padding-left: 20px;
    box-sizing: border-box;
    display: none;
}

.menu_list>ul>li.active .drop_down .iconfont {
    display: block;
    transform: rotate(180deg);
    transition: all .5s;
}

/* 手机下拉  竣事 */
.phone .search form {
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 0 4%;
    box-sizing: border-box;
    border-top: 1px solid #333;
    display: none;
    z-index: 10;
}

.form_contnet {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.phone .search form input {
    flex: 1;
    height: 40px;
    margin-right: 20px;
    font-size: 16px;
    background: #fff;
}

/* 面包屑  最先 */
.crumbs {
    border-bottom: 1px solid #EEEEEE;
}

.crumbs .crumbs_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 42px 0;
    box-sizing: border-box;
}

.crumbs .lf a,
.crumbs .lf span {

    color: #888888;
}

.crumbs .rg {
    width: 66%;
    text-align: right;
    position: relative;
}

.crumbs .rg a {

    color: #333333;
    line-height: 30px;
    margin-right: 70px;
    transition: all .36s;
    display: inline-block;
}

.crumbs .rg a:nth-last-of-type(1) {
    margin-right: 0;
}

.crumbs .rg a:hover,
.crumbs .rg a.active {
    color: #D80414;
    transition: all .36s;
}

/* 面包屑  竣事 */
/* 相识更多  最先 */
.more {
    width: 160px;
    height: 52px;
    background: #D80414;
    border-radius: 5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.more a {
    color: #fff;

    display: flex;
    align-items: center;
}

.more span {
    display: inline-block;
}

.more span:nth-of-type(2) {
    width: 12px;
    height: 2px;
    background: #FFFFFF;
    margin-left: 10px;
}

/* 相识更多  竣事 */
/* 右侧飘窗  最先 */
#rg_fixed {
    position: fixed;
    text-align: right;
    display: none;
    z-index: 9999;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    width: 189px;
}

#rg_fixed p {
    position: absolute;
    right: 3%;
    top: 10%;
    color: #fff;
    cursor: pointer;
}

#rg_fixed p .iconfont {
    font-size: 24px;
}

/* 右侧飘窗  竣事 */
@media (max-width:1680px) {
    .container {
        width: 1400px;
    }

    .f48 {
        font-size: 44px;
    }

    .f34 {
        font-size: 32px;
    }

    .f30 {
        font-size: 28px;
    }

    .f36 {
        font-size: 34px;
    }

    .f58 {
        font-size: 54px;
    }


    .f38 {
        font-size: 36px;
    }


    .f60 {
        font-size: 55px;
    }

    footer {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    footer .footer_box .list dl {
        width: 15%;
    }

    .crumbs .crumbs_box {
        padding: 37px 0;
    }

    .crumbs .rg a {
        margin-right: 60px;
    }

    .pages {
        margin-top: 70px;
    }

    .pages_long {
        margin-top: 70px;
    }

    .pages_long .lf {
        padding: 20px 0 20px 70px;
    }

    .pages_long .rg {
        padding: 20px 70px 20px 0px;
    }
}

@media (max-width:1550px) {
    .container {
        width: 1300px;
    }
}

@media (max-width:1440px) {
    .container {
        width: 1200px;
    }

    .f48 {
        font-size: 40px;
    }

    .f34 {
        font-size: 28px;
    }

    .f18 {
        font-size: 16px;
    }

    .f20 {
        font-size: 18px;
    }

    .f30 {
        font-size: 24px;
    }

    .f36 {
        font-size: 30px;
    }


    .f58 {
        font-size: 50px;
    }

    .f24 {
        font-size: 22px;
    }

    .f38 {
        font-size: 32px;
    }

    .f26 {
        font-size: 24px;
    }

    .f22 {
        font-size: 20px;
    }

    .f28 {
        font-size: 26px;
    }

    .f60 {
        font-size: 50px;
    }

    .crumbs .crumbs_box {
        padding: 30px 0;
    }

    .crumbs .rg a {
        margin-right: 50px;
    }

    footer {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    footer .footer_box dt {
        margin-bottom: 20px;
    }

    footer .footer_box .list dl {
        width: 17%;
    }

    footer .footer_box .code {
        margin-top: 60px;
    }

    footer .footer_box {
        padding-bottom: 44px;
    }

    .pages {
        margin-top: 60px;
    }

    .pages a {
        width: 40px;
        height: 40px;
    }

    .pages_long {
        margin-top: 60px;
    }

    .pages_long .lf {
        padding: 20px 0 20px 60px;
    }

    .pages_long .rg {
        padding: 20px 60px 20px 0px;
    }
}

@media (max-width:1280px) {
    .container {
        width: 1024px;
    }

    .f48 {
        font-size: 36px;
    }

    .f34 {
        font-size: 24px;
    }

    .f18 {
        font-size: 16px;
    }

    .f20 {
        font-size: 17px;
    }

    .f30 {
        font-size: 20px;
    }

    .f36 {
        font-size: 26px;
    }

    .f58 {
        font-size: 45px;
    }

    .f24 {
        font-size: 20px;
    }

    .f38 {
        font-size: 26px;
    }

    .f26 {
        font-size: 22px;
    }

    .f22 {
        font-size: 18px;
    }

    .f28 {
        font-size: 24px;
    }

    .f60 {
        font-size: 40px;
    }

    .f17 {
        font-size: 15px;
    }

    .more {
        width: 140px;
        height: 40px;
    }

    .select_box .lf {
        width: 13%;
    }

    .select_box .list {
        width: 57%;
    }

    header .header_box nav>ul>li {
        padding: 0 15px;
    }

    header .header_box nav>ul>li:nth-last-of-type(1) {
        padding-right: 30px;
    }

    .crumbs .crumbs_box {
        padding: 25px 0;
    }

    .crumbs .rg {
        width: 61%;
    }

    .crumbs .rg a {
        margin-right: 40px;
    }

    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    footer .footer_box {
        padding-bottom: 34px;
    }

    footer .footer_box .list dl {
        width: 20%;
    }

    footer .footer_box dt {
        margin-bottom: 10px;
    }

    footer .footer_box .code {
        margin-top: 40px;
    }

    footer .footer_box .bottom {
        margin-top: 30px;
    }

    .pages {
        margin-top: 50px;
    }

    .pages a {
        width: 35px;
        height: 35px;
    }

    .pages_long {
        margin-top: 50px;
    }

    .pages_long .lf {
        padding: 15px 0 15px 50px;
    }

    .pages_long .rg {
        padding: 15px 50px 15px 0px;
    }
}

@media (max-width:1024px) {
    .secondary {
        display: block;
    }

    .rg_fixed {
        width: 135px;
    }

    #rg_fixed {
        display: none !important;
    }

    .container {
        width: 92%;
    }

    .f48 {
        font-size: 30px;
    }

    .f16 {
        font-size: 14px;
    }

    .f18 {
        font-size: 16px;
    }

    .f20 {
        font-size: 16px;
    }

    .f30 {
        font-size: 18px;
    }

    .f14 {
        font-size: 12px;
    }

    .f36 {
        font-size: 22px;
    }

    .f58 {
        font-size: 40px;
    }

    .f24 {
        font-size: 18px;
    }

    .f38 {
        font-size: 24px;
    }

    .f26 {
        font-size: 20px;
    }

    .f22 {
        font-size: 16px;
    }

    .f28 {
        font-size: 20px;
    }

    .f60 {
        font-size: 35px;
    }

    .bt_box {
        bottom: 7%;
    }

    header {
        position: unset !important;
    }

    header.actioe .logo1,
    header .logo1 {
        transform: scale(0.8);
        margin-left: -24px;
    }

    header .logo1 {
        display: block;
    }

    header .logo2 {
        display: none;
    }

    .crumbs .crumbs_box {
        padding: 20px 0 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .crumbs .rg {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .crumbs .rg a {
        margin-right: 30px;
    }

    .crumbs .lf span.iconfont {
        font-size: 12px;
    }

    footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    footer .footer_box .lf,
    footer .footer_box .list,
    footer .footer_box .bottom .topping {
        display: none;
    }

    footer .footer_box .bottom {
        margin-top: 0;
        justify-content: center;
    }

    footer .footer_box .rg {
        width: 100%;
        text-align: center;
    }

    footer .footer_box {
        padding-bottom: 30px;
    }

    .pc {
        display: none !important;
    }

    .phone {
        display: block;
    }

    .pages {
        margin-top: 40px;
    }

    .more {
        width: 120px;
        height: 35px;
    }

    .pages_long {
        margin-top: 40px;
    }

    .pages_long .lf {
        padding: 10px 0 10px 40px;
    }

    .pages_long .rg {
        padding: 10px 40px 10px 0px;
    }
}

@media (max-width:768px) {
    .f48 {
        font-size: 24px;
    }

    /* .f34 {
        font-size: 18px;
    } */

    .f20 {
        font-size: 16px;
    }

    .f30 {
        font-size: 16px;
    }

    /* .f36 {
        font-size: 18px;
    } */

    .f58 {
        font-size: 30px;
    }

    .f24 {
        font-size: 16px;
    }

    .f38 {
        font-size: 22px;
    }

    .f26 {
        font-size: 18px;
    }

    .f60 {
        font-size: 30px;
    }

    .f28 {
        font-size: 18px;
    }

    .crumbs .crumbs_box {
        padding: 15px 0 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .crumbs .rg {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .crumbs .rg a {
        margin-right: 20px;
    }

    .pages {
        margin-top: 30px;
    }

    .sw img {
        width: auto;
        height: 200px;
        margin: 0 auto;
    }

    .pages_long {
        margin-top: 30px;
    }

    .pages_long .lf {
        padding: 10px 0 10px 20px;
    }

    .pages_long .rg {
        padding: 10px 20px 10px 0px;
    }

    .pages_long .content {
        font-size: 12px;
    }

    .pages_long .next {
        border-right: none;
        margin-right: 0;
    }

    .pages_long .rg .next {
        border-left: none;
        margin-left: 0;
    }

    .pages_long p {
        line-height: 1.8;
    }
}