.Home {
  background: #000000;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 14px;
}
.Home .contentWidth {
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
}
@media (min-width: 768px) {
  .Home .contentWidth {
    width: 1200px;
    box-sizing: border-box;
    padding: 18px 24px;
    margin: 0 auto;
  }
}
.Home .headerNav {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #303844;
}
.Home .headerNav .headerContent {
  display: flex;
  align-items: center;
}
.Home .headerNav .headerContent .headerIcon {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.Home .headerNav .headerContent .headerIcon .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  border-radius: 8px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.Home .headerNav .headerContent .headerAction {
  display: flex;
  align-items: center;
}
.Home .headerNav .headerContent .headerAction .location {
  font-size: 14px;
  font-weight: 400;
  color: #B0B0B0;
  margin-right: 24px;
  display: none;
  align-items: center;
  cursor: pointer;
}
.Home .headerNav .headerContent .headerAction .location img {
  display: block;
  height: 14px;
  margin-right: 5px;
}
.Home .headerNav .headerContent .headerAction .button {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.Home .content .module_1 {
  display: flex;
  flex-direction: column;
}
.Home .content .module_1 .leftContent {
  flex: 1;
  margin-bottom: 24px;
}
.Home .content .module_1 .leftContent .tag {
  padding: 4px 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FB64B6;
  background: rgba(251, 100, 182, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(251, 100, 182, 0.3);
  margin: 24px 0;
}
.Home .content .module_1 .leftContent .tag .icon {
  height: 12px;
  display: block;
  margin-right: 5px;
}
.Home .content .module_1 .leftContent .title {
  font-size: 48px;
  font-weight: 600;
}
.Home .content .module_1 .leftContent .title .text1 span {
  background: linear-gradient(0deg, #FC64B7 0%, #C27BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.Home .content .module_1 .leftContent .subTitle {
  font-size: 18px;
  color: #D1D5DB;
  line-height: 1.5;
  padding: 24px 0;
}
.Home .content .module_1 .leftContent .primaryButton {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  border-radius: 8px;
  margin-bottom: 28px;
  text-decoration: none;
  color: #ffffff;
}
.Home .content .module_1 .leftContent .tagList {
  display: flex;
  align-items: center;
}
.Home .content .module_1 .leftContent .tagList .tagItem {
  padding: 4px 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #B2B1B8;
  margin-bottom: 12px;
}
.Home .content .module_1 .leftContent .tagList .tagItem .icon {
  height: 12px;
  display: block;
  margin-right: 5px;
}
.Home .content .module_1 .rightContent {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #1E1E1E;
  border: 1px solid #1F2937;
  position: relative;
  overflow: hidden;
}
.Home .content .module_1 .rightContent::after {
  content: '';
  background-image: url('/image/bg.png');
  background-size: cover;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 20px;
  left: 20px;
  transform: translate(-50%, -50%);
}
.Home .content .module_1 .rightContent::before {
  content: '';
  background-image: url('/image/bg.png');
  background-size: cover;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 60px;
  right: 40px;
  transform: translate(50%, 50%);
}
.Home .content .module_1 .rightContent .header {
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #303844;
}
.Home .content .module_1 .rightContent .header .icon {
  display: block;
  height: 35px;
  margin-right: 12px;
}
.Home .content .module_1 .rightContent .header .titleBox .title {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.Home .content .module_1 .rightContent .header .titleBox .subTitle {
  font-size: 12px;
  color: #9CA3AF;
}
.Home .content .module_1 .rightContent .chatContent {
  padding: 12px 0;
}
.Home .content .module_1 .rightContent .chatContent::after {
  content: "";
  /* 必须设置，伪元素才会显示 */
  display: block;
  /* 伪元素默认为行内元素，需转为块级 */
  clear: both;
  /* 核心：清除浮动 */
  visibility: hidden;
  /* 可选：隐藏伪元素 */
  height: 0;
  /* 可选：设置高度为0 */
}
.Home .content .module_1 .rightContent .chatContent .leftChat {
  width: 70%;
  background: #2A2A2A;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px;
  float: left;
}
.Home .content .module_1 .rightContent .chatContent .leftChat::after {
  clear: both;
}
.Home .content .module_1 .rightContent .chatContent .leftChat .chat {
  color: #D1D5DB;
  margin-bottom: 12px;
}
.Home .content .module_1 .rightContent .chatContent .leftChat .time {
  color: #9CA3AF;
}
.Home .content .module_1 .rightContent .chatContent .rightChat {
  width: 70%;
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 100%);
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 12px;
  float: right;
}
.Home .content .module_1 .rightContent .chatContent .rightChat::after {
  clear: both;
}
.Home .content .module_1 .rightContent .chatContent .rightChat .chat {
  color: #ffffff;
  margin-bottom: 12px;
}
.Home .content .module_1 .rightContent .chatContent .rightChat .time {
  color: rgba(255, 255, 255, 0.7);
}
.Home .content .module_1 .rightContent .inputBox {
  display: flex;
  align-items: center;
}
.Home .content .module_1 .rightContent .inputBox .input {
  flex: 1;
  padding: 0 12px;
  height: 40px;
  border-radius: 50px;
  background: #333333;
  font-size: 14px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
}
.Home .content .module_1 .rightContent .inputBox .icon {
  flex-shrink: 0;
  height: 40px;
  display: block;
  margin-left: 12px;
}
.Home .content .module_2 {
  overflow: hidden;
}
.Home .content .module_2 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_2 .contentWidth .title {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_2 .contentWidth .subTitle {
  font-size: 14px;
  font-weight: 400;
  color: #D1D5DB;
  margin-top: 0;
  margin-bottom: 24px;
}
.Home .content .module_2 .contentWidth .cardList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Home .content .module_2 .contentWidth .cardList .cardItem {
  flex: 1;
  margin-bottom: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #131A26;
  border-radius: 10px;
  border: 1px solid #1F2937;
}
.Home .content .module_2 .contentWidth .cardList .cardItem img {
  width: 50px;
  display: block;
}
.Home .content .module_2 .contentWidth .cardList .cardItem .cardTitle {
  font-size: 16px;
  color: #FFFFFF;
  margin: 24px 0;
}
.Home .content .module_2 .contentWidth .cardList .cardItem .cardDescription {
  width: 100%;
  text-align: center;
  color: #9CA3AF;
  line-height: 1.5;
}
.Home .content .module_2 .contentWidth .cardList .cardItem:last-child {
  margin-bottom: 0;
}
.Home .content .module_3 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_3 .contentWidth .title {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_3 .contentWidth .subTitle {
  font-size: 14px;
  font-weight: 400;
  color: #D1D5DB;
  margin-top: 0;
  margin-bottom: 24px;
}
.Home .content .module_3 .contentWidth .cardList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Home .content .module_3 .contentWidth .cardList .cardItem {
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .bgBox {
  width: 100%;
  position: relative;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .bgBox img {
  width: 100%;
  display: block;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .bgBox .imageTitle {
  position: absolute;
  left: 24px;
  bottom: 12px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .cardContent {
  padding: 24px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .cardContent .cardDescription {
  width: 100%;
  color: #9CA3AF;
  line-height: 1.5;
  margin-bottom: 24px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .cardContent .tagList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .cardContent .tagList .tagItem {
  padding: 4px 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #B2B1B8;
  margin-bottom: 6px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem .cardContent .tagList .tagItem .icon {
  height: 14px;
  display: block;
  margin-right: 5px;
}
.Home .content .module_3 .contentWidth .cardList .cardItem:last-child {
  margin-bottom: 0;
}
.Home .content .module_4 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_4 .contentWidth .title {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_4 .contentWidth .subTitle {
  font-size: 14px;
  font-weight: 400;
  color: #D1D5DB;
  margin-top: 0;
  margin-bottom: 24px;
}
.Home .content .module_4 .contentWidth .cardList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Home .content .module_4 .contentWidth .cardList .cardItem {
  flex: 1;
  margin-bottom: 24px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
}
.Home .content .module_4 .contentWidth .cardList .cardItem img {
  width: 50px;
  display: block;
  margin-right: 12px;
}
.Home .content .module_4 .contentWidth .cardList .cardItem .cardContent .cardTitle {
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 15px;
  margin-bottom: 24px;
}
.Home .content .module_4 .contentWidth .cardList .cardItem .cardContent .cardDescription {
  color: #9CA3AF;
  line-height: 1.5;
}
.Home .content .module_4 .contentWidth .cardList .cardItem:last-child {
  margin-bottom: 0;
}
.Home .content .module_5 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_5 .title {
  font-size: 32px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_5 .subTitle {
  font-size: 14px;
  font-weight: 400;
  color: #D1D5DB;
  margin-top: 0;
  margin-bottom: 24px;
}
.Home .content .module_5 .contentWidth {
  background: #080C14;
  border-radius: 8px;
  margin: 0 auto;
  border: 1px solid #1F2937;
}
.Home .content .module_5 .contentWidth .header {
  padding: 0 0 24px 0;
  display: flex;
  align-items: center;
}
.Home .content .module_5 .contentWidth .header .icon {
  display: block;
  height: 35px;
  margin-right: 12px;
}
.Home .content .module_5 .contentWidth .header .headerTitle {
  flex: 1;
  font-size: 14px;
  color: #FFFFFF;
}
.Home .content .module_5 .contentWidth .header .headerStatus {
  font-size: 12px;
  color: #10B981;
  padding: 4px 16px;
  border-radius: 25px;
  background: #0F3B2D;
  border-radius: 8333px;
}
.Home .content .module_5 .contentWidth .chatContent {
  display: flex;
  flex-direction: column;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent .leftTitle {
  width: 100%;
  font-size: 14px;
  color: #FFFFFF;
  padding: 12px 0;
  margin-bottom: 24px;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent .chat {
  width: 100%;
  box-sizing: border-box;
  background: #0A0A0A;
  border-radius: 8px;
  border: 1px solid #1F2937;
  padding: 12px;
  margin-bottom: 24px;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent .chat:last-child {
  margin-bottom: 0;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent .chat .chatTitle {
  color: #D1D5DB;
  padding-bottom: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .leftContent .chat .chatText {
  font-size: 14px;
  line-height: 1.5;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent {
  flex: 1;
  display: flex;
  justify-content: center;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox {
  background: #1E1E1E;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  margin: 12px 0;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent {
  border-radius: 8px;
  background: #121212;
  padding: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent::after {
  content: "";
  /* 必须设置，伪元素才会显示 */
  display: block;
  /* 伪元素默认为行内元素，需转为块级 */
  clear: both;
  /* 核心：清除浮动 */
  visibility: hidden;
  /* 可选：隐藏伪元素 */
  height: 0;
  /* 可选：设置高度为0 */
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .mobileHeader {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .mobileHeader .icon {
  display: block;
  height: 35px;
  margin-right: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .mobileHeader .headerTitle {
  flex: 1;
  font-size: 14px;
  color: #FFFFFF;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .mobileHeader .moreIcon {
  display: block;
  width: 14px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .bgIcon {
  width: 80%;
  display: block;
  margin-bottom: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .mobileText {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .leftChat {
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  padding: 2px;
  border-radius: 8px;
  display: inline-block;
  width: 80%;
  margin-bottom: 12px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .leftChat .chatContent {
  border-radius: 8px;
  background: #121212;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .leftChat .chatContent .chatTitle {
  font-size: 14px;
  margin-bottom: 6px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .leftChat .chatContent .chatTitle span {
  font-size: 12px;
  color: #9CA3AF;
  margin-left: 5px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .leftChat .chatContent .chatText {
  font-size: 14px;
  color: #ffffff;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat {
  background: #1E1E1E;
  border-radius: 8px;
  padding: 6px;
  width: 80%;
  float: right;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .chatTitle {
  font-size: 14px;
  margin-bottom: 6px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .chatTitle .tagText {
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 14px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .chatTitle .time {
  font-size: 12px;
  color: #9CA3AF;
  margin-left: 5px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .chatText {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 6px;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .buttonBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox .mobileContent .rightChat .buttonBox .submitButton {
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  font-size: 12px;
  padding: 4px 32px;
  border-radius: 4px;
}
.Home .content .module_6 {
  overflow: hidden;
}
.Home .content .module_6 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_6 .contentWidth .title {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_6 .contentWidth .cardList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Home .content .module_6 .contentWidth .cardList .cardItem {
  flex: 1;
  margin-bottom: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_6 .contentWidth .cardList .cardItem img {
  width: 35px;
  display: block;
}
.Home .content .module_6 .contentWidth .cardList .cardItem .cardTitle {
  font-size: 16px;
  color: #FFFFFF;
  margin: 24px 0;
}
.Home .content .module_6 .contentWidth .cardList .cardItem .cardDescription {
  color: #D1D5DB;
  line-height: 1.5;
}
.Home .content .module_6 .contentWidth .cardList .cardItem:last-child {
  margin-bottom: 0;
}
.Home .content .module_7 {
  overflow: hidden;
}
.Home .content .module_7 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_7 .contentWidth .title {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 0;
}
.Home .content .module_7 .contentWidth .cardList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Home .content .module_7 .contentWidth .cardList .cardItem {
  flex: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.Home .content .module_7 .contentWidth .cardList .cardItem img {
  width: 40px;
  display: block;
  margin-right: 12px;
}
.Home .content .module_7 .contentWidth .cardList .cardItem .cardTitle {
  font-size: 18px;
  color: #FFFFFF;
}
.Home .content .module_8 {
  overflow: hidden;
  background: linear-gradient(90deg, rgba(88, 28, 135, 0.5) 0%, rgba(131, 24, 67, 0.5) 50%, rgba(124, 45, 18, 0.5) 100%);
}
.Home .content .module_8 .contentWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .content .module_8 .contentWidth .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.Home .content .module_8 .contentWidth .subTitle {
  font-size: 14px;
  margin-bottom: 24px;
}
.Home .content .module_8 .contentWidth .submitButton {
  background: linear-gradient(90deg, #9333EA 0%, #EC4899 50%, #FB923C 100%);
  font-size: 12px;
  padding: 12px 56px;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
}
.Home .bottomBar .bottomContent .bottomIcon {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}
.Home .bottomBar .bottomContent .bottomIcon .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  border-radius: 8px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.Home .bottomBar .bottomContent .bottomToast {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Home .bottomBar .bottomContent .bottomToast .remark {
  flex: 1;
  line-height: 1.5;
  color: #9CA3AF;
  margin-bottom: 24px;
}
.Home .bottomBar .bottomContent .bottomToast .correlation {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.Home .bottomBar .bottomContent .bottomToast .correlation .about {
  width: 100%;
  margin-bottom: 5px;
  color: #9CA3AF;
}
.Home .bottomBar .bottomContent .bottomToast .correlation .action {
  width: 100%;
  display: flex;
  align-items: center;
}
.Home .bottomBar .bottomContent .bottomToast .correlation .action a {
  color: #9CA3AF;
}
.Home .bottomBar .bottomContent .bottomToast .correlation .action .actionItem {
  flex: 1;
}
@media (min-width: 768px) {
  .Home .headerNav .headerContent .headerAction .location {
    display: flex;
  }
  .Home .content .module_1 {
    display: flex;
    flex-direction: row;
    padding: 48px 18px !important;
  }
  .Home .content .module_1 .leftContent {
    flex: 1;
    margin-right: 24px;
  }
  .Home .content .module_2 {
    background: #080C14;
  }
  .Home .content .module_2 .contentWidth {
    padding: 48px 18px !important;
  }
  .Home .content .module_2 .contentWidth .title {
    font-size: 32px;
  }
  .Home .content .module_2 .contentWidth .cardList {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
  }
  .Home .content .module_2 .contentWidth .cardList .cardItem {
    margin-right: 24px;
    margin-bottom: 0;
  }
  .Home .content .module_2 .contentWidth .cardList .cardItem:last-child {
    margin-right: 0;
  }
  .Home .content .module_3 .contentWidth {
    padding: 48px 18px !important;
  }
  .Home .content .module_3 .contentWidth .title {
    font-size: 32px;
  }
  .Home .content .module_3 .contentWidth .cardList {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
  }
  .Home .content .module_3 .contentWidth .cardList .cardItem {
    margin-right: 24px;
    margin-bottom: 0;
    background: #121212;
    border-radius: 8px;
    border: 1px solid #1F2937;
  }
  .Home .content .module_3 .contentWidth .cardList .cardItem .cardContent .tagList .tagItem {
    padding: 4px 0;
  }
  .Home .content .module_3 .contentWidth .cardList .cardItem:last-child {
    margin-right: 0;
  }
  .Home .content .module_4 {
    background: #080C14;
  }
  .Home .content .module_4 .contentWidth {
    padding: 48px 18px !important;
  }
  .Home .content .module_4 .contentWidth .title {
    font-size: 32px;
  }
  .Home .content .module_4 .contentWidth .cardList {
    display: flex;
    flex-direction: row;
  }
  .Home .content .module_4 .contentWidth .cardList .cardItem {
    flex-direction: column;
    align-items: center;
    margin-right: 24px;
    margin-bottom: 0;
  }
  .Home .content .module_4 .contentWidth .cardList .cardItem .cardContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .Home .content .module_4 .contentWidth .cardList .cardItem:last-child {
    margin-right: 0;
  }
  .Home .content .module_5 {
    padding: 48px 18px !important;
  }
  .Home .content .module_5 .title {
    font-size: 32px;
    margin: 24px 0;
  }
  .Home .content .module_5 .contentWidth {
    background: #080C14;
    border-radius: 8px;
    margin: 0 auto;
    padding: 24px 24px 0 24px !important;
  }
  .Home .content .module_5 .contentWidth .header {
    padding: 0 0 24px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #303844;
  }
  .Home .content .module_5 .contentWidth .chatContent {
    display: flex;
    flex-direction: row;
  }
  .Home .content .module_5 .contentWidth .chatContent .leftContent .leftTitle {
    width: 400px;
    margin-top: 24px;
  }
  .Home .content .module_5 .contentWidth .chatContent .leftContent .chat {
    width: 400px;
    padding: 12px;
    margin-bottom: 24px;
  }
  .Home .content .module_5 .contentWidth .chatContent .leftContent .chat:last-child {
    margin-bottom: 0;
  }
  .Home .content .module_5 .contentWidth .chatContent .rightContent {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .Home .content .module_5 .contentWidth .chatContent .rightContent .mobileBox {
    width: 250px;
    margin: 12px 0 12px 36px;
  }
  .Home .content .module_6 {
    background: #080C14;
  }
  .Home .content .module_6 .contentWidth {
    padding: 48px 18px !important;
  }
  .Home .content .module_6 .contentWidth .title {
    font-size: 32px;
  }
  .Home .content .module_6 .contentWidth .cardList {
    display: flex;
    flex-direction: row;
  }
  .Home .content .module_6 .contentWidth .cardList .cardItem {
    margin-right: 24px;
    margin-bottom: 0;
    padding: 24px 0;
  }
  .Home .content .module_6 .contentWidth .cardList .cardItem:last-child {
    margin-right: 0;
  }
  .Home .content .module_7 .contentWidth {
    padding: 72px 18px !important;
  }
  .Home .content .module_7 .contentWidth .title {
    font-size: 32px;
  }
  .Home .content .module_7 .contentWidth .cardList {
    display: flex;
    flex-direction: row;
  }
  .Home .content .module_7 .contentWidth .cardList .cardItem {
    justify-content: center;
    margin-right: 24px;
    margin-bottom: 0;
  }
  .Home .content .module_7 .contentWidth .cardList .cardItem:last-child {
    margin-right: 0;
  }
  .Home .content .module_8 {
    background: linear-gradient(90deg, rgba(88, 28, 135, 0.5) 0%, rgba(131, 24, 67, 0.5) 50%, rgba(124, 45, 18, 0.5) 100%);
  }
  .Home .content .module_8 .contentWidth {
    padding: 48px 18px !important;
  }
  .Home .content .module_8 .contentWidth .title {
    font-size: 24px;
  }
  .Home .bottomBar .bottomContent .bottomIcon {
    margin-bottom: 10px;
  }
  .Home .bottomBar .bottomContent .bottomToast {
    flex-direction: row;
  }
  .Home .bottomBar .bottomContent .bottomToast .remark {
    margin-bottom: 0;
  }
  .Home .bottomBar .bottomContent .bottomToast .correlation {
    flex: 1;
  }
  .Home .bottomBar .bottomContent .bottomToast .correlation .about {
    width: 350px;
  }
  .Home .bottomBar .bottomContent .bottomToast .correlation .action {
    width: 350px;
  }
}
#home_en {
  display: flex;
}
#home_zh {
  display: none;
}
