@charset "utf-8";
@font-face {
    font-family: sy;
    src: url(../fonts/sySong.woff);
}

@font-face {
    font-family: din;
    src: url(../fonts/DINOT-MEDIUM.OTF);
}

.header_box {
    z-index: 1000;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header_top::after {
    width: 100%;
    height: 120%;
    opacity: 0.9;
    bottom: auto;
    top: 0;
    background: linear-gradient(180deg, #5E000C 0%, rgba(97, 0, 13, 0) 100%);
}

.fixed .header_top::after {
    background:  #840012;
}

.show .header_top::after {
    height: 1rem;
}

.header_top .wp {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
}

.header_top .top {
    justify-content: space-between;
    height: 1.2rem;
    align-items: center;
    width: 100%;
}

#logo {
    position: relative;
}

.header_top #logo {
    align-items: center;
}

.header_top #logo img {
    transition: .5s;
    width: 1.92rem;
}

.header_top #logo p {
    font-size: 0.2rem;
    color: #FFFFFF;
    padding-left: 0.15rem;
}

.list_box1 {
    flex: 1;
    min-width: 0;
    /* padding-left: 10%; */
    align-items: center;
    justify-content: flex-end;
}

.list_box1 .top-t {
    align-items: center;
    justify-content: flex-end;
}
.top-t {
    align-items: center;
    justify-content: flex-end;
}
.list_box1 .li {
    color: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
}

.top-t a {
    color: rgba(255, 255, 255, 1);
    font-size: 0.16rem;
    padding: 0 0.15rem;
    align-items: center;
}
.list_box1 a {
    color: rgba(255, 255, 255, 1);
    font-size: 0.16rem;
    padding: 0 0.15rem;
    align-items: center;
}

.list_box1 .li:last-child a {
    padding-right: 0;
}

.list_box1 a img {
    display: inline-block;
    width: 0.35rem;
    margin-right: .1rem;
}
.top-t a img {
    display: inline-block;
    width: 0.35rem;
    margin-right: .1rem;
}

.list_box1 .search_btn img {
    width: .3rem;
}

.list_box1 a p {
    padding-left: 0.1rem;
}

.list_box1 .ser .a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_box1 .li .input {
    width: calc(100% - .16rem);
    height: 100%;
    padding: 0 0.1rem 0 0rem;
    font-size: .16rem;
    color: #fff;
    line-height: .28rem;
}

.list_box1 .li .serbtn {
    width: 0.16rem;
    background: url(../images/ser.png) no-repeat left center;
    background-size: 0.16rem;
    height: 100%;
}

.list_box1 .li .input::-webkit-input-placeholder {
    color: #fff;
}

.list_box1 .li .input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.list_box1 .li .input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.list_box1 .li .input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}


/* .banner #nav{position: absolute;bottom: 0;left: 0;} */

#nav {
    flex: 1;
    position: relative;
    z-index: 1000;
    min-width: 0;
}

#nav>ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

#nav>ul>li {
    position: relative;
}

#nav>ul>li>a {
    display: block;
    padding: 0;
    position: relative;
    z-index: 2;
    height: 100%;
    align-items: center;
    margin: 0 0.3rem;
    font-size: 0.18rem;
    color: #fff;
    line-height: .3rem;
}

#nav>ul>li h3 {
    font-size: 18px;
    color: #fff;
    line-height: .3rem;
    position: relative;
    transition: .36s;
    font-weight: bold;
    padding: 0 0rem;
}

#nav>ul>li h3:after {
    content: "";
    position: absolute;
    width: .3rem;
    height: 2px;
    left: 0;
    bottom: -.1rem;
    background: #fff;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
}

#nav>ul>li .sub {
    position: absolute;
    top: 110%;
    background: rgb(255, 255, 255);
    width: auto;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%) scaleY(0);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform-origin: center top;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}

#nav ul li .sub::after {
    content: "";
    height: 3px;
    width: auto;
    position: absolute;
    left: 50%;
    /* background: #00457c; */
    bottom: 100%;
    transform: translateX(-50%);
    border-left: .1rem solid transparent;
    border-right: .1rem solid transparent;
    border-bottom: .1rem solid #fff;
}

#nav ul li .sub .box {
    padding: 0.14rem 0.1rem;
    text-align: center;
}

#nav ul li .sub a {
    padding: .12rem .15rem;
    line-height: 0.28rem;
    transition: all 0.6s ease 0s;
    font-size: 16px;
    color: rgb(51, 51, 51);
    text-align: center;
    min-width: 1.6rem;
    border-bottom: 1px solid #ddd;
}

#nav ul li .sub a:hover {
    color: #9B0D14;
}

#nav ul li .sub a:last-child {
    border-bottom: none;
}

#nav ul li:hover .sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1);
}

#nav ul li.on h3,
#nav ul li:hover h3 {
    font-weight: bold;
    /* color: #9B0D14; */
}

#nav ul li.on h3:after {
    opacity: 1;
}

#nav ul li:last-child h3 {
    padding-right: 0;
}


/*  */

#nav>ul>li .ejnav {
    position: absolute;
    top: 110%;
    background: rgb(255, 255, 255);
    width: auto;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%) scaleY(0);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform-origin: center top;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
    padding: 0.14rem 0.1rem;
}

#nav>ul>li .ejnav li {
    padding: .12rem .15rem;
    line-height: 0.28rem;
    transition: all 0.6s ease 0s;
    font-size: 16px;
    color: rgb(51, 51, 51);
    text-align: center;
    min-width: 1.6rem;
    border-bottom: 1px solid #ddd;
}

#nav>ul>li .ejnav li a {
    color: #333;
}

#nav>ul>li .ejnav li:last-child {
    border-bottom: none;
}

#nav>ul>li .ejnav li:hover a {
    color: #9B0D14;
}

#nav>ul>li:hover .ejnav {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1);
}

.ynav {
    position: absolute;
    right: 0;
    top: 50%;
    height: 53px;
    z-index: 9;
    display: none;
    transform: translateY(-50%);
}

.nav.padr .ynav {
    display: block;
}

.nav.padr {
    padding-right: 50px;
}

.navmenu {
    height: 53px;
    min-width: 26px;
    padding-top: 18px;
    cursor: pointer;
    /* display: none; */
    width: 50px;
}

.navmenu span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
    margin: 0 auto;
}

.navmenu span:nth-child(1) {
    transform-origin: left top;
}

.navmenu span:nth-child(2) {
    margin: 7px auto;
}

.navmenu span:nth-child(3) {
    transform-origin: left bottom;
}

.navmenu.on span:nth-child(1) {
    transform: rotate(41deg);
}

.navmenu.on span:nth-child(2) {
    transform: rotate(40deg);
    opacity: 0;
}

.navmenu.on span:nth-child(3) {
    transform: rotate(-42deg);
}

.ynav-main {
    position: absolute;
    right: 0;
    top: 100%;
    width: 200px;
    height: auto;
    z-index: 999;
    right: 0px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    transform: scaleY(0);
    /* transition: all 0.5s; */
    transform-origin: center top;
}

.ynav-main.on {
    transform: scale(1);
}

.ynav-main>ul li {
    position: relative;
}

.ynav-main>ul li>a {
    display: block;
    padding: 7px 10px;
    line-height: 30px;
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.ynav-main>ul li>ul {
    position: absolute;
    top: 0 !important;
    left: auto !important;
    right: 100%;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    transform: scaleY(0);
    transition: all 0.3s;
    transform-origin: right top;
}

.ynav-main>ul>li>a>img {
    display: none;
}

.ynav-main>ul li:hover>ul {
    transform: scale(1);
}

.ynav-main>ul li:hover>a {
    background: #9B0D14;
    color: #fff;
}

.ynav-main>ul li:hover::after {
    content: none;
}

.ynav-main>ul .top {
    max-width: 1920px;
    margin: 0 auto;
    position: fixed;
    right: 10px;
    top: 18px;
    width: 25px;
    height: 25px;
    z-index: 9999;
}


/*手机端开始*/

.m_header_box {
    transition: .6s;
    display: none;
    position: relative;
    z-index: 100000;
}

.m_header_box header {
    padding: 0 0 0 0.15rem;
    height: .7rem;
    background: #BB0912;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m_header_box header #logo {
    padding: 0;
    width: 85%;
    margin: 0;
    align-items: center;
}

.m_header_box header #logo img {
    max-height: .5rem;
}

.m_header_box header #logo a {
    align-items: center;
}

.m_header_box header #logo p {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 0.22rem;
    padding-left: 0.15rem;
}


/*导航按钮开始*/

#nav_btn_box.on {
    background: none;
}

#nav_btn_box {
    position: relative;
    width: .7rem;
    height: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#nav_btn_box:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

#nav_btn_box:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -10px;
    border-right: #fff 10px solid;
    border-top: transparent .7rem solid;
    opacity: 0;
}

#nav_btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    -webkit-transition: .5s;
    outline: none;
    box-shadow: none;
}

#nav_btn .point {
    display: inline-block;
    width: .32rem;
    height: 22px;
    position: relative;
    outline: none;
}

#nav_btn .point:hover .navbtn,
#nav_btn .point:hover .navbtn::after,
#nav_btn .point:hover .navbtn::before {
    width: .32rem;
}

#nav_btn .navbtn {
    position: absolute;
    top: 12px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #BB0912;
}

#nav_btn .navbtn::after,
#nav_btn .navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 24px;
    height: 2px;
    content: '';
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #BB0912;
}

#nav_btn .navbtn::after {
    top: -8px;
}

#nav_btn .navbtn::before {
    top: 8px;
}

#nav_btn .point.on .navbtn {
    background: transparent;
}

#nav_btn .point.on .navbtn::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
}

#nav_btn .point.on .navbtn::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px;
}

.m_nav_list {
    flex-direction: column;
    /* justify-content: center; */
    width: 100%;
    height: 100%;
    overflow: auto;
    align-items: center;
    display: flex;
    background: rgba(255, 255, 255, .1);
}

.m_nav_list::-webkit-scrollbar {
    display: none
}

#m_nav {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -105vw;
    top: 0;
    display: none;
    padding: 70px 20px 30px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #f7f7f7;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
}

#m_nav .close {
    position: absolute;
    top: 7px;
    right: 15px;
    left: 15px;
    font-size: 30px;
    color: #333;
    z-index: 10000;
    /* background: rgba(255,255,255,.1); */
    width: auto;
    height: 35px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0;
}

#m_nav.act {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
}

#m_nav .search_box input.submit {
    background: #BB0912 url(../images/submit.png) center no-repeat;
    background-size: .28rem;
}

#m_nav .list_box0 {
    text-align: center;
    width: 100%;
    justify-content: flex-start;
    margin: .32rem 0 0;
    flex-wrap: wrap;
    height: 0.4rem;
}

#m_nav .list_box0 .li {
    text-align: left;
    color: #BB0912;
    margin: 0 .12rem 0.15rem 0;
    font-size: 14px;
    padding: 0;
    min-width: 1rem;
}

#m_nav .old_rukou {
    margin: .24rem 0 0;
    width: 100%;
}

.list_box_nav_mobile {
    width: 100%;
    max-height: calc(100% - 250px);
    /* background: rgba(255,255,255,.1); */
    padding: 0 0 10px;
    overflow: hidden;
    overflow-y: auto;
    margin: 0;
    /* flex: 1; */
}

.list_box_nav_mobile>li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
}

.list_box_nav_mobile>li .con {
    position: relative
}

.list_box_nav_mobile>li .a {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    line-height: .5rem;
    color: #333;
    padding: 0;
    font-size: 16px;
    display: flex;
    position: relative;
    transition: .5s;
}

.list_box_nav_mobile>li i {
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    width: .64rem;
    height: .5rem;
    display: inline-block;
    background: url(../images/arrow_down.png) center no-repeat;
    background-size: 15px 9px !important;
    position: absolute;
    display: block;
    right: 0;
    top: 2px;
}

.list_box_nav_mobile>li.on1 i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

.list_box_nav_mobile>li.on .a {
    border-bottom: 1px solid #e2e2e2;
}


/*三级导航 开始*/

.list_box_nav_mobile>li .list {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none
}

.list_box_nav_mobile>li .list a {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 2.5;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}


/*顶部搜索*/

.wap_search {
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    overflow: hidden;
    width: 100%;
    /* height: 85px; */
    display: block;
    margin-bottom: 0.1rem;
}

.wap_search .header-search {
    height: 40px;
    border-radius: 20px;
    background: rgb(255 255 255);
    position: relative;
    width: 3.68rem;
    margin: 10px auto;
    max-width: 100%;
}

.wap_search .input {
    font-size: .16rem;
    color: #646464;
    height: 40px;
    line-height: 40px;
    padding: 0 .24rem;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: #fff;
    border-radius: 30px;
    /* background:none; */
    width: calc(100% - 40px);
}

.wap_search .btn_blue {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    background: url(../images/submit.png) center no-repeat #BB0912;
    background-size: .24rem;
    border-radius: 20px;
}

.wap_search .btn_blue.fr {
    background: #e9edef;
    color: #4e4f53;
}

.wap_search input::-webkit-input-placeholder {
    color: #999;
}

.wap_search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}

.wap_search input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.wap_search input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}


/* WebKit browsers */

.wap_search input:focus::-webkit-input-placeholder {
    color: transparent;
    /* transparent是全透明黑色(black)的速记法，即一个类似rgba(0,0,0,0)这样的值 */
}


/* Mozilla Firefox 4 to 18 */

.wap_search input:focus:-moz-placeholder {
    color: transparent;
}


/* Mozilla Firefox 19+ */

.wap_search input:focus::-moz-placeholder {
    color: transparent;
}


/* Internet Explorer 10+ */

.wap_search input:focus:-ms-input-placeholder {
    color: transparent;
}


/* 点击搜索框获取焦点 placeholder消失-结束 */


/* pc搜索 */

.search_btn {
    cursor: pointer;
}

.search-dialog-box {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}

.search-dialog-box::before {
    content: "";
    position: absolute;
    top: 0px;
    height: 0px;
    background: #BB0912;
    transition: all 0.6s ease 0s;
    left: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0.9;
}

.search-dialog-box.on::before {
    height: 100%;
    display: none;
}

.search-dialog-box .bubbles-bg {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    margin: 0px;
    background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.7);
    transform-origin: center center;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.search-dialog-box .wrap-inner {
    transform: translateY(100%);
    transition: all 0.6s ease 0s;
}

.search-dialog {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.search-dialog .search-tit {
    font-size: 0.44rem;
    line-height: 0.56rem;
    color: rgb(255, 255, 255);
    text-align: center;
    overflow: hidden;
    display: none;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 0px;
}

.search-dialog .search-input {
    width: 8rem;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    max-width: 94%;
}

.search-dialog .search-input input[type="text"] {
    float: left;
    height: 0.7rem;
    width: calc(100% - 1rem);
    background-color: rgb(255, 255, 255);
    font-size: 0.2rem;
    line-height: 0.08rem;
    color: #666;
    transition: all 0.3s ease 0s;
    padding: 0px 0.2rem;
}

.search-dialog .search-input input[type="submit"],
.search-dialog .search-input .clear-btn {
    float: right;
    height: 0.7rem;
    width: 1rem;
}

.search-dialog .search-input input[type="submit"] {
    background-color: #BB0912;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 0.4rem;
    background-image: url("../images/search-btn.png");
    font-size: .2rem;
    color: #fff;
    cursor: pointer;
}

.search-dialog .search-input .clear-btn {
    background-color: rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/close-btn.png");
    background-size: 0.56rem;
    border-radius: 100%;
    margin-right: 0.16rem;
    display: none;
}

.search-dialog .search-input.on {
    background-color: rgb(255, 255, 255);
}

.search-dialog-box .bottom-box {
    position: absolute;
    left: 0px;
    bottom: 5.1%;
    width: 100%;
}

.header-right.is-open .search-btn .con-box {
    display: none;
}

.header-right.is-open .close-btn {
    display: block;
}

.header-right.is-open .item .search-bg {
    transform: scale(1);
}

.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .search-bg {
    height: 100vh;
}

.search-dialog-box.on .bubbles-bg {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box.on .wrap-inner {
    transform: translateY(0px);
}

.pub-close {
    position: absolute;
    width: 0.48rem;
    height: 0.48rem;
    z-index: 10;
    right: 0.24rem;
    top: 0.216rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}

.pub-close .bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #BB0912;
    transform: scale(0);
    border-radius: 100%;
    transition: transform 0.3s ease 0s;
}

.pub-close i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 0.12rem;
    background-repeat: no-repeat;
    background-image: url("../images/close-btn.png");
    transition: all 0.6s ease 0s;
}

.pub-close i:hover {
    transform: rotate(180deg);
}

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes spin2 {
    100% {
        transform: rotate(-1turn);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(1turn);
    }
}

@keyframes spin-reverse2 {
    0% {
        transform: rotate(-1turn);
    }
}


/* banner */

.main-visual-wrapper {
    width: 100%;
    position: relative;
    /* padding-top: 1.2rem; */
}

.main-visual-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.main-visual-slider .swiper-slide {
    overflow: hidden;
}

.main-visual-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-box1 .imged {
    padding-bottom: 50vh;
}

.slide-inner {
    overflow: hidden;
}

.main-visual-slider .imged {
    transform: scale(1.05);
    transform: scale(1)\0;
    transition: opacity 0.5s
}

.main-visual-slider .imged::after {
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5)0%, rgba(0, 0, 0, 0)100%);
}

.main-visual-slider .swiper-slide-active .imged {
    transform: scale(1);
    transition: all 6s;
}

.main-visual-slider video {
    transform: scale(1.1)\0;
}

.main-visual-slider a:hover .imged {
    transform: scale(1);
}

.swiper-box1 .cir {
    bottom: 0.2rem;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.swiper-box1 .cir span {
    margin: 0px 0.1rem !important;
    width: 0.1rem;
    height: 0.1rem;
    opacity: .5;
    background: #fff;
}

.swiper-box1 .cir .swiper-pagination-bullet-active {
    opacity: 1;
}


/* home1 */
.home1 {
    background: #f2f8fd;
    padding: 0.96rem 0 0.8rem;
    width: 100%;
    margin-top: 0;
    min-height: 6.5rem;
}
.home1::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    bottom: 0;
    background: url(../images/hbg1.png) no-repeat top/100%;
    0%;
    */z-index: -1;
    background-size: 100% 100%;
}

.home1::after {
    width: 6.47rem;
    height: 6.3rem;
    background: url(../images/h1bg1.png) no-repeat;
    background-size: 100% 100%;
    left: auto;
    right: -1.37rem;
    bottom: auto;
    top: 1.07rem;
z-index:0;
}

.title {
    margin-bottom: .7rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.title .h3 {
    position: relative;
    margin: 0 auto;
}

.title .h3>p {
    font-family: arial;
    font-size: 1.28rem;
    color: rgba(51, 51, 51, 0);
    opacity: 0.3;
    -webkit-text-stroke: #E8BBC1 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.title h3 {
    padding-left: 0.2rem;
    border-left: 0.04rem solid #BB0912;
    z-index: 0;
    position: relative;
}

.title b {
    font-size: 0.36rem;
    color: #333333;
    font-weight: bold;
    display: block;
}

.more {
    position: absolute;
    right: 0;
    bottom: -0.2rem;
}

.more a {
    font-size: 0.14rem;
    transition: 0.5s;
    color: #fff;
    line-height: 0.26rem;
    align-items: center;
    border-radius: 0;
    width: 0.86rem;
    height: 0.86rem;
    background: url(../images/more.png) no-repeat;
    background-size: 100% 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home1-t .title .h3 {
    margin: 0;
    width: 100%;
}

.home1-t .title h3 {
    padding-left: 0.4rem;
    width: 100%;
}

.home1-t .title h3 b {
    margin-bottom: .25rem;
}

.home1-t .title h3 p {
    font-size: 0.18rem;
    line-height: 0.32rem;
    color: #555555;
    margin-bottom: 0.3rem;
    /* overflow-y: auto; */
   /* max-height: 2.6rem;*/
}

.home1-t .title h3 p:last-child {
    margin-bottom: 0;
}

.home1-t .more {
    top: 0.6rem;
}

.home1-t {
    justify-content: space-between;
    padding-left: 0;
}

.home1-t .left {
    width: 55%;
}

.home1-t .right {
    width: 40%;
}

.home1-t .right .h1-s1 {
    padding: 0.45rem 0.55rem 0.55rem 0;
}

.home1-t .right .h1-s1::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 50%;
    top: 0;
    border-radius: 1rem 0px 0px 0;
    opacity: 0.1;
    background: #fff;
    z-index: -1;
    right: 0;
    top: 0;
}

.home1-t .right .h1-s1::after {
    width: 80%;
    left: auto;
    right: 0;
    height: 50%;
    border-radius: 0rem 0 1rem 0rem;
    background: linear-gradient(139deg, #A51A21 33%, rgba(255, 146, 151, 0) 111%);
}

.home1-t .right .img img {
    width: 100%;
    border-radius: 0rem 1rem 0rem 1rem;
}

.h1-b {
    margin-top: 0.6rem;
}

.h1-b .title {
    justify-content: flex-end;
}

.h1-b .title .h3 {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: flex-end;
}

.h1-b .title h3 {
    padding-right: 1.5rem;
}

.home1-b li * {
    transition: 0.5s;
}

.home1-b {
    margin-top: -0.2rem;
}

.home1-b::after {
    width: 100%;
    height: 1px;
    background: #AA0E16;
    bottom: 50%;
}

.h1-s::after {
    width: auto;
    height: auto;
    left: auto;
    right: 0;
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
    border-left: 0.15rem solid #AA0E16;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.h1-s li {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 0.15rem;
}

.h1-s li a {
    height: 2rem;
    display: block;
    width: 100%;
    padding: 0.3rem 0 0.1rem 0.45rem;
}

.h1-s li a::after {
    width: 0.24rem;
    height: 1.96rem;
    background: url(../images/h1line1.png) no-repeat;
    background-size: 100% 100% !important;
    bottom: -0.05rem;
}

.h1-s li h3 {
    font-size: 0.18rem;
    color: #333;
    line-height: 0.32rem;
    max-height: 0.96rem\0;
}

.h1-s li.slick-current+li,
.h1-s li.slick-current+li+li+li {
    justify-content: flex-end;
}

.h1-s li.slick-current+li+li a::after {
    background: url(../images/h1line3.png) no-repeat;
}

.h1-s li.slick-current+li+li+li a::after {
    background: url(../images/h1line4.png) no-repeat;
    bottom: auto;
    top: -0.05rem;
}

.more a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 1025px) {
    .home1-t li a:hover .con {
        background: #BB0912;
    }
    .h1-s li {
        height: 4rem;
    }
    .h1-s li.slick-current+li a::after {
        background: url(../images/h1line2.png) no-repeat;
        bottom: auto;
        top: -0.05rem;
    }
    .h1-s li a:hover h3 {
        color: #BB0912;
    }
    .home1 .title .h3>p {
        margin-left: -2.3rem;
    }
    .h1-b .title .h3 p {
        margin-right: -1.2rem;
        margin-bottom: -0.3rem;
    }
}

@media screen and (max-width: 1024px) {
    .home1 {
        padding: 0.4rem 0;
        overflow: hidden;
        margin: 0;
    }
    .home1-t {
        padding-left: 0;
    }
    .home1::after {
        display: none;
    }
    .h1-b {
        margin-top: 0.3rem;
    }
    .home1-t .left {
        width: 100%;
    }
    .home1-t .right {
        width: 100%;
        margin-top: 0.3rem;
    }
    .home1-t .right .h1-s1 {
        padding: 0.25rem 0.25rem 0.25rem 0;
    }
    .home1-t .more {
        top: 0rem;
    }
    .home1-b::after {
        bottom: .05rem;
    }
    .h1-s::after {
        bottom: -.05rem;
        top: auto;
        transform: translateY(0);
    }
    .h1-b .title .h3 {
        align-items: center;
        margin: 0 auto;
    }
    .h1-s li {
        padding: .1rem 0
    }
    .home1-t .right .img img {
        border-radius: 0rem .3rem 0rem .3rem;
    }
    .home1-t .right .img::before {
        border-radius: .3rem 0 0 0;
    }
    .home1-t .right .img:after {
        border-radius: 0 0 .3rem 0;
    }
    .home1-b {
        margin-top: 0;
    }
}

@media screen and (max-width: 420px) {}


/* home4 */

.home4 {
    width: 100%;
    padding: 1.1rem 0rem 0rem;
    margin-top: -0.8rem;
}

.home4.on {
    display: none;
}

.home4::after {
    width: 100%;
    height: 9rem;
    background: url(../images/hbg2.png) no-repeat;
    background-size: 100% 100%;
    top: -0.5rem;
}

.home4 .title h3 {
    border-color: #fff;
}

.home4 .title h3 b {
    color: #fff;
}

.home4 .title p {
    color: rgba(51, 51, 51, 0);
    opacity: 0.15;
}

.home4 .more a {
    background: url(../images/more2.png) no-repeat;
    color: #BB0912;
}

.home4-b {
    position: relative;
    align-items: center;
}

.home4-b .left {
    width: 3.37rem;
    padding-left: 0.15rem;
}

.home4-b .right {
    flex: 1;
    min-width: 0;
    padding: 0 0 0rem 0.7rem;
}

.home4-b .left::after {
    width: auto;
    left: 0rem;
    right: 0rem;
    height: 3.28rem;
    bottom: -0.12rem;
    background: url(../images/h2-c.png) no-repeat;
    background-size: 100% 100%;
}

.home4-b .left .img {
    height: 3.2rem;
    background: #f2f2f2;
    width: 3.2rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.home4-b .left .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home4-b .right h3 {
    padding-bottom: 0.3rem;
    color: #fff;
    font-size: .2rem;
}

.home4-b .right h3 b {
    font-size: 0.32rem;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    padding-right: .5rem;
}

.home4-b .right h4 {
    font-size: 0.18rem;
    line-height: 0.28rem;
    text-align: justify;
    color: #fff;
    width: 100%;
    /*max-height: 2rem;*/
    /* overflow-y: auto; */
    /* padding-right: .15rem; */
}

.home4-b .right h3 a {
    display: inline-block;
}

.home4-t {
    margin-top: .1rem;
}

.home4-t li {
    transition: 0.5s;
}

.home4-t li * {
    transition: 0.5s;
}

.home4-t li .pis {
    width: 1.74rem;
    height: 1.74rem;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
}

.home4-t li .scale {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0 auto;
    background: #fff;
}

.home4-t li a {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 0.1rem;
}

.home4-t li .con {
    width: 100%;
    padding: 0.3rem 0 0;
    text-align: center;
}

.home4-t li h3 {
    font-size: 0.18rem;
    line-height: 0.24rem;
    color: #666;
}

.h4-s {
    /* padding: 0 0.5rem; */
}

.h4-s .slick-track {
    margin: 0;
}

.home4-t .slick-arrow {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0;
    border-radius: 50%;
    transition: 0.5s;
    transform: translateY(0);
    top: 40%;
    background: url(../images/h2-prev1.png) no-repeat;
    background-size: 100% 100% !important;
}

.home4-t .slick-arrow::before {
    display: none;
}

.home4-t .slick-prev {
    left: -0.3rem;
}

.home4-t .slick-next {
    right: -0.3rem;
    transform: rotateY(180deg);
}

.home4-t .slick-next::before {
    display: none;
}

.home4-t .slick-dots {
    bottom: 0;
    position: relative;
}

.home4-t .slick-dots li {
    width: 0.08rem;
    height: 0.08rem;
    background: #BB0912;
    border-radius: 50%;
    margin: 0 0.08rem;
    opacity: .2;
}

.home4-t .slick-dots li.slick-active {
    opacity: 1;
}

.home4-t .slick-dots li button {
    display: none;
}

@media screen and (min-width: 1025px) {
    .home4-b {
        padding-left: 0.5rem;
    }
    .h4-s li.slick-current,
    .h4-s li.slick-current+li+li+li+li {
        padding-top: 0.63rem;
    }
    .h4-s .slick-list {
        height: 3rem;
    }
    .home4 .title p {
        /* margin-left:-1rem; */
    }
}

@media screen and (max-width: 1024px) {
    .home4 {
        padding: .4rem 0;
        overflow: hidden;
        margin-top: 0;
    }
    .home4::after {
        background: #BB0912;
        height: 88%;
    }
    .home4-t .slick-prev {
        left: 0rem;
    }
    .home4-t .slick-next {
        right: 0rem;
    }
    .home4-t {
        margin-top: 0.1rem;
    }
    .home4-t .slick-arrow {
        width: 0.4rem;
        height: 0.4rem;
        top: 35%;
    }
    .home4-t .slick-dots li {
        margin: 0 .1rem;
    }
    .home4-t .slick-dots {
        margin-top: .2rem;
    }
}

@media screen and (max-width: 768px) {
    .home4-b .left {
        margin-top: 0rem;
        padding-left: 0.2rem;
        margin: 0.3rem auto .2rem;
    }
    .home4-b .right {
        flex: none;
        min-width: 0;
        padding: 0;
        width: 100%;
        margin-top: .2rem;
    }
    .home4-b .right h3 b {
        font-size: .24rem;
    }
}

@media screen and (max-width: 600px) {
    .home4-t li .pis {
        width: 1.45rem;
        height: 1.45rem;
    }
    .home4-t .slick-arrow {
        top: 25%;
    }
}

@media screen and (max-width: 500px) {
    .home4-t li .pis {
        width: 1.3rem;
        height: 1.3rem;
    }
    .home4-t .slick-arrow {
        top: 16%;
        z-index: 9999;
    }
}


/*  */

.home5 {
    padding: .4rem 0 0.8rem;
}

.home5::after {
    width: 100%;
    height: auto;
    top: 0;
    bottom: -2rem;
}

.home5 .title .h3 {
    margin: 0;
    align-items: flex-start;
}

.home5 .more {
    bottom: -.3rem;
}

.home5 .more a {
    display: none;
}

.home5 .more a.on {
    display: flex;
}

.h5-t {
    padding-left: 17.4%;
    margin-top: -0.9rem;
    height: 1.35rem;
}

.h5-t dl {
    width: 95%;
}

.h5-t dl::after {
    width: 90%;
    height: 1px;
    border-bottom: 1px dashed #BB0912;
    bottom: auto;
    top: 0.4rem;
    right: 0;
    left: 1.2rem;
}

.h5-t dt {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.h5-t dt span {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 50%;
    background: #BB0912;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
}

.h5-t dt span img {
    display: none;
}

.h5-t dt span::after {
    width: 0.8rem;
    height: 0.8rem;
    top: -0.15rem;
    left: -0.15rem;
    right: -0.05rem;
    bottom: -0.05rem;
    border-radius: 50%;
    background: #BB0912;
    opacity: 0;
}

.h5-t dt p {
    font-size: 0.2rem;
    color: #333333;
    margin-top: 0.25rem;
}

.h5-t dt.on span::after {
    opacity: .15;
}

.h5-t dt.on span {
    width: 0.5rem;
    height: 0.5rem;
    margin-top: .16rem;
}

.h5-t dt.on span img {
    display: block;
}

.home5-t .tab {
    display: none;
}

.home5-t .tab:first-child {
    display: block;
}

.listab li * {
    transition: 0.5s;
}

.listab li {
    /* margin-bottom: 0.33rem; */
}

.listab li a {
    /* background: #FFFFFF; */
    border-bottom: 1px solid #EAEAEA;
    padding: 0.3rem 0;
}

.listab li a::after {
    width: auto;
    opacity: 0;
    border-radius: 9rem 0rem 0rem 9rem;
    background: linear-gradient(270deg, rgba(147, 7, 26, 0) 4%, #93071A 100%);
    left: -0.6rem;
    right: -1.6rem;
}

.listab li p {
    font-size: 0.18rem;
    color: #BB0912;
    font-family: Georgia;
}

.listab li h3 {
    font-size: 0.2rem;
    color: #333;
    margin-top: 0.2rem;
    line-height: 1.3;
}

.more a:hover {
    text-decoration: underline;
    font-weight: bold;
}

@media screen and (min-width: 1025px) {
    .home5-t li a:hover::after {
        opacity: 1;
    }
    .listab li a:hover::after {
        opacity: 1;
    }
    .listab li a:hover p,
    .listab li a:hover h3 {
        color: #fff;
    }
    .listab li a:hover h3 {
        font-weight: bold;
    }
    .home5 .title .h3 p {
        margin-left: -2.2rem;
        opacity: .2;
        line-height:.7;
        /*margin-bottom: 0.15rem;*/
    }
}

@media screen and (max-width: 1024px) {
    .home5 {
        padding: 0rem 0 .1rem;
        overflow: hidden;
    }
    .h5-t {
        padding-left: 0%;
        margin-top: 0rem;
    }
}

@media screen and (max-width: 500px) {
    .listab li a {
        padding: .2rem 0;
    }
    .h5-t dl::after {
        width: 90%;
        height: 1px;
        border-bottom: 1px dashed #BB0912;
        bottom: auto;
        top: 0.4rem;
        right: 0;
        left: 0.6rem;
    }
}


/* home2 */

.home2 {
    width: 100%;
    padding: .5rem 0 1rem;
}

.home2::after {
    width: 100%;
    background: url(../images/hbg2.jpg) no-repeat bottom/cover;
}

.home2 .title .h3 {
    margin: 0;
}

.home2-t .slick-list {
    /* box-shadow: 0px 0.1rem 0.1rem 0px rgba(0, 0, 0, 0.04); */
}

.home2-t li * {
    transition: 0.5s;
}

.h2-s li {
    display: flex !important;
    ;
    align-items: flex-end;
    /* padding: 0.1rem 0; */
}

.home2-t li a {
    height: 2.3rem;
    padding: 0.5rem;
    width: 100%;
    background: #FFFFFF;
    display: block;
    box-shadow: 0px 0rem 0.2rem 0px rgba(0, 0, 0, 0.14);
}

.home2-t li a::after {
    width: 100%;
    height: auto;
    top: -0.17rem;
    opacity: 0;
    background: #9E192B;
}

.home2-t li span {
    font-size: 0.18rem;
    color: #BB0912;
    font-family: Georgia;
}

.home2-t li h3 {
    font-size: 0.2rem;
    color: #333;
    line-height: 0.36rem;
    max-height: 0.72rem\0;
    margin-top: 0.2rem;
}

.home2-t .slick-arrow {
    width: 0.5rem;
    height: 0.5rem;
    background: url(../images/h2-prev1.png) no-repeat;
    background-size: 100% 100% !important;
    z-index: 10
}

.home2-t .slick-prev {
    left: -0.25rem;
}

.home2-t .slick-arrow:before {
    display: none;
}

.home2-t .slick-next {
    transform: rotateY(180deg) translate(0,-50%);
    right: -0.25rem;
}

@media screen and (min-width:1025px) {
    .home2-t li a:hover h3 {
        color: #fff;
    }
    .home2-t li a:hover::after {
        opacity: 1;
    }
    .home2-t li a:hover span {
        color: #fff;
    }
    .home2 .title .h3 p {
        position: absolute;
        left: -0.5rem;
        top: 0%;
        transform: rotate(-90deg) translateX(-4rem);
        transform-origin: left;
    }
    .h2-s li {
        height: 2.6rem;
    }
}

@media screen and (max-width: 1024px) {
    .home2 {
        padding: 0.2rem 0 0.4rem;
        overflow: hidden;
    }
    .h2-s {
        padding: 0 .4rem;
    }
    .home2-t .slick-prev {
        left: 0rem;
    }
    .home2-t .slick-next {
        right: 0rem;
    }
    .home2-t li a {
        height: 1.6rem;
        padding: .2rem;
    }
    .home2-t .slick-arrow {
        width: 0.4rem;
        height: 0.4rem;
    }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 600px) {}


/* h3 */

.home3 {
    width: 100%;
    padding: 0rem 0 1rem;
}

.home3::after {
    background: url(../images/hbg3.png) no-repeat top;
    background-size: 100%;
    height: auto;
    top:1rem;
    bottom: 0rem;
    left: -1.2rem;
    /* right: 0; */
    width: 91%;
}

.home3-t li * {
    transition: 0.5s;
}

.home3-t {
    justify-content: space-between;
    /*padding-left: 1.22rem;*/
    align-items: flex-start;
}

.home3-t .left {
    width: 50%;
}

.home3-t .right {
    width: 50%;
    background: url(../images/h3bg.jpg) no-repeat center/cover;
    border-radius: 0 1rem 0 0;
    padding: 0.4rem 0.56rem;
}

.h3-s li .scale {
    height: 4.8rem;
    border-radius: 0px 0px 0px 1rem;
}

.h3-s li .scale::after {
    width: 100%;
    height: 35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.h3-s .slick-dots {
    left: auto;
    bottom: 0.2rem;
    right: 0.2rem;
}

.h3-s .slick-dots li {
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    opacity: .5;
    margin: 0 0.07rem;
    background: #fff;
}

.h3-s .slick-dots li.slick-active {
    opacity: 1;
}

.h3-s .slick-dots li button {
    display: none;
}

.home3-t .right li a {
    display: block;
}

.home3-t .right li {
    margin-bottom: 0.53rem;
}

.home3-t .right li:last-child {
    margin-bottom: 0;
}

.home3-t .right li p {
    color: #BB0912;
    font-size: 0.2rem;
    font-family: Georgia;
}

.home3-t .right li h3 {
    font-size: .18rem;
    color: #333;
    line-height: .3rem;
    transition: 0.5s;
    margin-top: 0.1rem;
}

.home3-t .right li.on h3 {
    color: #a41017;
}

@media screen and (min-width: 1025px) {
    .home3-t .right li a:hover h3 {
        color: #BB0912;
    }
    .home3 .title .h3 p {
        margin-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .home3 {
        width: 100%;
        padding: 0.4rem 0rem;
        overflow: hidden;
    }
    .home3-t {
        padding-left: 0;
    }
    .home3-t .left {
        width: 100%;
    }
    .home3-t .right {
        width: 100%;
        margin-top: .3rem;
        padding: 0.2rem;
        border-radius: 0 .3rem 0 0;
    }
    .home3-t .right li {
        margin-bottom: 0.2rem;
    }
    .h3-s {
        display: none;
    }
}

@media screen and (max-width: 768px) {}


/* footer */

.footer {
    width: 100%;
    background: #93071A;
}

.foot-b {
    padding: 0.3rem 0;
    justify-content: space-between;
    align-items: center;
}

.foot-b .fot-1 {
    width: 85%;
}

.foot-b .fot-3 {
    width: 1.2rem;
}

.foot-b .fot-1 dt {
    padding: 0 0.35rem;
    text-align: center;
}

.foot-b .fot-1 dt::after {
    width: 1px;
    height: 0.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 52%, rgba(255, 255, 255, 0) 100%);
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.foot-b .fot-1 dt:last-child::after {
    display: none;
}

.foot-b .fot-1 dt:first-child {
    padding-left: 0;
}

.foot-b .fot-1 dt span {
    font-family: 微软雅黑;
    font-size: 0.32rem;
    font-weight: 500;
    color: #FAF2E5;
}

.foot-b .fot-1 dt p {
    font-size: 0.16rem;
    color: #FAF2E5;
    line-height: 0.24rem;
    margin-top: 0.1rem;
}

.foot-b .fot-1 ul {
    margin-top: .2rem;
}

.foot-b .fot-1 li {
    font-size: 0.16rem;
    color: #fff;
    line-height: 1.8;
    padding-right: 0.35rem;
    align-items: center;
    display: flex;
    opacity: .6;
}

.foot-b .fot-1 li p {
    flex: 1;
    min-width: 0;
    padding-left: 0.1rem;
}

.foot-b .fot-3 .img {
    width: 1.2rem;
    text-align: center;
}

.foot-b .fot-3 p {
    text-align: center;
    margin-top: .1rem;
    font-size: 0.14rem;
    color: #fff;
    line-height: 0.24rem;
}

.foot {
    padding: 0.16rem 0;
    text-align: center;
    background: #840012;
}

.foot p {
    font-size: 0.14rem;
    line-height: 1.5;
    color: #fff;
    word-break: break-all;
    opacity: .6;
}

.foot div {
    font-size: 0.14rem;
    line-height: 1.5;
    color: #fff;
    word-break: break-all;
    opacity: .6;
}

.foot p a {
    display: inline-block;
    padding: 0 0.1rem;
}

@media screen and (min-width:1025px) {
   
    .foot-b .fot-1 li:nth-child(1) {
        width: 22%\0;
    }
    .foot-b .fot-1 li:nth-child(2) {
        width: 23%\0;
    }
    .foot-b .fot-1 li:nth-child(3) {
        width: 25%\0;
    }
    .foot-b .fot-1 li:nth-child(4) {
         width: 37%\0;
    }
    .foot-b .fot-1 li:nth-child(5) {
        width: 25%\0;
    } 
.foot-b .fot-1 li:nth-child(6) {
        width: 25%\0;
    }
}

@media screen and (max-width:1024px) {
    .foot-b {
        padding: 0.3rem 0 0.2rem;
    }
}

@media screen and (max-width:768px) {
    .foot-b .fot-1 {
        width: 100%;
        text-align: center;
    }
    .foot-b .fot-3 {
        margin: 0 auto;
    }
    .foot-b .fot-1 li {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.1rem;
    }
    .foot-b .fot-1 li p {
        flex: none;
    }
    .foot-b .fot-1 dl {
        justify-content: center;
    }
}

@media screen and (max-width:440px) {}

@media screen and (max-width: 1600px) {
    .list_box1 {
        padding-left: 5%;
    }
    .header_top #logo img {
        max-width: 3rem;
    }
}

@media screen and (max-width:1300px) {
    .list_box1 .ser {
        padding-left: .5rem;
    }
    .header_top #logo img {
        max-width: 5rem;
    }
}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {
    .title {
        margin-bottom: .35rem;
    }
    .title h3 {
        font-size: 0.3rem;
        margin-top: -0.1rem;
    }
    .swiper-box1 .swiper-pagination {
        bottom: .2rem;
    }
    .banner video {
        display: none;
    }
    .title h3 span {
        font-size: .36rem;
    }
    .title .con {
        padding-left: 0rem;
    }
    .main-visual-wrapper {
        padding-top: 0;
    }
    .title .h3>p {
        font-size: 0.6rem;
    }
}

@media screen and (max-width:768px) {
    .title {
        margin-bottom: .25rem !important;
    }
    .title h3 b {
        font-size: 0.26rem;
    }
    .title .h3>p {
        font-size: 0.4rem;
    }
    .title .h3 {
        margin: 0;
        text-align: left;
    }
    .txt1 {
        font-size: 0.2rem !important;
    }
    .p1 {
        font-size: 0.16rem !important;
    }
    .swiper-box1 .imged {
        padding-bottom: 45%;
    }
}

@media screen and (max-width:600px) {}

@media screen and (max-width:420px) {
    .m_header_box header #logo p {
        font-size: .22rem;
    }
}

@media(min-width: 200px) {
    [aos=zoom-in] {
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5)
    }
}

@media screen and (max-height:500px) {
    .list_box_nav_mobile {
        max-height: calc(100% - 120px);
        padding-left: 0rem;
    }
}

.h3-s li {
    display: none;
}

.h3-s li:first-child {
    display: block;
}