:root {
    /* --bs-font-family-roboto: Roboto;
    --bs-font-family-gothic: "Microsoft Yahei, Arial,sans-serif,PingFang SC"; */
    --bs-font-color-white: #fff;
    --bs-font-color-black: #000;
}

body,button, input, select, textarea,h1 ,h2, h3, h4, h5, h6 { font-family: Microsoft Yahei, Arial,sans-serif,PingFang SC;}

body {
    margin: 0;
    background: #f5f8ff;
    font-style: normal;
}

/*-----共通部分样式-----*/
@media (max-width: 1240px) {
    .main-container {
        margin: 0 auto;
        max-width: 1240px;
    }
    #personalSection {
        position: fixed;
        right: 0px;
        top: 55px;
        z-index: 999;
    }
}
@media (min-width: 1241px) and (max-width: 1920px) {
    .main-container {
        margin: 0 auto;
        width: 1240px;
    }
    #personalSection {
        position: fixed;
        right: 0px;
        top: 55px;
        z-index: 999;
    }
}

.form-select {
    width: 100% !important;
}

.col {
    padding: 0;
    margin: 0;
}

.border-radius-100 {
    border-radius: 100px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-2 {
    border-radius: 2px;
}

.border-left-radius-100 {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.border-right-radius-100 {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.btn-style-30 {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 100px;
}

.btn-style-50 {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 100px;
}

.btn-style-50 {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 100px;
}

.btn-style-gradient-01 {
    background: linear-gradient(90deg, #f5ae54 0%, #f67000 100%);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 100px;
    min-width: 100px;
}

.btn-style-gradient-02 {
    background: linear-gradient(90deg, #ffcd8d 0%, #ff9944 100%);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 100px;
}

.btn-style-opacity-white-0 {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 100px;
}

.btn-style-blue-01 {
    background-color: #0094D9;
    border-radius: 100px;
}

.btn-style-opacity-orage-0 {
    background-color: transparent;
    opacity: 0.3;
    border-width: 1px;
    border-style: solid;
    border-color: #f99000;
    border-radius: 100px;
}

.btn-style-opacity-border-grey {
    border: 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}

.flex {
    /*flex 布局*/
    display: flex;
    /*实现垂直居中*/
    align-items: center;
    /*实现水平居中*/
    justify-content: center;
}

.vr-white-b-15 {
    width: 2px;
    height: 15px;
    background-color: #ffffff;
    opacity: 1;
    display: inline-block;
    align-self: stretch;
    margin: 0 8px;
}

.bg-opacity-85 {
    background: rgba(255, 255, 255, 0.15);
}

.border-radius-20 {
    border-radius: 20px;
}

.form-control:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

/*header样式*/
/*顶部背景图*/
.header-container {
    background-image: url("../image/newbanner.jpg");
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    transition: background-image 0.3s;
    height: 100vh;
    min-height: 825px;
}

/*logo*/
.navbar-logo {
    height: 75px;
    padding-top: 2px;
}

/*导航栏样式*/
.header {
    height: 80px;
    background: rgba(0, 0, 0, 0);
    transition: background 1s;
    /* position: sticky; */
    top: 0;
}

#navbarSection .nav {
    background: none;
}

#navbarSection .nav .nav-link {
    margin-bottom: 1px;
    background: none;
    border: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    color: rgba(255, 255, 255, 1);
    font-family: var(--bs-font-family-gothic);
    font-size: 16px;
}

#navbarSection .nav-link:hover {
    color: #ffffff;
    font-weight: 500;
    border: 0;
    border-bottom: 2px #ffffff solid;
}

#navbarSection .nav-link:focus {
    color: #ffffff;
    font-weight: 500;
    border: 0;
    border-bottom: 2px #ffffff solid;
}

#navbarSection .navbar-nav .active {
    color: #ffffff;
    font-weight: 500;
    border: 0;
    border-bottom: 2px #ffffff solid;
}

/* 应客户要求，取消了“关于我们”下方的底线 */
.aboutUs .nav-link:hover {
    border-bottom: none !important;
}

#navbarNav {
    margin-left: 0px;
}

#navbarSection button {
    color: #ffffff;
    font-size: 16px;
    line-height: 19px;
}

#navbarSection a {
    color: var(--bs-font-color-white);
    font-family: var(--bs-font-family-gothic);
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
}

.header-advatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.noimage {
    background: grey;
}

#searchInputGroup .dropdown-item,
#searchButtonGroup .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
#searchInputGroup .dropdown-item:hover,
.dropdown-item:focus,
#searchButtonGroup .dropdown-item:hover,
.dropdown-item:focus {
    color: #1890ff;
    background-color: #e6f7ff;
}
#searchInputGroup .dropdown-item.active,
.dropdown-item:active,
#searchButtonGroup .dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #e9ecef;
}

#searchButtonGroup .dropdown button {
    height: 32px;
    /* width: 95px; */
}

#searchInputGroup .form-control {
    color: rgba(255, 255, 255, 0.65);
    height: 32px;
}

#searchInputGroup .form-control:focus {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.15);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.tooltip-inner {
    font-family: var(--bs-font-family-gothic);
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #1890ff;
    font-size: 14px;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

/**/
#descriptSection .description-title {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 600;
    font-size: 55px;
    color: var(--bs-font-color-white);
    display: block;
    min-height: 60px;
}

#descriptSection .description-detail {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-size: 18px;
    color: var(--bs-font-color-white);
    min-height: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-align: justify;
}

#startBtnSection button {
    width: 130px;
    height: 55px;
    color: var(--bs-font-color-white);
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    font-family: var(--bs-font-family-gothic);
}

.function-panel {
    background: rgba(255, 255, 255, 0.14);
    margin-top: 150px;
}

.function-panel .card:hover .shade-card {
    opacity: 1;
}

.function-panel .card-body {
    height: 144px;
    border-radius: 20px;
}

.function-panel .card-title {
    font-family: var(--bs-font-family-gothic);
    font-weight: bold;
    font-size: 24px;
}

.function-panel .card-text {
    font-family: var(--bs-font-family-gothic);
    font-weight: normal;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shade-card {
    background: linear-gradient(180deg, rgba(0, 21, 213, 0.8) 0%, rgba(3, 104, 255, 0.8) 100%);
    opacity: 0;
}

.shade-text > i {
    color: var(--bs-font-color-white);
    font-size: 1.75em;
}

.shade-text {
    font-family: var(--bs-font-family-gothic);
    color: var(--bs-font-color-white);
    font-size: 24px;
}
.arrow-right {
    width: 29px;
    height: 29px;
    color: var(--bs-font-color-white);
    text-align: center;
}

#cloudToolCard {
    background: linear-gradient(270deg, #c2d3ff -0.15%, #ecf1ff 100%);
    box-shadow: 0px 0px 16px rgba(0, 15, 153, 0.12);
    cursor: pointer;
}
#cloudFlowCard {
    background: linear-gradient(270.18deg, #efe4f4 0.03%, #f3eeeb 99.87%);
    box-shadow: 0px 0px 16px rgba(0, 15, 153, 0.12);
    cursor: pointer;
}
#cloudCourseCard {
    background: linear-gradient(270deg, #efefff 0%, #cfd4ff 99.85%);
    box-shadow: 0px 0px 16px rgba(0, 15, 153, 0.12);
    cursor: pointer;
}
#cloudMarketCard {
    background: linear-gradient(270deg, #def3fc -0.15%, #f0fbff 100%);
    box-shadow: 0px 0px 16px rgba(0, 15, 153, 0.12);
    cursor: pointer;
}

/*下箭头动画*/
@-moz-keyframes myMove {
    0% {
        padding-top: 30px;
    }
    100% {
        padding-top: 50px;
        color: #ffffff;
    }
}
@-webkit-keyframes myMove {
    0% {
        padding-top: 30px;
    }
    100% {
        padding-top: 50px;
        color: #ffffff;
    }
}
@-o-keyframes myMove {
    0% {
        padding-top: 30px;
    }
    100% {
        padding-top: 50px;
        color: #ffffff;
    }
}
@keyframes myMove {
    0% {
        padding-top: 30px;
    }
    100% {
        padding-top: 50px;
        color: #ffffff;
    }
}
.section-title {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
}

.content-height {
    min-height: 345px;
    height: 345px;
    width: 345px;
    border-radius: 20px;
}

.card-frame {
    border-radius: 20px;
}

.card-frame img {
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
}

.article-img-div {
    height: 165px;
    border-radius: 10px;
}

.article-title {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.9);
}

.article-content {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    color: rgba(0, 0, 0, 0.9);
    text-align: justify;
    display: inline-block;
    width: 100%;
}

.link-section-bg {
    background-size: 100% 100%;
    background: #2a2a32;
}

#interlinkageSection .list-group,
.list-group-item {
    background: #2a2a32;
    color: rgba(255, 255, 255, 0.8);
    border: 0;
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
}

.name-line {
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#interlinkageSection .list-title {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.qr-img {
    width: 100px;
    height: 100px;
}

.link-div {
    background: rgba(0, 0, 0, 0.32);
    border-radius: 10px;
}

.link-div span > a {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.link-div span > i {
    font-style: normal;
    font-weight: bold;
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-section-bg {
    background: #000000;
}

.copyright-section-bg span {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
}

.to-top-container {
    position: fixed;
    display: table-cell;
    bottom: 50px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 8px;
    float: right;
    cursor: pointer;
    display: none;
    z-index: 10;
    border-radius: 100px;
}

.to-top-container i {
    color: #ffffff;
    font-size: 1.4em;
}

.to-top-container span {
    color: #ffffff;
    font-family: ".PingFang SC";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
}

section.feedback-container,
section.wchat-container {
    float: right;
}
.wchat-container {
    position: fixed;
    /*right: -94px;*/
    right: 0;
    bottom: 0px;
    _position: absolute;
    width: 35px;
    height: 10px;
    top: 52%;
    z-index: 99999999998;
    _margin-bottom: 0px;
    transition: all 0.5s ease;
}

.wchat-container .hoverbtn {
    width: 48px;
    height: 58px;
    cursor: pointer;
    position: absolute;
    top: 60px;
    margin-top: -160px;
    right: 0px;
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}

.wchat-content-container span {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #000000;
}

.wchat-content-container {
    display: flex;
    width: 114px;
    height: 134px;
    background: #ffffff;
    order: 9998;
    right: 49px;
    margin-top: -58px;
    position: fixed;
    padding: 25px 16px 25px 16px;
    border-radius: 4px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12);
}

.wchat-content-container .qr-img {
    width: 98px;
    height: 98px;
}

.wchat-content-container .scan-qr {
    width: 100%;
    height: auto;
}

.side-tool {
    width: 48px;
    height: 58px;
    color: #fff;
    border-radius: 4px 0 0 4px;
    line-height: 32px;
    -webkit-box-shadow: -2px 0 8px rgb(0 0 0 / 15%);
    box-shadow: -2px 0 8px rgb(0 0 0 / 15%);
    background-color: #f5ae54;
    font-size: 32px;
    text-align: center;
    padding-top: 8px;
}
.qr-title-text {
    font-size: 14px;
    transform: scale(0.83, 0.83);
    *font-size: 10px;
    line-height: 16px;
}

.wchat-content {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 8px;
    color: #ffffff;
}

.feedback-container {
    position: fixed;
    right: -305px;
    bottom: 0px;
    _position: absolute;
    width: 305px;
    top: 50%;
    height: 440px;
    z-index: 99999999999;
    _margin-bottom: 0px;
    transition: all 0.5s ease;
    min-height: 418px;
}

.feedback-container .hoverbtn {
    width: 38px;
    height: 48px;
    cursor: pointer;
    position: absolute;
    left: -48px;
    top: -2px;
    right: 0;
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}
.feedback-container .hoverbtn span {
    width: 30px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    overflow: hidden;
    float: left;
}

.feedback-content-container {
    display: flex;
    width: 305px;
    height: 418px;
    margin-top: -170px;
    background: #f99000;
    border-radius: 20px 0px 0px 20px;
    order: 9999;
    position: absolute;
    padding: 25px 16px 25px 16px;
}

.feedback-content-container .feedback-content {
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 24px 16px 30px 16px;
    color: #ffffff;
}

#feedbackSubmitBtn {
    width: 120px;
    align-items: center;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    background: none;
    color: #ffffff;
    font-size: 16px;
    height: 32px;
    line-height: 0.5;
}

.feedback-content form {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    height: 100%;
}

.feedback-content form label {
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
}

.feedback-content form span {
    font-size: 10px;
    line-height: 16px;
}

.description-span a {
    color: #1890ff;
}

.feedback-content .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-size: 14px;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.feedback-content .dropdown-item:hover,
.dropdown-item:focus {
    color: rgba(0, 0, 0, 0.85);
    background-color: #e9ecef;
}
.feedback-content .dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #e9ecef;
}

section.personal-container {
    background-size: 100% 100%;
    max-height: 280px;
}

.personal-body {
    padding: 12px 16px;
    float: right;
    background: #ffffff;
    border-radius: 4px;
}

.advatar-div {
    position: relative;
}

.advatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.advatar-vip-mark {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 20px;
    right: 0px;
}

.vip-mark {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 25px;
    right: -5px;
}

#personalSection hr {
    margin: 11px 0px;
}

#personalSection span,
a {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

#personalSection .user-name-div {
    width: 210px;
    display: flex;
    justify-content: space-between;
}

#personalSection .account-span-left {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

#personalSection .account-span-right {
    font-family: var(--bs-font-family-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    color: #606060;
}

#personalSection .vip-operation {
    color: #1890ff;
}

#personalSection a:hover :focus {
    color: #1890ff;
}
#personalSection a {
    text-decoration-line: none;
}

.vip-service {
    width: 25px;
    height: 25px;
    /*border-radius: 50%;*/
}

.vip-deadline {
    background: #fff5ec;
    border-radius: 4px;
    font-size: 12px;
    height: 32px;
}

#operationSection {
    font-family: var(--bs-font-family-gothic);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

#operationSection i {
    font-size: 1.55em;
}

.nav-tabs {
    border-bottom: 0px solid #dee2e6;
}
.nav-tabs .nav-link {
    margin-bottom: 1px;
    background: none;
    border: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    color: rgba(0, 0, 0, 0.9);
    font-family: var(--bs-font-family-gothic);
    font-size: 20px;
    line-height: 50px;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    isolation: isolate;
    color: #24A29B;
    font-weight: 600;
    border: 0;
}
.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #24A29B;
    font-weight: 500;
    border: 0;
    background-color: #f5f8ff;
    border-bottom: 2px #24A29B solid;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.message-container {
    position: absolute;
    z-index: 1999;
    top: 24px;
    right: 24px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 4px;
    width: 384px;
    max-width: calc(100vw - 32px);
}
.message-content span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
}

.message-content .icon-span i {
    font-size: 1.25rem;
    margin-right: 16px;
}

.message-content .close-span {
    float: right;
    font-size: 1.25rem;
    cursor: pointer;
}

.error-message-container {
    position: absolute;
    z-index: 99;
    top: 24px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 4px;
    max-width: calc(100vw - 32px);
}
.error-message-content span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
}

.error-message-content .icon-span i {
    font-size: 1.25rem;
    margin-right: 16px;
}
.feedbackMask {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 100;
}
.warning-message {
    color: red;
    font-size: 12px;
}
.feedbackSelect {
    width: 100%;
}
.shrink {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    z-index: 100;
    width: 100%;
}
.bg-white-important {
    background: #fff !important;
}

.information .col-3:hover {
    transition: 0.5s transform;
    transform: scale(1.05);
}

.information .card {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.information .card-body {
    color: rgba(0, 0, 0, 0.5);
}

.learn-more {
    margin-top: 40px;
    margin-bottom: 99px;
}

.search-button {
    margin-left: 0px !important;
}

.search-input {
    margin-left: 0px !important;
    width: 156px !important;
}

.vertical-line {
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
    margin-top: 6px;
}

.first-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-right: 0.5rem;
}

#suggest {
    font-size: 14px;
}

#email {
    font-size: 14px;
}

.list-group-item {
    padding: 0.5rem 0rem !important;
}
.list-group-item a {
    font-size: 14px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.info-text {
    width: 276px;
    color: #ffffff;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
}
.info-text p {
    width: 333px;
    margin-left: -26px;
    font-size: 12px;
    transform: scale(0.83, 0.83);
    *font-size: 10px;
}

.introjs-button {
    border-radius: 10px;
}

.introjs-tooltipbuttons {
    border: 0;
}

.introjs-skipbutton {
    text-decoration: none;
}

.introjs-tooltip {
    background: #757575;
    color: #fff;
}

.introjs-tooltipbuttons .introjs-button {
    background: #757575;
    color: #fff;
    border-color: #fff;
    text-shadow: none;
}
.introjs-tooltipbuttons a:hover {
    background: #757575;
    color: #fff;
    border-color: #fff;
}
.introjs-skipbutton {
    color: #fff;
}
.vip-time {
    background: #fff5ec;
    padding: 5px 10px;
    cursor: pointer;
}
.vip-rights:hover {
    cursor: pointer;
    color: #1890ff;
}
.join-in {
    margin-left: 10px;
    margin-top: 3px;
    background: linear-gradient(90deg, #f5ae54 0%, #f67000 100%);
    box-shadow: 0px 2px 0px rgb(0 0 0 / 4%);
    border-radius: 100px;
    width: 51px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 2px 8px;
}
.aboutUsDropdown {
    position: absolute;
    left: 74%;
    top: 33px;
    display: none;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.aboutUsDropdown li a {
    color: #212529 !important;
}
.aboutUsDropdown li a:hover {
    color: #1890ff !important;
    background-color: #e6f7ff;
}

#loginBtn {
    font-size: 14px !important;
}
#registerBtn {
    font-size: 14px !important;
}
.search-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.logout-content {
    align-items: center;
}
.logout-icon {
    width: 13px;
    height: 13px;
}

.card-content {
    width: 25%;
}

.learn-more-title {
    width: auto;
}

.person-img {
  height: 28px;
  padding-top: 4px;
}
/* 调整位置，调整优先度 */
@media (min-width: 1921px) and (max-width: 2400px) {
  .main-container {
      margin: 0 auto;
      width: 1620px;
  }
  #personalSection {
      position: fixed;
      /* right: 224px; */
      left: 66%;
      top: 55px;
      z-index: 999;
  }
  .article-img-div{
    height: 226px;
  }
}
@media (min-width: 2401px) and (max-width: 2880px) {
  .main-container {
      margin: 0 auto;
      width: 1920px;
  }
  #personalSection {
      position: fixed;
      /* right: 224px; */
      left: 66%;
      top: 55px;
      z-index: 999;
  }
  .article-img-div{
    height: 276px;
  }
}
@media (min-width: 2881px) {
  .main-container {
      margin: 0 auto;
      width: 2200px;
  }
  #personalSection {
      position: fixed;
      /* right: 224px; */
      left: 66%;
      top: 55px;
      z-index: 999;
  }
  .article-img-div{
    height: 324px;
  }
}
#intro .intro-box{
    width: 50%;
    height: 600px;
}

#intro .intro-box-img{
    position: relative;
}

#intro .intro-box-img .intro-img{
	width: 600px;
	height: 600px;
    position: absolute;
    right: 0;
}
#intro .intro-box-img .intro-bg-left{
    position: absolute;
    right: 50px;
    bottom: 20px;
}
#intro .intro-box-img .intro-bg-right{
    position: absolute;
    left: 0;
    bottom: 20px;
}

#intro .intro-box-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#intro .intro-box-text .intro-title{
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-align: left;
}
#intro .intro-box-text .intro-mini-title{
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
}
#intro .intro-box-text .intro-content{
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
}

div#driver-highlighted-element-stage {
    opacity: 0.3;
}
