:root {
    --size-safearea: 1200px;
    --size-globalnav-height: 72px;
    --size-grid-gap: 16px;
    --size-globalnav-item-height: 240px;
    --color-black: #2a2b2e;
    --color-red: #c03939;
    --color-grey-gray: rgba(62, 63, 70, 0.6);
    --color-grey-black: rgba(62, 63, 70, 0.8);
    --color-background: #f8f9fa;
    --color-link: #198af2;
    --color-white: white;
    --color-blue: #198af2;
    /*font-family: Inter, sans-serif;*/
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
}

body {
    position: relative;
    margin: 0;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-font-feature-settings: 'kern';
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    text-align: left;
    font-family: -apple-system,Inter, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1,
h2,
h3,
h4,
h6,
h5 {
    font-weight: 600;
    margin: 0;
    color: var(--color-black);
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

span {
    font-size: 0;
}

/******S首页*******/
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}
button {
    outline: none;
    cursor: pointer;
}
.loading-button {
    margin: 36px auto;
    display: block;
    border: none;
    background: none;
    display: flex;
    gap: 8px;
    font-size: 16px;
    align-items: center;
    color: #198af2;
    stroke: #198af2;
}
.hp-adv-text-hide > .hp-adv-item-text * {
    opacity: 0;
}
.hp-adv-text-light > .hp-adv-item-text * {
    color: white !important;
}
.gl-arrow {
    margin-left: 8px;
    stroke: currentColor;
    stroke-width: 1.2px;
    width: auto;
    overflow: visible;
}
.cta-link > a {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cta-link span {
    margin-left: 4px;
}
/******E首页*******/

/******S下载详情页面*******/
.header-with-choose {
    /*padding: 120px 0px 36px 0px;*/
    padding: 146px 0px 36px 0px;
    background-color: #f8f9fa;
}
.header-with-choose-ctn {
    width: 100%;
    max-width: var(--size-safearea);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap:32px;
}
.header-with-choose-ctn > img {
    width: 440px;
    mix-blend-mode: darken;
}
.header-with-choose-text h1 {
    margin-bottom: 24px;
    font-size: 40px;
}
.header-with-choose-text a {
    color: #198af2;
}
.header-with-choose-text svg {
    fill: #198af2 !important;
}
ul {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style: none;
}
/******E下载详情页面*******/

/******S表单输入框*******/
.input-defaul-form {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    height: 48px;
    box-sizing: border-box;
    transition: all 0.3s;
    border: 1px solid #d2d2d200;
    width: 240px;
}
.input-defaul-form > input {
    width: 100% !important;
    background: none;
    border: none;
    outline: none !important;
    font-size: 14px;
}
.textarea-defaul-form {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 4px;
    height: auto;
    box-sizing: border-box;
    transition: all 0.3s;
    border: 1px solid #d2d2d200;
    width: 240px;
}
.textarea-defaul-form > textarea {
    width: 100% !important;
    background: none;
    border: none;
    outline: none !important;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.input-inline-icon-form.active {
    border: 1px solid #d7dcde !important;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 0px 2px #e8f0f5;
}

.input-inline-icon-form:hover {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.input-inline-icon-form > input {
    width: 100% !important;
    background: none;
    border: none;
    outline: none !important;
    font-size: 14px;
}

.input-inline-icon-form > button {
    height: auto;
    line-height: normal;
    padding: 0px;
    background: none !important;
    border: none !important;
    outline: none;
    width: 72px;
    cursor: pointer;
}
.input-inline-icon-form svg {
    width: 20px;
    height: 20px;
}

/* 带有按钮的输入框 */

.input-button-form {
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    height: 56px;
}

.input-button-form > button {
    padding: 16px 32px;
    font-size: 14px;
    white-space: nowrap;
    border: none;
    background-color: var(--color-red);
    color: white;
    border-radius: 2px;
    transition: all 0.2s;
}

.input-button-form > input {
    box-sizing: border-box;
    width: 100%;
    margin-right: 24px;
    padding: 0 16px 0 16px;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    transition: all 0.3s;
    border: 1px solid #d2d2d200;
    border-radius: 2px;
    font-size: 14px;
}

.input-button-form > input:hover {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.input-button-form > input.active {
    border: 1px solid #d7dcde !important;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 0px 2px #e8f0f5;
}
/******E表单输入框*******/
/***&&&&&&&&&&&&&&&&$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&&&&&以上内容兼容旧页面需要保持&&&&&&&&&&&&&&&&$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&&&&&***/

/***&&&&&&&&&&&&&&&&$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&&&&&以下内容为新版本的二级导航、底部导航样式&&&&&&&&&&&&&&&&$$$$$$$$$$$$$$$$$$$$&&&&&&&&&&&&&&***/
/*********************************************** S secondNav*****************************************************/
.navBuy {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px calc((100% - 1200px) / 2) 10px;
    /*padding: 19px calc((100% - 1200px) / 2);*/
    background-color: #2b2b2b;
    box-sizing: border-box;
    font-weight: 600;
    position: fixed;
    top: 72px;
    z-index: 99;
}

.navBuy a {
    color: white;
    text-decoration: none;
}

.navBuy > h4 {
    font-size: 16px;
    color: white;
}

.navBuyLinkCtn {
    display: flex;
    margin-right: 24px;
    color:#ffffff80;
}

.navBuyLinkCtn > a {
    font-size: 14px;
    margin-left: 24px;
    text-decoration: none;
    padding: 8px;
    color:#ffffff80;
}

.navBuyLinkCtn .current{
    background: #3C3C3C;
    border-radius: 4px;
    color:#ffffff;
}

.navBuyLinkCtn > a:active,
.navBuyLinkCtn > a:visited {
    opacity: 1;
}

.navBuyButton {
    padding: 8px 16px;
    background-color: #c03939;
    font-size: 14px;
    border-radius: 2px;
    border-radius: 80px;
    z-index: 1;
}

.navBuy > img {
    display: none;
}

@media screen and (max-width: 1024px) {
    .navBuy {
        display: grid;
        align-items: center;
        justify-content: space-between;
        padding: 0px 16px;
        background-color: #2b2b2b;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 48px 30vh;
        height: 48px;
        /*height: 76px;*/
        grid-row-gap: 16px;
        transition: all 0.3s;
        overflow: hidden;
        z-index:100;
    }
    .navBuy.active {
        height: 100vh;
    }
    .navBuy > h4 {
        font-size: 12px;
        grid-column: 1 / 2;
    }
    .navBuyLinkCtn {
        margin-right: unset;
        grid-column: 1 / 4;
        flex-direction: column;
        height: 100%;
        /*justify-content: space-between;*/
        justify-content:flex-start;
        pointer-events: none;
    }
    .navBuyLinkCtn.active {
        pointer-events: auto;
    }
    .navBuyLinkCtn > a {
        padding: 12px 0px;
        font-size: 13px;
        margin-left: unset;
    }
    .navBuyLinkCtn .current{
        background: unset;
        border-radius: unset;
    }
    .navBuy > img {
        display: block;
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin: 0 auto;
        transition: all 0.3s;
    }
    .navBuy > img.active {
        transform: rotateX(180deg);
    }
    .navBuy > a {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        justify-self: flex-end;
    }
    .navBuyButton {
        padding: 6px 8px;
        background-color: #c03939;
        font-size: 13px;
    }

    .header-with-choose-ctn {
        flex-direction: column;
    }
    .header-with-choose-ctn>img {
        width: 60%;
    }
}
/*********************************************** E secondNav*****************************************************/

/*********************************************** S footer*******************************************************/
footer{
    display:flex;
    justify-content:center;
    background-color:rgb(23 23 23) !important;/*防止其他页面设置影响*/
    padding:96px 16px;
    margin-top:80px;
}

/* 在线支持按钮 */
.onlineServiceBtnCtn {
    position: fixed;
    right: 40px;
    bottom: 22px;
    z-index: 1;
}
.onlineServiceBtn {
    height: 55px;
    width: 47px;
    display: flex;
    align-items: center;
    background-color: #de4045;
    border-radius: 40px;
    padding: 0px 0px 0px 8px;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 12px 12px 25px #b75f5f52;
    box-sizing: content-box;
}
.onlineServiceBtn > img {
    width: 39px;
    height: 39px;
    margin-right: 12px;
    flex-shrink: 0;
}
.onlineServiceBtnCtn:hover .onlineServiceBtn {
    /*width: calc(47px + 83px + 8px) !important;*/
    width: auto;
    padding-right: 10px;
}
.onlineServiceBtnCtn.dialogBox {
    width: 24px;
    height: 14px;
    background-color: white;
    position: absolute;
    left: 35px;
    top: 5px;
    border-radius: 9px;
    box-shadow: 2px 6px 10px #00000029;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.onlineServiceBtnCtn.dialogBox > div {
    width: 3px;
    height: 3px;
    background-color: black;
    border-radius: 2px;
    margin-right: 2px;
}
.onlineServiceBtnCtn.dialogBox > div:nth-last-child(1) {
    margin-right: 0px;
}

.footerContainer {
    width:var(--nav-bar-size-width);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    /*background: #2d2d2d;*/
    color: #ffffff;
    /*padding: 48px calc((100% - 1200px + 32px) / 2) 100px;*/
}
/*菜单导航栏*/
.footerNavContainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 48px;
}
.footerNavColumn {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.footerNavColumnHeader {
    display: grid;
    grid-template-columns: calc(100% - 18px) 18px;
    justify-content: center;
    align-items: center;
}
.footerNavColumnHeaderText {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.footerNavColumnHeaderIcon {
    font-size: 24px;
    font-weight: 200;
    text-align: center;
    opacity: 0;
}
.footerNavColumnBody {
    display:flex;
    flex-direction:column;
    gap:16px;
}
.footerNavColumnItem {
    display: block;
    color: #ffffff;
    font-size: 14px;
    /*margin-top: 10px;*/
    cursor: pointer;
    text-decoration: none;
    opacity:0.6;
    line-height:125%;
}
.footerNavColumnItem:hover {
    text-decoration: underline;
}

/*订阅栏*/
.footerContainer2 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #262626;
    align-items: flex-end;
    width: 100%;
}

.footerSubscribeContainer {
    display: flex;
    flex-direction: column;
}
.footerSubscribeHeader {
    /*background: #2d2d2d;*/
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.footerSubscribeForm {
    display: flex;
    justify-content: space-between;
    /*padding: 0 0 0 10px;*/
    background-color: #f5f5f5;
    border-radius: 4px;
    height: 48px;
    box-sizing: border-box;
    transition: all 0.3s;
    border: 1px solid #d2d2d200;
    margin-top: 16px;
}
.footerSubscribeForm.suc {
    background-color: #f6fffb !important;
    border: 1px solid #d0ecdeb3 !important;
    pointer-events: none;
}
.footerSubscribeForm.fail {
    background-color: #fff4f4 !important;
    border: 1px solid #e78080 !important;
}
.footerSubscribeInput {
    box-sizing: border-box;
    width: 234px;
    /*margin-right: 24px;*/
    padding: 0 16px;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    transition: all 0.3s;
    /*border: 1px solid #e8f0f5;*/
    border-radius: 2px;
    font-size: 14px;
    color:black;
}
.footerSubscribeInput:hover {
    background-color: #ffffff;
    /*border: 1px solid #e0e0e0;*/
}
.footerSubscribeInput.active {
    border: 1px solid #d7dcde !important;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 0px 2px #e8f0f5;
}
.footerSubscribeButton {
    height: auto;
    line-height: normal;
    padding: 0px 16px;
    background: none !important;
    border: none !important;
    outline: none;
    /*width: 72px;*/
    cursor: pointer;
}
.footerSubscribeIcon {
    /*margin-bottom: 4px;*/
    stroke: rgba(62, 63, 70, 0.6);
}
.footerSubscribeIcon.suc {
    stroke: green;
}
.footerSubscribeButton img {
    vertical-align: middle;
    width: 24px !important;
}

/*社交媒体图标*/
.footerSocial {
    display: flex;
}
.footerSocialItem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 24px;
}
.footerSocialItemIcon {
    width: 24px;
    height: 24px;
    /*fill: white;*/
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
}

@media only screen and (max-width: 3840px) and (min-width: 1024px) {
    .footerSocialItemIcon:hover + .footerSocialItemImg {/*社媒图标*/
        opacity: 1;
    }
    .footerLanguage:hover > .footerLanguageListContainer,
    .footerLanguageListContainerActive {/*语言下拉*/
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) translateY(0px) !important;
        pointer-events: auto;
        z-index:auto;
    }
}

.footerSocialItemImg {
    position: absolute;
    width: 180px;
    bottom: 40px;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    box-shadow: 0px 0px 80px #000000d9;
    max-width:unset;
}

/*版权信息*/
.footerCopyrightContainer {
    /*height: 53px;*/
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    font-size: 12px;
    color: #ffffff90;
    padding-top:24px;
}
.footerCopyright {
    display: flex;
    align-items: center;
}
.footerCopyrightImg {
    /*width: 72px;*/
    /*transform: translateX(-8px);*/
    height:20px;
    width: 54px;
    max-width:fit-content;
}
.footerCopyrightInfo {
    line-height: 160%;
    margin-right: 24px;
}
.footerCopyrightLinkContainer {
    display: flex;
    gap:8px;
}
.footerCopyrightLink {
    display: block;
    cursor: pointer;
    font-size: 12px;
    color: #FFFFFF;
    /*margin-right: 8px;*/
}
.footerCopyrightLink:hover {
    text-decoration: underline;
}

/*语言列表*/
.footerLanguage {
    position:relative;
    height: 100%;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s;
}
.footerLanguageSelected {
    font-size: 12px;
    color: #ffffff;
    /*margin-right: 8px;*/
    cursor: pointer;
    display: flex;
    align-items: center;
    /*padding-top: 10px;*/
}
.footerLanguageSelected:hover {
    text-decoration: underline;
}

.footerLanguageSelected > img{
    opacity:1;
}

.footerLanguageListContainer {
    position: absolute;
    display: flex;
    flex-direction: column;
    right:0px;
    bottom:0;
    font-size: 14px;
    /*padding: 16px;*/
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(8px);
    transition: all 0.3s;
    align-items: center;
    pointer-events: none;
    z-index:-1;
}

.footerLanguageListContainer:lang(cn){
    bottom:24px;
}


.footerLanguageListContainerActive {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) translateY(0px) !important;
    pointer-events: auto;
    z-index:auto;
}
.footerLanguageList {
    padding: 16px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #f0f0f0;
    box-shadow: 15px -16px 48px rgba(0 0 0 0.1);
    /*width: calc(100% - 32px);*/
    box-shadow: 0px 0px 80px #00000099;
    white-space:nowrap;
    pointer-events:none;
}
.footerLanguageListItem {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    color: #000000;
    opacity: 1;
    text-decoration: none;
    pointer-events:all;
}
.footerLanguageListItem:last-child {
    margin-bottom: 0;
}

.footerLanguageListItem:hover {
    color: #c03939;
}

/* 08.04 右下角联系我们开始 */
.footer-service-contact-button {
    padding: 12px 24px;
    color: white;
    background-color: #C03939;
    border-radius: 999px;
    width: fit-content;
    cursor: pointer;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    grid-gap: 8px;
    font-size: 16px;
    font-weight: 400;
    pointer-events: all;
    line-height:125%;
  }

  .footer-service-contact-ctn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999999;
    max-width: calc(100vw - 32px);
    pointer-events: none;
  }

  .footer-service-contact-card {
    padding: 24px;
    border-radius: 16px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    background-color: white;
    box-shadow: 10px 40px 66px 0px rgb(0 0 0 / 16%);
    display: grid;
    grid-gap: 24px;
    transform: translateY(20px);
    transition: all 0.4s;
    margin: 0 0 16px;
    pointer-events: none;
  }

  #footer-service-contact-button-input {
    opacity: 0;
    visibility: visible;
    width: 0;
    height: 0;
  }

  #footer-service-contact-button-input:focus-visible + * + * {
    box-shadow: 0px 0px 0px 2px white, 0px 0px 0px 4px #de4045;
  }

  #footer-service-contact-button-input:checked + * {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .footer-service-contact-card a {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: auto auto;
    width: fit-content;
    align-items: center;
    font-weight: 600;
    color: black;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-service-contact-card svg{

    fill: currentColor;
  }

  .footer-service-contact-card a:hover{
    color: #de4045;
  }

  .footer-service-contact-button-icon {
    fill: currentColor;
    transition: all 0.4s;
  }

  #footer-service-contact-button-input:checked + * + .footer-service-contact-button > svg {
    transform: rotateX(180deg);
  }

/* 08.04 右下角联系我们结束 */

/*@media (hover: hover) {*/
/*    .footerSocialItemIcon:hover {*/
/*        opacity: 1;*/
/*    }*/
/*}*/



/*20230621 S 新增联系电话*/
.popupMask{
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 24px;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index:99999999;
}

.phoneContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 16px;
    max-width: 480px;
    width: calc(100vw - 96px);
    /*height: 358px;*/
    background: #FFFFFF;
    border-radius: 16px;
}

.repairPhoneContainer{
    width:100%;
}

.repairPhoneCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8PX;

    margin-bottom: 16PX;
    padding-bottom: 16PX;
    border-bottom: 1PX solid #F0F2F5;
}

.repairPhoneCard:nth-child(3){
    border-bottom:unset;
    margin-bottom:unset;
}

.repairPhoneTitle{
    font-weight: 600;
    font-size: 14PX;
    line-height: 130%;
    text-align: center;
    color: #2F3133;
}
.repairPhoneNumber{
    font-weight: 600;
    font-size: 20PX;
    line-height: 130%;
    text-align: center;
    color: #2F3133;
}
.repairPhoneNote{
    font-size: 12PX;
    line-height: 130%;
    text-align: center;
    color: #8D9399;
}
.btn_close_popupMask{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 50px;
    height: 50px;
    border-radius: 80px;
    cursor:pointer;
    background-image: url("https://zhiyun-website-shenzhen.oss-cn-shenzhen.aliyuncs.com/icon/close-circle.png");
    background-repeat: no-repeat;
}
.btn_close_popupMask:hover{
    background-image: url("https://zhiyun-website-shenzhen.oss-cn-shenzhen.aliyuncs.com/icon/close-circle-hover.png");
}
/*20230621 E 新增联系电话*/

/*20240424 S增加公安网备案号*/
.footerCnCopyright{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.footerCnCopyrightRow1{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.footerCnCopyrightRow1>div{
    display:flex;
    gap:16px
}
.footerCnCopyrightRow2{
    display:flex;
    gap:4px;
}
/*20240424 E增加公安网备案号*/


.copyGap{
    display:flex;
    gap:16px;
}

/**移动端**/
@media only screen and (max-width: 1200px) {
    .navBuy{
        padding-left:16px;
        padding-right:16px;
    }

    .footerContainer {
        padding: 48px 16px;
    }
}

/**移动端**/
@media only screen and (max-width: 1024px) {
    footer{
        padding:0;
    }

    /* 08.04 右下角联系我们开始 */
    .footer-service-contact-ctn {
        right: 16px;
        bottom: 16px;
      }
    /* 08.04 右下角联系我们结束 */
    .footerContainer {
        padding: 0px 16px;
    }
    .footerNavContainer {
        flex-direction: column;
        margin-bottom:16px;
    }
    .footerNavColumn {
        padding: 16px 0px;
        border-bottom: 1px solid #484848;
        gap:0;
    }
    .footerNavColumnHeaderText {
        font-size: 16px;
        /*font-size:1rem;*/
    }
    .footerNavColumnHeaderIcon {
        opacity: 1;
    }

    /*.footerSocialItemNoHref .footerSocialItemIcon:hover {*/
    /*    opacity: 1;*/
    /*}*/
    /*.footerSocialItemIcon:hover + .footerSocialItemImg {*/
    /*    display: none;*/
    /*    opacity: 0;*/
    /*}*/
    .footerSocialItem {
        position:unset;
    }
    .footerSocialItemImg {
        bottom: 40px;
        left:calc((100vw - 200px) / 2);
    }
    /*.footerSocialItemNoHref*/
    /*    > .footerSocialItemIcon:hover*/
    /*    + .footerSocialItemImg {*/
    /*    display: block;*/
    /*    opacity: 1;*/
    /*}*/
    .footerSocialItemWeixin > .footerSocialItemImg {
        left: 0;
    }
    .footerSocialItem:nth-child(1) {
        margin-left: 0;
    }
    .footerSocialItem:nth-child(1) .footerSocialItemImg {
        left: calc((100vw - 200px) / 2);
    }
    .iconOpen {
        animation: iconOpen 300ms;
        animation-iteration-count: 1;
        animation-fill-mode: forwards !important;
        transform-origin: center center;
    }
    .iconClose {
        animation: iconClose 300ms;
        animation-iteration-count: 1;
        animation-fill-mode: forwards !important;
        transform-origin: center center;
    }
    @keyframes iconOpen {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(180deg);
        }
    }
    @keyframes iconClose {
        from {
            transform: rotate(180deg);
        }
        to {
            transform: rotate(0deg);
        }
    }

    .footerNavColumnBody {
        display: flex;
        height: 0px;
        overflow: hidden;
    }
    .footerNavColumnItem {
        height: 24px;
    }
    .footerNavColumnBody .footerNavColumnItem:first-child{
        margin-top:16px;
    }
    .footerNavColumnBodyActive {
        transition: all 300ms;
    }

    .footerContainer2 {
        flex-direction: column;
        align-items: unset;
        padding-bottom: 12px;
    }
    .footerSubscribeInput {
        width: 90%;
    }

    .footerSocial {
        margin-top: 16px;
        position:relative;
    }

    .footerCopyrightContainer {
        position: relative;
        flex-direction: column;
        align-items: unset;
        padding: 16px 0px;
        height: auto;
    }
    .footerCopyright {
        align-items: flex-start;
        flex-direction: column;
    }
    .footerCopyrightInfo {
        display: block;
        margin-bottom: 8px;
        margin-right: 0px;
    }

    .footerLanguageListContainer {
        visibility: unset;
        width: 180px;
        bottom:38px;
        left:-16px;
    }
    .footerLanguage {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .input-button-form {
        flex-direction: column;
        height: auto;
    }
    .input-button-form > input {
        height: 48px;
        margin-right: auto;
        margin-bottom: 16px;
    }
    .input-button-form > button {
        padding: 14px 32px;
    }

    .onlineServiceBtn {
        width: auto;
        padding-right: 10px;
    }
    .onlineServiceBtnCtn {
        right: 8px;
        bottom: 8px;
    }

    /*20240424 S增加公安网备案号*/
    /*.footerCnCopyright{*/
    /*    display:flex;*/
    /*    flex-direction:column;*/
    /*    gap:8px;*/
    /*}*/
    /*.footerCnCopyrightRow1{*/
    /*    display:flex;*/
    /*    flex-direction:column;*/
    /*    gap:4px;*/
    /*}*/
    .footerCnCopyrightRow1>div,
    .footerCnCopyrightRow1>div>div:first-child{
        flex-direction:column;
        gap:0;
    }
    .footerCnCopyrightRow2{
        flex-wrap:wrap;
    }
    /*20240424 E增加公安网备案号*/

    .exploreContainer{
        text-align:start;
    }

    .copyGap{
        gap:0;
    }


    .opacity_0{
        opacity:1;
    }
    .opacity_100{
        opacity:1;
        pointer-events: all;
    }

    .footerSocialItemWeixin .footerSocialItemImg{
        left:0 !important;
    }

    /*移动端面通过点击切换打开关闭*/
    /*.lang_checkbox{*/
    /*    position:absolute;*/
    /*    width:120px;*/
    /*    height:24px;*/
    /*    !*opacity:0;*!*/
    /*}*/
    /*.lang_checkbox:checked + .footerLanguageListContainer {*/
    /*    opacity: 1;*/
    /*    pointer-events: all;*/
    /*}*/

}
/*********************************************** E footer*******************************************************/
