.dx-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
    height: auto;
    min-width: 0;
    overflow-x: hidden;
    position: relative;
    color: #464b4a;
    letter-spacing: 2px;
}

.dx-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dx-header {
    height: 45px;
    width: calc(100% - 100px);
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}
.dx-header-logo {
    max-width: 12rem;
    height: auto;
}
.dx-header-btn {
    color: white;
    background-color: rgb(93, 120, 254);
    display: flex;
    border-radius: 50px;
    width: 130px;
    height: 30px;
    font-size: 1rem;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    line-height: 1.2rem;
}

.dx-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dx-main-logo {
    width: 80px;
    height: auto;
}
.dx-main-tips {
    width: 800px;
    display: flex;
    justify-content: flex-end;
}
.dx-main-tips-img {
    width: 100px;
    transform: translateY(0px) translateX(-145px);
}
.dx-main-title {
    max-width: 32rem;
    height: auto;
}
.dx-main-zu {
    max-width: 20rem;
    padding-top: 10px;
}
.dx-main-label {
    font-size: 1.2rem;
    font-family: 'SourceHanSansCN';
    line-height: 3rem;
}
.dx-main-card {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
.dx-main-card-item {
    width: 330px;
    height: 165px;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dx-main-card-item-img {
    width: inherit;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
}
.dx-main-card-item-btn {
    width: 255px;
    height: 70px;
    position: relative;
    cursor: pointer;
}
.dx-main-card-item-btn-img {
    position: absolute;
    width: inherit;
}
.dx-main-card-item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.8rem;
}
.dx-main-card-item-list span {
    display: flex;
    align-items: center;
}
.dx-main-card-item-list b {
    font-weight: bold;
}
.dx-main-card-item-grap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.dx-main-card-item-grap-body {
    display: flex;
    gap: 50px;
    font-size: 0.9rem;
}
.dx-main-card-item-grap-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.dx-main-card-item-grap-tips {
    font-size: 0.9rem;
    display: flex;
    gap: 5px;
}
.dx-main-card-item-grap-tips b {
    font-weight: bold;
    color: rgb(93, 120, 254);
}
.dx-footer-text {
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: inherit;
    background-color: white;
    font-size: 11px;
    letter-spacing: 1px;
}
.dx-footer {
    display: flex;
    flex-direction: column;
}
.dx-footer-icp {
    height: 40px;
    background-color: black;
    color: white;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}