* {
    margin: 0;
    padding: 0;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-family: '微软雅黑';
    font-size: 100%;
    line-height: 1.5;
    transition: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

input {
    outline: none;
}

:hover {
    transition: 0.3s;
}

 ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

 ::-webkit-scrollbar-track {
    background: #fff;
}

 ::-webkit-scrollbar-thumb {
    background: #B83B28;
    border-radius: 6px;
}

.headerCentre {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
}

.center {
    width: 1400px;
    margin: 0 auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: relative;
    z-index: 3;
}

header.headerFix {
    position: fixed;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 10;
    width: 100%;
    height: 100px;
    z-index: 999;
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    transition: 0.3s;
}

header.headerFix .headerTop {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.navAsearch {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 20px;
    flex: 1;
}
.teaEnter{color:#000;font-size: 20px;}
.teaEnter:hover{text-decoration:underline;}

.searchBox {
    height: 0;
    position: absolute;
    top: 100%;
    z-index: 3;
    right: 0;
    overflow: hidden;
    transition: 0.3s;
}

.searchBox.active {
    height: 54px;
    transition: 0.3s;
}

.searchBox input {
    outline: none;
    border: none;
}

.searchBox form {
    display: flex;
    width: 335px;
    height: 54px;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.51);
    gap: 0;
}

.searchBox input[type="submit"] {
    height: 100%;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
    background: none;
    border-left: 1px solid #fff;
    cursor: pointer;
}

.searchBox input[type="text"] {
    height: 100%;
    flex: 1;
    background: transparent;
    font-size: 16px;
    color: #fff;
    padding-left: 20px;
}

.searchBox input[type="text"]::placeholder {
    color: #fff;
}

.header0 {
    height: 0;
    overflow: hidden;
}

.headerNav {
    background: #fff;
    width: 100%;
}

header.headerFix .headerNav {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.headerTop {
    width: 100%;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    padding-top: 22px;
}


/* /二级页面导航start/ */


/* /二级页面导航end/ */

.logo {
    width: 38%;
    max-width: 415px;
    flex-shrink: 0;
    margin-right: 40px;
    background: url(../images/logo.png) no-repeat center center/contain;
    display: block;
    height: 66px;
}

.topNav {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: space-between;
}

.navBox {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.navBox ul {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    gap: 0 10px;
}

.navBox ul li {
    flex: auto;
    position: relative;
    text-align: center;
    height: 100%;
}

.navBox ul li>a {
    font-weight: 500;
    font-size: 22px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.navBox ul li>a:hover::before,
.navBox ul li>a.active::before {
    width: 19px;
    transition: 0.3s;
}

.navBox ul li>a:hover:after,
.navBox ul li>a.active:after {
    width: 88px;
    transition: 0.3s;
}

.navBox ul li:first-child>a:hover::after,
.navBox ul li:first-child>a.active::after {
    width: 50px;
    transition: 0.3s;
}

.navBox ul li>a::before {
    content: "";
    width: 0%;
    height: 9px;
    background: url(../images/navLiOn.png) no-repeat center center/contain;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.navBox ul li>a::after {
    content: "";
    width: 0%;
    height: 4px;
    background: #9F212D;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.navBox ul li dl {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: fit-content;
    min-width: 100%;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    z-index: 10;
    transition: 0.3s;
}

.navBox ul li dl dd a {
    font-size: 16px;
    display: block;
    white-space: nowrap;
    color: #333;
    font-weight: normal;
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

.navBox ul li dl dd:last-child a {
    border: none;
}

.navBox ul li dl dd a:hover {
    color: #9F212D;
}

.navBox ul li:hover dl {
    transform: translateX(-50%) scale(1);
    transition: 0.3s;
}

.topNavR {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.icon-search {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.icon-search b {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../images/icon-search.png) no-repeat center/contain transparent;
    border-radius: 50%;
}

.icon-search::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url(../images/icon-searchOut.png) no-repeat center/contain transparent;
    position: absolute;
    left: 0;
    top: 0;
    animation: NameRotate 5s linear infinite;
}

.icon-search:hover::after {
    animation-play-state: paused;
}

@keyframes NameRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes NameRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.topNavR a.en {
    width: 38px;
    height: 38px;
    background: url(../images/icon-en.png) no-repeat center/contain;
}

.topNavR a.en img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phoneNav {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    background: #fff;
    align-items: center;
    padding: 12px 10px;
}

.dropLeft {
    width: 28px;
    height: 28px;
    display: block;
    background: url(../images/icon-meun.png) no-repeat center/contain;
    flex-shrink: 0;
    cursor: pointer;
}

.moblielogo {
    width: 70%;
    max-width: 360px;
}

.moblielogo img {
    width: 100%;
}

.masking {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: transparent;
    transition: all 0.5s ease 0.2s;
    z-index: -1;
}

.masking.focus {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    backdrop-filter: blur(6px);
}

.iphone_nav {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    margin-left: -200px;
    transition: all 0.6s ease 0.2s;
    -webkit-transition: all 0.6s ease 0.2s;
    -moz-transition: all 0.6s ease 0.2s;
    -ms-transition: all 0.6s ease 0.2s;
    -o-transition: all 0.6s ease 0.2s;
    z-index: 999999;
}

.iphone-box {
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 46px;
    padding-top: 80px;
    transition: all 0.6s ease 0.2s;
    -webkit-transition: all 0.6s ease 0.2s;
    -moz-transition: all 0.6s ease 0.2s;
    -ms-transition: all 0.6s ease 0.2s;
    -o-transition: all 0.6s ease 0.2s;
}

.iphone-box>ul>li {
    width: 100%;
    overflow: hidden;
}

.iphone-box>ul>li>a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-box .active>a {
    color: #9F212D;
}

.iphone-box>ul>li>a>i {
    height: 18px;
    width: 18px;
    margin-left: 10px;
    display: inline-block;
    background: url(../images/icon-add.png) no-repeat right center/contain;
    transition: 0.3s;
}

.iphone-box>ul>li.active>a>i {
    transform: rotate(45deg);
    transition: 0.3s;
}

.iphone-box>ul>li>ul {
    display: none;
    overflow: hidden;
    transition: 0.3s;
}

.iphone-box>ul>li>ul>li>a {
    display: block;
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.iphone-box>ul>li>ul>li>a strong {
    font-weight: normal !important;
}

.iphone_nav.focus {
    margin-left: 0;
    display: block !important;
}

.min-search {
    width: 80%;
    margin: 20px auto;
    height: 40px;
    border: 1px solid #9b9b9b;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.min-search form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.min-search form input {
    outline: none;
    border: none;
}

.min-search form input[type="text"] {
    width: calc(100% - 24px);
    padding: 0 10px;
    background: none;
    overflow: hidden;
}

.min-search form input[type="submit"] {
    width: 24px;
    height: 24px;
    background: url(../images/icon-search.png) no-repeat center/contain;
    flex-shrink: 0;
}


/* footer */

.footer-top-con {
    width: 100%;
}

.footer-top {
    background: url(../images/footerBg.png) no-repeat center/cover;
    padding: 40px 0;
    padding-top: 80px;
}

.footer-top-con {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px 50px;
}

.footer-top-con>div {
    width: fit-content;
}

.footer-top-con>div:last-child {
    flex: none;
}

.link li a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    width: fit-content;
}

.link li {
    list-style: disc;
    margin-left: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.link ul,
.contactCon {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.contactCon li {
    /* width: 100%; */
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    list-style: disc;
    margin-left: 26px;
}
.contactCon li p{margin:0;line-height:1.5;/* word-break: break-all; *//* width: auto; */}
.codeCon {
    display: flex;
    gap: 20px 20px;
    margin-top: 22px;
}

.codeBox p {
    font-size: 16px;
    color: #FFFFFF;
    margin: 15px 0;
    text-align: center;
}

.codeBox img {
    width: 128px;
    height: 128px;
}

.code {
    text-align: center;
    /* flex: 1; */
}

.fotTit {
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    padding-left: 12px;
    background: url(../images/icon-bot.png) no-repeat left center;
}

.footer-bottom {
    background: #1A1313;
    padding: 12px 20px;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.footer-bottom a {
    font-size: 14px;
    color: #FFFFFF;
}


/*phoneNav*/

.phoneNav {
    display: none;
}