html,body {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

.wholePage {
    line-height: 1.4;
    font-size: 14px;
    box-sizing: border-box;
    overflow-x: hidden;
    /* max-width: 100%; */
}
::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: solid 2px #fff;
    background: #bcbab7;
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: #99a3a6;
}

a:hover {
    text-decoration: none;
}

.tc {
    text-align: center;
}

.flex {
    display: flex;
}

.direction-row {
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-86-56 {
    padding: 86px 56px;
}

.btn-border {
    border: 1px solid #0078D4;
    color: #004578;
}

.btn-radius {
    display: inline-block;
    min-width: 146px;
    height: 38px;
    line-height: 38px;
    box-sizing: content-box;
    font-size: 18px;
    font-weight: 600;
    border-radius: 47px;
    padding: 5px 0px;
    box-shadow: 0px 3.2px 7.2px 0px rgba(0, 0, 0, 0.13), 0px 0.6px 1.8px 0px rgba(0, 0, 0, 0.10);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(280.75deg, #0078D4 0%, #9692FF 94.81%);
    border: 1px solid transparent;
}

.btn_default {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    border: 1px solid #827DFF;
    background: rgba(255, 255, 255);
    color: #020057;
    font-weight: 600;
    padding: 0 12px;
}

.title_h2_z {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #8F58AB -8.93%, #3D60E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.layout-header {
    width: 100%;
    height: 60px;
    padding: 14px 32px;
    color: #3B3A39;
    background-color: white;
}

.stickyHeader {
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid lightgray;
}

.headNoWarp {
    flex-wrap: nowrap;
}

.headerLogo {
    display: flex;
    align-items: center;
}

.headerLogo .divider {
    margin: 0 18px;
    width: 1px;
    height: 74%;
    padding: 6px 0;
    background: black;
}

.headerLogo .header-logo-word {
    font-size: 20px;
    color: black;
    position: relative;
    margin-right: 36px;
}
.headerLogo .header-logo-word a {
    color: black;
}

.headRightAction {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
}

.headerNav a {
    color: #313230;
}

.headerIdentity a {
    margin-left: 12px;
    width: 78px;
    height: 30px;
    line-height: 18px;
}




/* footer */
.layOutFooterCopy {
    padding: 26px 54px;
    font-size: 12px;
}

.layOutFooterCopy a {
    color: #6a6a6a;
}