.block {
    width: 1280px;
    margin: 0 auto;
}

img {
    width: 100%;
    height: 100%;
}

.body_home {
    width: 100%;
}

.body_home .header {
    width: 100%;
    height: 119px;
    background: #FBE9D4;
    padding-top: 32px;
    box-sizing: border-box;
}

.body_home .header .headerbox {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.body_home .header .logo {
    width: 336px;
    height: 68px;
}

.body_home .header .logo img {
    width: 100%;
    height: 100%;
}

.body_home .header .search {
    display: flex;
    align-items: center;
    margin-top: 16px;
    height: 25px;
}

.body_home .header .search .ipt {
    width: 144px;
    height: 25px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: none;
    outline: none;
    padding-left: 10px;
    box-sizing: border-box;
}

.body_home .header .search .seaipt {
    width: 26px;
    height: 25px;
    background: #8E0818;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body_home .header .search .seaipt img {
    width: 18px;
    height: 18px;
}

.body_home .nav {
    width: 100%;
    height: 60px;
    background: #8E0818;
    overflow: visible;
}

.body_home .nav .navbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    overflow: visible;
}

.body_home .nav .navbox .nava {
    display: flex;
    align-items: center;
    height: 60px;
    overflow: visible;
}

.body_home .nav .navbox .navhead {
    height: 60px;
    font-family: FZHTK;
    font-weight: normal;
    font-size: 22px;
    line-height: 60px;
    color: #FFFFFF;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.body_home .nav .navbox .navhead:not(:has(ul))::before {
    content: none;
}

.body_home .nav .navbox .navhead ul {
    position: absolute;
    top: 150%;
       width: 150%;
    left: -25%;
    background: rgba(255, 255, 255, .92);
    border-top: 2px solid #8e0818;
    padding: 0 9px 0 12px;
    box-sizing: border-box;
    display: block;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.38s ease, transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.45s;
}

.body_home .nav .navbox .navhead.hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.4s ease 0.12s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        visibility 0s linear 0s;
}

.body_home .nav .navbox .navhead ul li {
    padding: 20px 0;
    font-family: FZHTK;
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #8E0818;
    border-bottom: 1px solid rgba(27, 27, 27, .2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.body_home .nav .navbox .navhead ul li a{
        white-space: nowrap;
          
    text-overflow: ellipsis;
    overflow: hidden;
}
.body_home .nav .navbox .navhead.hover>ul>li {
    opacity: 1;
    transform: translateY(0);
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(1) {
    transition-delay: 0.14s;
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(2) {
    transition-delay: 0.2s;
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(3) {
    transition-delay: 0.26s;
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(4) {
    transition-delay: 0.32s;
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(5) {
    transition-delay: 0.38s;
}

.body_home .nav .navbox .navhead.hover>ul>li:nth-child(n + 6) {
    transition-delay: 0.44s;
}

.body_home .nav .navbox .navhead:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    top: 110%;
    background: #94070a;
    display: block;
    transform: scaleX(0);
    transform-origin: center center;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
    -webkit-transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
    -moz-transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
    -ms-transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
    -o-transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.body_home .nav .navbox .navhead:before {
    content: "";
    border-left: 2px solid #94070a;
    height: 25px;
    position: absolute;
    left: 50%;
    top: 110%;
    margin-left: -1px;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
    -webkit-transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    -o-transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.body_home .nav .navbox .navhead.hover:before {
    transform: scaleY(1);
}

.body_home .nav .navbox .navhead.hover:after {
    transform: scaleX(1);
}

.body_home .nav .navbox .navhead.now:after {
    transform: scaleX(1);
}

.body_home .nav .navbox .logoqb {
  float: right;
  display: flex;
  align-items: center;
}
.body_home .nav .navbox .logoqb img {
  width: 60px;

}

.body_home .nav .navbox .logoqb .lineimg {
  width: 30px;
  height: 46px;
}

.esp {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.footer {
    width: 100%;
    height: 172px;
    background: #8E0818;
}

.footer .footerbox {
    width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding-top: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer2 .footerbox {
    width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding-top: 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footerbox .fleft {
    margin: 0px 0 0 40px;


}

.footer2 .footerbox .fleft {
    margin-top: 34px;
    height: 100%;
    width: 900px;
}

.footer .footerbox .fleft .info {
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}

.footer2 .footerbox .fleft .info {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 25px;
}

.footer .footerbox .fleft .info a {
    font-family: FZHTK;
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 25px;
}

.footer .footerbox .fleft .info span {
    /* height: 15px; */
    color: #FFFFFF;
    margin: 0 25px;
    overflow: hidden;
}

.footer2 .footerbox .fleft .info span {
    /* height: 15px; */
    color: #FFFFFF;
    margin: 0 5px;
    overflow: hidden;
}

.footer .footerbox .fleft .line {
    width: 775px;
    border: 1px solid #FFFFFF;
}

.footer2 .footerbox .fleft .line {
    width: 900px;
    border: 1px solid #FFFFFF;
}

.footer .footerbox .fright {
    height: 100%;
    display: flex;
    align-items: baseline;
    margin-top: 0px;
}

.footer2 .footerbox .fright {
    height: 100%;
    display: flex;
    align-items: baseline;
    margin-top: 15px;
}

.footer .footerbox .fright .fitem {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-left: 45px;
}

.footer2 .footerbox .fright .fitem {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.footer .footerbox .fright .fitem img {
    width: 80px;
    /* height: 105px; */
}

.footer .footerbox .fright .fitem span {
    width: 105px;
    font-family: FZHTK;
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF !important;
    line-height: 18px;
    margin-top: 15px;
    text-align: center;
}

.footer2 {
    background: #fff;
    height: auto;
    /*margin-bottom: 190px;*/
}

.footer2 .footerbox {
    border-top: 5px solid #e9eaea;
}

.footer2 .footerbox .fleft .info a,
.footer2 .footerbox .fleft .info span,
.footer .footerbox .fright .fitem span {
    color: #5d5a58;
}

.footer2 .footerbox .fleft .line {
    border-bottom: 2px solid #f5f5f5;
}


.footer2 .code {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer2 .code span {
    margin-left: 20px;
}

.footer2 .banquan {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #efefef;
    padding: 0px 20px;
    box-sizing: border-box;
    font-size: 14px;
    padding-right: 0;
}

.footer2 .banquan a {
    color: #4674b7;
}


.footer2 .imgboxone {
    display: flex;
    align-items: center;
}

.footer2 .imgboxone .jclogo {
    width: 15px;
    /* height: 14px; */
    margin-right: 2px;
}

.footer2 .imgboxone .top {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}