* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Alibaba PuHuiTi", Arial, "Microsoft YaHei", sans-serif;
    color: #111;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.formMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    display: flex;
    align-items: center;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    z-index: -1;
    transform: translate(-50%, 0);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.el-message--success {
    color: #53C24E;
}

.el-message--error {
    color: #E84335;
}

.el-message-fade-enter-active {
    opacity: 1;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

li {
    list-style: none;
}

.wrapper {
    /* width:90%; */
    width: 72.03125%;
    margin: 0 auto;
}

/* 导航 */
.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.16);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tabar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    /* padding: 0.677083% 1.25%; */
    border-radius: 4px;

    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    width: 14.533623%;
    min-width: 156px;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.tabar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 53px;
    padding: 0 3.703704%;
}

.tabar ul li {
    display: flex;
    align-items: center;
    flex: none;
    position: relative;
}

.tabar ul li a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.header.is-scrolled .tabar ul li a,
.header.is-scrolled .tab-r,
.header.is-scrolled .lang a {
    color: #000;
}

.header.is-scrolled .tab-r svg path {
    stroke: #000;
}

.tabar ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    /* 下划线粗细 */
    background: rgba(176, 34, 32, 1);
    /* 下划线颜色 */
    /* 默认缩放为0，隐藏下划线 */
    transform: scaleX(0);
    transform-origin: center;
    /* 动画原点：中间 */
    transition: transform 0.3s ease;
    /* 动画时长 + 缓动曲线 */
}

.tabar ul li:hover::after {
    transform: scaleX(1.1);
}

.tabar ul li.nav-item::after {
    bottom: -10px;
}

.tabar ul li .nav-item-first {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tabar ul li .nav-item-arrow {
    color: #fff;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header.is-scrolled .tabar ul li .nav-item-arrow {
    color: #000;
}

.tabar ul li.nav-item:hover .nav-item-arrow {
    transform: rotate(180deg);
}

.tabar ul li .nav-item-second {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 30;
    display: none;
    width: 178px;
    padding-top: 20px;
    transform: translateX(-50%);
}

.tabar ul li .nav-item-second.user-menu-nav,
.tabar ul li.nav-item:hover .nav-item-second {
    display: block;
}

.tabar ul li .nav-item-second-pro {
    position: fixed;
    left: 50%;
    right: auto;
    top: 120px;
    width: 100vw;
    margin-left: -50vw;
    padding-top: 0;
    transform: none;
}

.tabar ul li .nav-item-second-pro.user-menu-nav,
.tabar ul li.nav-item:hover .nav-item-second-pro {
    display: block;
}

.tabar ul li .nav-item-second-inner-other {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.tabar ul li .nav-item-second-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 8px;
    border-radius: 3px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.header.is-scrolled .tabar ul li .nav-item-second-link,
.tabar ul li .nav-item-second-link {
    color: #222;
}

.tabar ul li .nav-item-second-link .text,
.tabar ul li .nav-item-second-link .right {
    display: flex;
    align-items: center;
}

.tabar ul li .nav-item-second-link .right {
    color: #b02220;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.tabar ul li .nav-item-second-link:hover {
    background: rgba(176, 34, 32, 0.08);
    color: #b02220;
}

.tabar ul li .nav-item-second-link:hover .right {
    transform: translateX(3px);
}

.tabar ul li .nav-item-second-inner-pro {
    display: flex;
    align-items: stretch;
    gap: 28px;
    width: 100%;
    min-height: 320px;
    padding: 28px 7%;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.tabar ul li .nav-product-type-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 36%;
    max-width: 360px;
    max-height: 360px;
    padding: 12px;
    overflow-y: auto;
    border-radius: 6px;
    background: rgba(176, 34, 32, 0.07);
}

.tabar ul li .nav-product-type-item {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 10px 16px;
    border-radius: 4px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.header.is-scrolled .tabar ul li .nav-product-type-item,
.tabar ul li .nav-product-type-item {
    color: #222;
}

.tabar ul li .nav-product-type-item .text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tabar ul li .nav-product-type-item .right {
    margin-left: auto;
    color: #b02220;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.tabar ul li .nav-product-type-item:hover,
.tabar ul li .nav-product-type-item-active {
    background: #b02220;
    color: #fff;
}

.header.is-scrolled .tabar ul li .nav-product-type-item:hover,
.header.is-scrolled .tabar ul li .nav-product-type-item-active {
    color: #fff;
}

.tabar ul li .nav-product-type-item:hover .right,
.tabar ul li .nav-product-type-item-active .right {
    color: #fff;
    transform: translateX(3px);
}

.tabar ul li .nav-product-name-panels {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}

.tabar ul li .nav-product-name-list {
    display: none;
    flex-direction: column;
    width: 100%;
    max-height: 360px;
    padding: 12px;
    overflow-y: auto;
    border-radius: 6px;
    background: rgba(176, 34, 32, 0.07);
}

.tabar ul li .nav-product-name-list-active {
    display: flex;
    gap: 4px;
}

.tabar ul li .nav-product-name-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 10px 16px;
    border-radius: 4px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.tabar ul li .nav-product-name-item .text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
}

.tabar ul li .nav-product-name-item .right {
    color: #b02220;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.tabar ul li .nav-product-name-item:hover,
.tabar ul li .nav-product-name-item-active {
    background: #b02220;
    color: #fff;
}

.tabar ul li .nav-product-name-item:hover .text,
.tabar ul li .nav-product-name-item-active .text {
    color: #fff;
}

.tabar ul li .nav-product-name-item:hover .right,
.tabar ul li .nav-product-name-item-active .right {
    color: #fff;
    transform: translateX(3px);
}

.tabar ul li .nav-product-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 260px;
}

.tabar ul li .nav-product-preview-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 360px;
    color: #222;
}

.tabar ul li .nav-product-preview-link .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 18px;
    border: 1px solid rgba(176, 34, 32, 0.32);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tabar ul li .nav-product-preview-link:hover .img {
    border-color: #b02220;
    box-shadow: 0 12px 26px rgba(176, 34, 32, 0.16);
}

.tabar ul li .nav-product-preview-link .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tab-r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    width: 18.076645%;
    min-width: 210px;
    color: #fff;
    transition: color 0.25s ease;
}

.tab-r svg path {
    transition: stroke 0.25s ease;
}

.lang,
.search,
.lianxi {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang {
    gap: 6px;
    cursor: pointer;
}

.lang a {
    font-size: 18px;
    line-height: 1.4;
}

.search img {
    display: block;
    width: 32px;
    height: auto;
}

.lianxi {
    padding: 10px 37px;
    border-radius: 3px;
    background: rgba(176, 34, 32, 1);
    border-radius: 2px 2px 35px 2px;
}

.lianxi a {
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    white-space: nowrap;
}



/* lianxi */
/* 联系页脚 */
.page11 {
    width: 100%;
    padding: 78px 0 80px;
    overflow: hidden;
}

.page11-inner {
    display: flex;
    justify-content: space-between;
    /* gap: 48px; */
    color: rgba(23, 23, 23, 1);
    font-family: "Source Sans Pro";
    font-weight: 900;
    font-size: 36px;
    line-height: 45px;
}

.page11-inner .page11-left {
    width: 40%;
}

.page11-inner .page11-left .page11-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-top: 16px;
    background: rgba(176, 39, 37, 1);
}

.page11-inner .page11-left .page11-text {
    margin-top: 30px;
    color: rgba(115, 115, 115, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 300;
    font-size: 21px;
    line-height: 32px;
}

.page11-inner .page11-left .form-item {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.page11-inner .page11-left .form-item .item {
    display: flex;
    gap: 16px;
}

.page11-left .form-item .item .item-l {
    width: 48px;
    height: 48px;
    display: flex;
    place-content: center;
    place-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0px 14px;
    border-radius: 16777200px;
    border: 2px solid rgba(176, 34, 32, 1);
    box-sizing: border-box;
}

.page11-left .form-item .item .item-r {}

.page11-left .form-item .item .item-r .item-r-t {
    color: rgba(39, 39, 42, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.page11-left .form-item .item .item-r p {
    margin-top: 3px;
    color: rgba(39, 39, 42, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    word-break: break-word;
    cursor: pointer;
    position: relative;
}

.page11-left .form-item .item .item-r p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    /* 下划线粗细 */
    background: rgba(176, 34, 32, 1);
    /* 下划线颜色 */
    /* 默认缩放为0，隐藏下划线 */
    transform: scaleX(0);
    transform-origin: center;
    /* 动画原点：中间 */
    transition: transform 0.3s ease;
    /* 动画时长 + 缓动曲线 */
}

.page11-left .form-item .item .item-r p:hover::after {
    transform: scaleX(1.1);
}

.page11-left .left-d {
    margin-top: 40px;
    display: flex;
    gap: 124px;

}

.page11-left .left-d .item {
    position: relative;
    cursor: pointer;
}

.page11-left .left-d .item .code-box {
    /* position: relative; */
    cursor: pointer;
}

.page11-left .left-d .item .item-qrcode {
    display: none;
    position: absolute;
    left: auto;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: url('../image/Union.png') no-repeat center / contain;
    border-radius: 6px;
    z-index: 99;
}

.page11-left .left-d .item .item-qrcode img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

/* hover显示 */
.page11-left .left-d .item:hover .item-qrcode {
    display: flex;
}


.page11-inner .page11-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.page11-right .r-title {
    color: rgba(23, 23, 23, 1);
    font-family: 'Alibaba PuHuiTi';
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}



.page11-right .r-from {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 20px;
    margin-top: 44px;
}

.page11-right .r-from-item {
    display: flex;
    width: 80%;
    padding: 0px 0px 16px 0px;
    border-bottom: 1.7px solid rgba(212, 212, 212, 1);
}


.page11-right .r-from-item input,
.page11-right .r-from-item textarea {
    width: 100%;
    border: none;
    color: rgba(39, 39, 42, 1);
    font-family: 'Alibaba PuHuiTi';
    font-size: 16px;
    line-height: 24px;
}

.page11-right .r-from-item input:focus,
.page11-right .r-from-item textarea:focus {
    outline: none;
}

.page11-right .r-from-item input {
    padding: 0 18px;
}

.page11-right .r-from-item textarea {
    min-height: 180px;
    padding: 15px 18px;
    resize: none;
}

.page11-right .r-from-item input::placeholder,
.page11-right .r-from-item textarea::placeholder {
    color: rgba(161, 161, 170, 1);
}

.page11-right .r-from-item:last-child {
    display: flex;
    justify-content: space-between;
    width: 80%;
    padding: 24px 32px;
    border-radius: 12px;
    background: rgba(17, 17, 17, 1);
    cursor: pointer;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 18px;
    line-height: 34px;
}

.page11-right .r-from-item:last-child .f {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 36px;
    background: rgba(185, 37, 37, 1);
}




























/* 底部 */
.footer {
    border-top: 12px solid rgba(185, 37, 37, 1);
    background: rgba(0, 0, 0, 1);
    position: relative;
}

.footer .foot-img {
    position: absolute;
    top: 0;
    width: 100%;
}

.footer .footer-inner {
    display: flex;
    gap: 100px;
}

.footer .footer-inner-left {
    width: 50%;
    padding: 60px 0;
}

.footer .footer-inner-left .f-logo {
    margin-top: 30px;
}

.footer .footer-inner-left p {
    margin-top: 30px;
    color: rgba(113, 113, 123, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.footer .footer-inner-right {
    width: 50%;
    padding: 70px 0;
}

.footer .footer-inner-right h3 {
    color: rgba(255, 255, 255, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 900;
    font-size: 22px;
    line-height: 24px;
    margin-top: 130px;
}

.footer .footer-inner-right ul {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.footer .footer-inner-right ul li {
    color: rgba(113, 113, 123, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}

.footer .footer-inner-right ul li:hover a {
    color: rgba(255, 255, 255, 1);
}

.footer .footer-inner-right .yotobe {

    display: flex;
    justify-content: end;
    gap: 20px;
    margin-top: 90px;
}

.footer .footer-d {
    border-top: 1px solid rgba(105, 105, 105, 1);
    color: rgba(105, 105, 105, 1);
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 28px 0;
}

.footer .footer-d .footer-d-item {
    cursor: pointer;
}

.footer .footer-d .footer-d-item:hover {
    color: rgba(255, 255, 255, 1);
}

/* 搜索与语言弹窗 */
.searchDialog,
.langDialog {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 24px;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.searchDialog-inner,
.langDialog-inner {
    position: relative;
    width: min(92vw, 960px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    padding: 56px 64px 64px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.searchDialog-close,
.langDialog-close {
    position: absolute;
    top: -64px;
    right: -64px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 128px;
    height: 128px;
    padding: 0 0 24px 24px;
    border: 0;
    border-radius: 50%;
    background: #b02220;
    cursor: pointer;
}

.searchDialog-close svg,
.langDialog-close svg {
    display: block;
    width: 28px;
    height: 28px;
}

.searchDialog-title,
.langDialog-title {
    color: #111;
    font-family: "Alibaba PuHuiTi", Arial, "Microsoft YaHei", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.searchDialog-main {
    margin-top: 34px;
}

.searchDialog-main-inner {
    position: relative;
    width: 100%;
}

.searchDialog-main-inner .input {
    width: 100%;
    height: 54px;
    padding: 0 52px 0 0;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.22);
    color: #111;
    font-size: 22px;
    line-height: 54px;
    outline: none;
    transition: border-color 0.25s ease;
}

.searchDialog-main-inner .input:focus {
    border-bottom-color: #b02220;
}

.icon-searchIcon {
    position: absolute;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #b02220;
    cursor: pointer;
}

.langDialog-main {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.langDialog-one {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 36px) / 3);
    min-height: 58px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.langDialog-one p {
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border-radius: 50%;
    background: #999;
    transition: background-color 0.25s ease;
}

.langDialog-one:hover,
.langDialog-one-active {
    border-color: #b02220;
    background: #b02220;
    color: #fff;
}

.langDialog-one:hover p,
.langDialog-one-active p {
    background: #fff;
}

.lang,
.search {
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.langName-text-p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.langName-icon,
.header-index-search-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* mobile header */
.headerM {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: none;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.headerM .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.headerM .logo {
    width: 156px;
    min-width: 0;
}

.headerM .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.headerM .header-lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.headerM .header-lang-one {
    position: relative;
}

.headerM .langBtn,
.headerM .mobile-search,
.headerM .action_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
}

.headerM .langBtn {
    gap: 5px;
    height: 36px;
    font-size: 15px;
    font-weight: 700;
}

.headerM .langBtn-img,
.headerM .langBtn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerM .mobile-search {
    width: 36px;
    height: 36px;
}

.headerM .action_item {
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
}

.headerM .action_item_span_line {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #171717;
}

.headerM .langList {
    position: absolute;
    top: calc(100% + 12px);
    right: -12px;
    z-index: 10;
    display: none;
    width: 142px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.headerM .langListShow {
    display: block;
}

.headerM .langList-inner a {
    display: block;
    padding: 12px 16px;
    color: #171717;
    font-size: 14px;
    line-height: 1.4;
    transition: color .25s ease, background-color .25s ease;
}

.headerM .langList-inner a:hover {
    background: #b02725;
    color: #fff;
}

.top_nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.top_nav.show_nav {
    transform: translateX(0);
}

.top_nav .top_nav_inner {
    min-height: 100%;
    padding: 0 6vw 44px;
}

.top_nav .top_nav_close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    border-bottom: 1px solid #ececec;
}

.top_nav .logo {
    width: 164px;
    min-width: 0;
}

.top_nav .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.top_nav .top_nav_close_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
}

.top_nav .nav {
    padding-top: 18px;
}

.top_nav .nav .li {
    border-bottom: 1px solid #ececec;
}

.top_nav .nav .li .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
}

.top_nav .nav .li .menu .name {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 62px;
    color: #171717;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.top_nav .nav .li .menu p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #b02725;
    cursor: pointer;
}

.top_nav .nav .li .menu2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.top_nav .nav .li .menu2 .item_val {
    padding: 0 0 16px 12px;
}

.top_nav .nav .li .menu2 .item_val a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 42px;
    color: #555;
    font-size: 16px;
    line-height: 1.4;
}

.top_nav .nav .li .menu2 .item_val a span {
    color: #b02725;
    font-size: 13px;
    font-weight: 700;
}

.top_nav .nav .li .menu2 .item_val a:hover {
    color: #b02725;
}

/* 导航 */
@media (max-width: 1650px) {
    .tabar ul {
        gap: 30px;
        justify-content: flex-start;
    }

}


@media (max-width: 1480px) {
    .tabar ul {
        gap: 30px;
        justify-content: flex-start;
    }

    .langName-text-p {
        font-size: 16px !important;
    }

    .tabar ul li a,
    .lianxi a {
        font-size: 16px;
    }

    .page11-title {
        font-size: 30px;
    }

    .page11-right .r-title {
        font-size: 30px;
    }


    .footer .footer-inner {
        gap: 50px;
    }

    .footer .footer-inner-right ul li {
        font-size: 16px;
    }

}

@media (max-width: 1440px) {
    .wrapper {
        width: 84%;
    }
}

@media (max-width: 1280px) {
    .wrapper {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .tabar ul {
        gap: 14px;
    }

    .logo {
        min-width: 80px;
    }
}



@media (max-width: 1200px) {
    .header {
        display: none;
    }

    .headerM {
        display: block;
    }
}

@media (max-width: 640px) {
    .headerM .wrapper {
        width: 90%;
    }

    .headerM .header-inner {
        min-height: 58px;
    }

    .headerM .logo {
        width: 128px;
    }

    .headerM .header-lang {
        gap: 8px;
    }

    .headerM .langBtn-img {
        display: none;
    }

    .top_nav .top_nav_inner {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .top_nav .logo {
        width: 134px;
    }

    .top_nav .nav .li .menu .name {
        font-size: 18px;
    }
}


@media (max-width:1280px) {
    .page11-inner .page11-left .form-item {
        margin-top: 45px;
    }

}

@media (max-width: 992px) {
    .page11 .wrapper {
        width: 90%;
    }

    .page11-title,
    .page11-right .r-title {
        font-size: 22px;
    }

    .page11-inner .page11-left .page11-text {
        font-size: 16px;
    }

    .page11-inner .page11-left .form-item {
        margin-top: 45px;
    }

    .page11-left .form-item .item .item-r p {
        font-size: 16px;
    }

    .footer .footer-inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page11-inner {
        flex-direction: column;
    }

    .page11-inner .page11-left,
    .page11-inner .page11-right {
        width: 100%;
    }

    .footer .footer-inner-right .yotobe {
        justify-content: flex-start;
    }

    .footer .wrapper {
        width: 90%;
    }

    .footer .footer-inner {
        flex-direction: column;
    }

    .footer .footer-inner-left,
    .footer .footer-inner-right {
        width: 100%;
    }

    .footer .footer-inner-right h3 {
        margin-top: 30px;
    }

    .footer .footer-inner-right {
        padding-top: 10px;
    }

    .footer .footer-inner-left {
        padding-top: 30px;
    }

    .footer .footer-inner-left {
        padding-bottom: 10px;
    }

    .footer .footer-d {
        flex-direction: column;
        gap: 20px;
    }



}

.sidefixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    z-index: 999;
    display: flex;
    width: 58px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sidefixed .sideitemTop {
    border-radius: 10px 10px 0 0;
    padding: 8px 0 0;
}

.sidefixed .sideitemTop .icon-box,
.sidefixed .sideitemTop .icon-box p,
.sidefixed .sideitemTop a p {
    color: #fff;
}

.sidefixed .sideitem3 {
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #B02220;
    transition: .5s;
    position: relative;
    right: 0;
}

.sidefixed .sideitem3:hover {
    background: #B02220;
    right: 210px;
    border-radius: 10px !important;
}

.sidefixed .sideitem3:hover .icon-box {
    border-radius: 10px 0 0 10px !important;
    background: #B02220;
    color: #fff;
}

.sidefixed .sideitem3:hover .sideins {
    border-radius: 0 10px 10px 0;
}

.sidefixed .sideitem3 .p {
    font-size: 12px;
}

.sidefixed .sideitem3 .p a {
    color: #fff;
    width: 100%;
    display: block;
}

.sidefixed .sideitem3 .p a span {
    white-space: normal;
}

.sidefixed .sideitem3 .icon-box {
    z-index: 801;
    padding: 10px 0;
    align-items: center;
    flex-direction: column;
    width: 58px;
    display: flex;
    transition: .5s;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #B02220;
    position: relative;
}

.sidefixed .sideitem3 .icon-box p {
    margin-top: 4px;
    font-size: 12px;
    background: transparent !important;
    text-align: center;
    word-break: break-word;
    font-weight: 400;
}

.sidefixed .sideitem3 .icon-box::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: #B02220;
    width: 34px;
}

.sidefixed .sideitem3 svg {
    width: 19px;
    height: 19px;
}

.sidefixed .sideitem3 .sideins {
    width: 210px;
    background: #B02220;
    padding: 10px;
    min-height: 65px;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.sidefixed .sideitem3 .sideins .contactWays-value {
    position: relative;
}

.sidefixed .sideitem3 .sideins .contactWays-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #fff;
    transition: .5s;
}

.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
    width: 100%;
}

.sidefixed .sideitem3 .sideins p {
    line-height: 20px;
    padding: 8px 0;
    white-space: nowrap;
    position: relative;
}

.sidefixed .sideitem3 .sideins p::after {
    content: '';
    position: absolute;
    top: 14%;
    height: 80%;
    left: -20px;
    width: 1px;
    background: #fff;
}

.sidefixed .sideitem4:hover {
    right: 210px;
}

.sidefixed .sideitem4 .sideins {
    width: 210px;
}

.sidefixed .sideitem1 {
    width: 58px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #B02220;
    transition: .5s;
    position: relative;
    right: 0;
    overflow: hidden;
}

.sidefixed .sideitem1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: #B02220;
    width: 34px;
}

.sidefixed .sideitem1:hover {
    overflow: visible;
    background: #B02220;
}

.sidefixed .sideitem1 .icon-box {
    z-index: 801;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 58px;
}

.sidefixed .sideitem1 .icon-box p {
    margin-top: 4px;
    font-size: 11px;
    background: transparent !important;
    text-align: center;
    word-break: break-word;
}

.sidefixed .sideitem1 svg {
    width: 19px;
    height: 19px;
}

.sidefixed .sideitem2 {
    cursor: pointer;
    width: 58px;
    display: flex;
    padding-bottom: 8px;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #B02220;
    transition: .5s;
    overflow: hidden;
    position: relative;
    right: 0;
    border-radius: 0 0 10px 10px;
}

.sidefixed .sideitem2:hover {
    background: #B02220;
}

.sidefixed .sideitem2 .icon-box {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.sidefixed .sideitem2 .icon-box svg {
    width: 10px;
    height: 10px;
    margin-right: 4px;
}

.sidefixed .sideitem2 .icon-box p {
    font-size: 12px;
    background: transparent !important;
    color: #fff;
}

.sidefixed .sideitemBase {
    border-radius: 23px;
}

.sidefixed .sideitemOther {
    display: flex;
    border-radius: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: -12px;
    bottom: -50%;
    transform: scale(.7);
}

.sidefixed .sideitemOther .sideitemOther-title {
    font-size: 20px;
    color: #565656;
    font-weight: bold;
    text-align: center;
    padding: 15px 10px;
    width: 100%;
    background: #F8F8F8;
    border-radius: 20px 20px 0 0;
}

.sidefixed .sideitemOther .sideitem-chat {
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #EFEFEF;
    transition: .5s;
    position: relative;
}

.sidefixed .sideitemOther .sideitem-chat:last-child {
    border-bottom: none;
}

.sidefixed .sideitemOther .sideitem-chat .link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    opacity: 0;
    transition: .5s;
    background: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    left: 10px;
}

.sidefixed .sideitemOther .sideitem-chat .link:hover,
.sidefixed .sideitemOther .sideitem-chat .link:focus {
    background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link span {
    font-weight: bold;
    font-size: 16px;
    color: #565656;
    text-decoration: underline;
    white-space: nowrap;
}

.sidefixed .sideitemOther .sideitem-chat .link img {
    display: block;
    width: 50px;
}

.sidefixed .sideitemOther .sideitem-chat .gif {
    display: block;
    width: 76px;
    margin: 0 auto;
    transition: .5s;
    transform: scale(.9);
    opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover {
    width: 210px;
}

.sidefixed .sideitemOther .sideitem-chat:hover .link {
    opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover .gif {
    opacity: 0;
}

.sidefixedM {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 998;
    left: 0;
    display: none;
    justify-content: space-between;
    background: #B02220;
}

.sidefixedM .sideitem1,
.sidefixedM .sideitem2 {
    width: 25%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: .5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sidefixedM .sideitem1:hover {
    overflow: visible;
}

.sidefixedM .sideitem1:hover .sideins {
    bottom: calc(105%);
    opacity: 1;
}

.sidefixedM .sideitem1 .p,
.sidefixedM .sideitem2 .p {
    font-size: 12px;
}

.sidefixedM .sideitem1 .p a,
.sidefixedM .sideitem2 .p a {
    color: #fff;
}

.sidefixedM .sideitem1 .icon-box,
.sidefixedM .sideitem2 .icon-box {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.sidefixedM .sideitem1 .icon-box p,
.sidefixedM .sideitem2 .icon-box p {
    margin-top: 4px;
    font-size: 12px;
    word-break: break-word;
    background: transparent !important;
    color: #fff;
}

.sidefixedM .sideitem1 svg {
    width: 20px;
    height: 20px;
}

.sidefixedM .sideitem1 .sideins {
    border-radius: 6px;
    background: #B02220;
    padding: 5px;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.sidefixedM .sideitem1 .sideins p {
    line-height: 50px;
    white-space: nowrap;
}

.sidefixedM .sideitem2 .icon-box {
    padding: 5px;
}

.sidefixedM .sideitem2 .icon-box svg {
    width: 15px;
    height: 10px;
    margin-bottom: 2px;
    margin-top: 5px;
}

@media only screen and (max-width: 850px) {
    .sidefixed {
        display: none;
    }

    .sidefixedM {
        display: flex;
    }

    .footer {
        margin-bottom: 61px;
    }
}

@media only screen and (max-width: 767px) {

    .sidefixedM .sideitem1 .icon-box,
    .sidefixedM .sideitem2 .icon-box {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}