* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  color: #fff;
  background: #06182f;
}
a{
    text-decoration: unset;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.header .logo {
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor:pointer;
}
.header .logo img {
  width: 30px;
}
.header .nav {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.header .nav div {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 5px;
  cursor:pointer;
}
.header .nav div img {
  width: 20px;
}
.header .nav div:hover {
  color: #4cc3ff;
}
.header .user {
  font-size: 12px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 10px;
}
.header .btn {
  background: linear-gradient(125deg, #003ddf, #002a9d);
  padding: 7px 13px;
  border-radius: 4px;
  cursor:pointer;
}
.header .loginOut {
  background: transparent;
  padding: 7px 13px;
  border-radius: 4px;
  border: 1px solid #fff;
  cursor:pointer;
}
.main {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.main .banner {
  flex: 3;
  height: 280px;
  background: linear-gradient(90deg, #0b2c6b, #0a4ea3);
  border-radius: 10px;
  overflow: hidden;
}
.main .notice-box {
  flex: 1;
  background: #001638;
  border: 1px solid #043a8a;
  border-radius: 10px;
  padding: 15px;
  height: 280px;
  overflow: hidden;
}
.main .notice-box .notice-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #043a8a;
}
.main .notice-box .notice-title > span:first-child {
  border-left: 4px solid #00c2cb;
  padding-left: 10px;
}
.main .notice-box .notice-title > span:last-child {
  font-size: 13px;
}
.main .notice-box .notice-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #043a8a;
  cursor: pointer;
}
.main .notice-box .notice-item:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}
.main .notice-box .tag {
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 6px;
}
.main .notice-box .tag.red {
  background: #880405;
}
.main .notice-box .tag.blue {
  background: #062499;
}
.main .notice-box .tag.yellow {
  background: #864505;
}
.main .notice-box .tag.green {
  background: #074769;
}
.notice-bar {
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  background: #001638;
  border: 1px solid #043a8a;
  width: 1400px;
  margin: 20px auto;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.notice-bar img {
  width: 20px;
}
.section {
  width: 1400px;
  margin: 20px auto;
}
.section .market {
  display: flex;
  gap: 20px;
}
.section .market .card_01 {
  flex: 1;
  background: linear-gradient(90deg, #002047, #001c4b);
  border-radius: 10px;
  padding: 20px;
}
.section .market .card_01 .icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.section .market .card_01 .icon img {
  width: 50px;
}
.section .market .card_01 .icon h3 {
  margin-bottom: 7px;
  font-size: 16px;
}
.section .market .card_01 .icon p {
  opacity: 0.7;
  font-size: 14px;
}
.section .market .card_01 .enter {
  background: linear-gradient(90deg, #061c6e, #041a66);
  background: #00225f;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 30px;
  margin-top: 15px;
}
.section .market .card_02 {
  flex: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #002047, #001c4b);
  border-radius: 10px;
  padding: 20px;
  gap: 25px;
}
.section .market .card_02 > span {
  line-height: 30px;
}
.section .market .card_02 > span:nth-child(1) {
  height: 100%;
  flex: 1;
  background: linear-gradient(90deg, #001d4c, #00173e);
  border-radius: 10px;
}
.section .market .card_02 > span:nth-child(2) {
  height: 100%;
  flex: 1;
  background: linear-gradient(90deg, #013335, #00203b);
  border-radius: 10px;
}
.section .market .card_02 > span:nth-child(3) {
  height: 100%;
  flex: 1;
  background: linear-gradient(90deg, #1d222b, #0f1d32);
  border-radius: 10px;
}
.section .market .card_02 .icon {
  height: 100%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.section .market .card_02 .icon img {
  width: 60px;
  padding: 5px;
  border-radius: 5px;
  position: relative;
  top: -8px;
}
.section .market .card_02 .icon h3 {
  font-weight: normal;
  font-size: 14px;
  opacity: 0.7;
}
.section .market .card_02 .icon h3 span {
  color: #00c2cb;
}
.section .market .card_02 .icon p {
  font-size: 18px;
}
.section .market .card_02 .enter {
  font-size: 14px;
  margin-top: 10px;
}
.section .features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.section .features .feature {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex: 1;
  background: linear-gradient(90deg, #011d4c, #011c49);
  border-radius: 10px;
  padding: 20px 10px;
  font-size: 13px;
  gap: 10px;
  line-height: 20px;
}
.section .features .feature img {
  width: 55px;
  height: auto;
  object-fit: contain;
}
.section .features .feature h3 {
  font-weight: normal;
  font-size: 17px;
  margin-bottom: 7px;
}
.section .features .feature h3 span {
  color: #00c2cb;
}
.section .features .feature p {
  font-size: 12px;
  opacity: 0.7;
}
.section .bottom {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.section .bottom .block {
  flex: 1;
  background: linear-gradient(90deg, #011d4c, #011c49);
  border: 1px solid #123a77;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 13px;
}
.section .bottom .block > h3 {
  font-weight: normal;
  font-size: 17px;
  margin-bottom: 15px;
}
.section .bottom .block .step_lump {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section .bottom .block .step_lump > img {
  width: 20px;
}
.section .bottom .block .step_lump .ele {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.section .bottom .block .step_lump .ele img {
  background: #002866;
  width: 58px;
  padding: 13px;
  border-radius: 50%;
  overflow: visible;
  margin-bottom: 3px;
}
.section .bottom .block .step_lump .ele > h3 {
  margin-bottom: 3px;
}
.section .bottom .block .step_lump .ele > span {
  opacity: 0.7;
}
.section .bottom .block .tick_container {
  display: flex;
  justify-content: space-between;
}
.section .bottom .block .tick_container .tick_ele {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section .bottom .block .tick_container .tick_ele img {
  width: 13px;
}
.section .bottom .block .tick_container .tick_ele span {
  color: rgba(255, 255, 255, 0.7);
}
.section .bottom .block .tick_container .tick_ele i {
  font-style: normal;
  font-weight: bold;
  color: #fff;
}
.section .bottom .block .tick_container > img {
  width: 95px;
  position: relative;
  left: -20px;
  top: -20px;
}
.footer {
  text-align: center;
  font-size: 13px;
  padding: 20px;
  color: #6c8db5;
}
/*# sourceMappingURL=mainStyle.css.map */