@charset "UTF-8";
/* 通用定义 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular-9.otf");
}

body,
html {
  font-family: "Inter";
}

.hover-link:hover {
  color: #e92529;
  border-color: #e92529;
}

.bg-red {
  background: #e92529;
  color: #fff;
}

.bg-red:hover {
  background: rgba(233, 37, 41, 0.8);
}

.hover-link-text a:hover {
  color: #e92529;
}

.border-gray {
  border-color: #d9d9d9;
}

.radius-10 {
  border-radius: 0.63rem;
}

/* fonts */
.text-40 {
  font-size: 1.25rem;
}

.bg-gray {
  background: #f7f7f7;
}

.radius-20 {
  border-radius: 0.63rem;
}

.radius-b20 {
  border-radius: 0 0 0.63rem 0.63rem;
}

/* 通用头尾 开始 */
.menuBtn {
  width: 26px;
  height: 26px;
  transition: 0.3s !important;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}

.menuBtn b {
  display: block;
  height: 2px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.3s !important;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}

.menuBtn.open b {
  display: none;
  margin: -2px 0 0;
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
}

.menuBtn.open b:first-child {
  display: block;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.menuBtn.open b:last-child {
  display: block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.header {
  transition: all 0.3s;
}

.header .header-logo img:nth-child(2) {
  display: none;
}

.header .header-link a {
  transition: all 0.3s;
}

.header .header-link_btn {
  border: 1px solid #fff;
}

.header .header-link_btn:hover {
  color: #000;
  background: #fff;
}

.header .header-nav > li > a {
  color: #fff;
  position: relative;
  display: block;
  padding: 2rem 0 1.5rem;;
}

.header .header-nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.25rem;
  background: #e92529;
  transition: width 0.3s;
}

.header .header-nav > li:hover > a, .header .header-nav > li.active > a {
  color: #e92529 !important;
}

.header .header-nav > li:hover > a::after, .header .header-nav > li.active > a::after {
  width: 100%;
}

.header .header-nav > li .dropdown {
  top: 100%;
}

.header .header-nav > li .dropdown .subcat li {
  margin-bottom: 0.5rem;
}

.header .header-nav > li .dropdown .subcat li a {
  color: #000;
  line-height: 1.2 !important;
}

.header .header-nav > li .dropdown .subcat li:hover a {
  color: #e92529;
}

.header.fix-top, .header.header2 {
  background: #fff;
}

.header.fix-top .header-logo img:nth-child(1), .header.header2 .header-logo img:nth-child(1) {
  display: none;
}

.header.fix-top .header-logo img:nth-child(2), .header.header2 .header-logo img:nth-child(2) {
  display: inline-block;
}

.header.fix-top .header-nav > li > a, .header.header2 .header-nav > li > a {
  color: #231f20;
}

.header.fix-top .header-nav > li .dropdown, .header.header2 .header-nav > li .dropdown {
  background: rgba(0, 0, 0, 0.6);
}

.header.fix-top .header-link .header-link_btn, .header.header2 .header-link .header-link_btn {
  border-color: #d9d9d9;
  color: #231f20;
}

.header.fix-top .header-link .header-link_btn:hover, .header.header2 .header-link .header-link_btn:hover {
  background: #000 !important;
  color: #fff;
  border-color: #000;
}

.header.fix-top .header-lang a, .header.header2 .header-lang a {
  color: #231f20;
}

.header.fix-top .header-lang .menuBtn b, .header.header2 .header-lang .menuBtn b {
  background: #231f20;
}

.header .header-lang.ml-5:hover .header-lang_dropdown {
  display: block;
}

.header-lang .lang-tit {
  color: #e92529;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
}

.header-lang .line {
  border-bottom: 1px solid #b9b9b9;
}

.header-lang .header-lang_dropdown {
  top: 100%;
}

.header-lang .header-lang_dropdown li a {
  color: #000;
  padding: 0.2rem 0.8rem;
  white-space: nowrap;
  display: block;
  margin: 0.125rem 0;
  border-radius: 0.5rem;
}

.header-lang .header-lang_dropdown li:hover a {
  background: #000;
  color: #fff;
}

.header-lang .header-lang_dropdown li.check a {
  position: relative;
  /* padding-left: 1.25rem; */
  padding: 0 2rem 0 1rem;
  position: relative;
  margin-top: 0.63rem;
  background: none;
  color: #000;
}

.header-lang .header-lang_dropdown li.check a::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: url("../images/new2/icon_ck1.svg") no-repeat right center;
  background-size: 100% 100%;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.header-sidemenu {
  background: rgba(0, 0, 0, 0.6);
}

.header-sidemenu .header-link .header-link_btn {
  border: 1px solid #d9d9d9;
}

.header-sidemenu .header-link .header-link_btn:hover {
  color: #e92529;
  border-color: #e92529;
}

/* wap-header */
.wap-dropdown {
  top: 3.75rem;
}

.wap-dropdown .header-lang a .icon-cert {
  font-size: 0.5rem;
}

.wap-dropdown .header-lang .header-lang_dropdown {
  width: 55vw;
  left: 0;
  top: 2rem;
}

.wap-dropdown .wap-menu > ul > li {
  border-bottom: 1px solid #ddd;
}

.wap-dropdown .wap-menu > ul > li .tit a {
  flex: 1;
  overflow: hidden;
}

.wap-dropdown .wap-menu > ul > li .tit span {
  width: 4rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 0.6rem;
  background-position: right center;
  background-image: url("../images/new2/jia.svg");
}

.wap-dropdown .wap-menu > ul > li .tit.active {
  color: #e92529;
}

.wap-dropdown .wap-menu > ul > li .tit.active span {
  background-image: url("../images/new2/jian.svg");
}

.wap-dropdown .wap-menu > ul > li .submenu {
  padding-top: 0.5rem;
}

.wap-dropdown .wap-menu > ul > li .submenu li {
  margin-bottom: 0.75rem;
}

.wap-dropdown .wap-menu > ul > li .submenu li ul {
  padding-top: 0.5rem;
}

.wap-header .menuBtn b {
  background-color: #231f20;
}

.header-placeholder {
  height: 3.69rem;
}

/* footer */
.footer2 {
  padding: 3.13rem 0 1.25rem;
}

.footer2 .footer-lang > a {
  border: 1px solid #b9b9b9;
}

.footer2 .footer-lang > a .icon-cert {
  font-size: 0.4rem;
}

.footer2 .footer-switch a img {
  display: inline-block;
}

.footer2 .footer-nav h4 {
  color: #b9b9b9;
}


.footer2 .footer-link {
  border-color: #b9b9b9;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer2 .footer-link li a:hover {
  color: #e92529;
}

.footer2 .footer-policy {
  padding-left: 1em;
}

@media (min-width: 768px) {
  .header-placeholder {
    height: 3.8rem;
  }
  .wap-dropdown {
    display: none !important;
  }
  .footer2 {
    padding: 5rem 0 1.25rem;
  }
  .footer2 .footer-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1280px) {
  .header-placeholder {
    height: 4.45rem;
  }
}

@media (min-width: 1536px) {
  .header-placeholder {
    height: 5.32rem;
  }
}

/* 通用头尾 结束 */
/* progressIn */
@keyframes progressIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.banner {
  height: 28rem;
}

.banner .swiper-pagination {
  bottom: 1rem;
}

.banner .swiper-slide {
  position: relative;
  z-index: 1;
}

.banner .swiper-slide .bg-cover {
  background-position: 78% center;
}

.banner .swiper-slide video {
  object-fit: cover;
  object-position: 70% center;
}

.banner .swiper-slide .absolute {
  z-index: 2;
}

.banner .swiper-slide .absolute::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 63.46%);
  z-index: -11;
}

.banner .swiper-pagination-bullet {
  position: relative;
  width: 1rem;
  height: 0.44rem;
  transition: width 0.3s;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.63rem;
  opacity: 1;
  overflow: hidden;
  margin: 0 0.3rem;
  -webkit-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
  opacity: 1;
  outline: none;
}

.banner .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #e92529;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 2.8rem;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  content: "";
  width: 100%;
  -webkit-animation: progressIn 5s linear both;
  -moz-animation: progressIn 5s linear both;
  -ms-animation: progressIn 5s linear both;
  -o-animation: progressIn 5s linear both;
  animation: progressIn 5s linear both;
}

/* index-section1 */
.index-section1 .card-item {
  position: relative;
}

.index-section1 .card-item::before, .index-section1 .card-item::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2.25rem;
  height: 4.13rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

.index-section1 .card-item::before {
  left: 0;
  background-image: url("../images/new2/zs_left.png");
}

.index-section1 .card-item::after {
  right: 0;
  background-image: url("../images/new2/zs_right.png");
}

.sec-type {
  margin-bottom: 2rem;
}

.sec-type .sec-type_tit .tit {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.sec-type .sec-type_tit .tit::before {
  content: "";
  width: 1.15rem;
  height: 1.35rem;
  background: url("../images/new2/type_line1.svg") no-repeat left center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 12%;
}

.sec-type .sec-type_tit .tit span {
  color: #e92529;
}

.sec-type.mb-0 {
  margin-bottom: 0 !important;
}

.sec-type2 .sec-type_tit .tit {
  padding-left: 0;
}

.sec-type2 .sec-type_tit .tit span {
  color: #e92529;
}

.sec-type2 .sec-type_tit .tit::before {
  display: none;
}

.index-section1 a {
  flex-shrink: 0;
  text-align: center;
}

.index-section1 a .card-item {
  padding: 0 3rem;
  max-width: 350px;
}

.index-section2 .mobile-marquee .inline-block .card-item {
  margin-right: 15px;
  width: 200px;
}

.index-section2_box1 .ul {
  padding: 1.65rem 0.63rem 0.35rem 0.63rem;
}

.index-section2_box1 .ul .li {
  margin-bottom: 1.3rem;
}

.index-section2_box1 .ul .li .card-item_desc {
  color: #231f20;
  margin-top: 0.31rem;
}

.index-section2_box1 .line img {
  width: 1.25rem;
}

.index-section2_box2 .card-item_icon img {
  height: 4.06rem;
}

/* index-section3 */
.index-section3 li a {
  position: relative;
  display: block;
}

.index-section3 li .item-pic {
  padding-top: 62%;
}

.index-section3 li .item-pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.48);
  transition: height 0.3s;
  z-index: 1;
}

.index-section3 li .item-txt {
  position: absolute;
  text-align: center;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.48);
}

.index-section4 li a {
  display: flex;
  height: 100%;
}

.index-section4 .item {
  flex: 1;
  transition: all 0.3s;
  overflow: hidden;
}

.index-section4 .item .item-pic {
  height: 14rem;
  margin-bottom: -4rem;
}

.index-section4 .item .item-txt {
  height: calc(100% - 10rem);
  padding: 5rem 2.25rem 2.25rem 2.25rem;
}

.index-section4 .item .item-txt .item-txt_tit {
  color: #e92529;
}

.index-section4 .item .item-txt .item-txt_link {
  opacity: 1;
  display: block;
}

.index-section4 .item .item-txt .item-txt_link span {
  border-bottom-width: 2px;
}

.index-section4 .item .item-txt .item-txt_cont li {
  padding-left: 1.25rem;
  position: relative;
  margin-top: 0.63rem;
}

.index-section4 .item .item-txt .item-txt_cont li::before {
  content: "";
  width: 0.88rem;
  height: 0.88rem;
  background: url("../images/new2/check.svg") no-repeat left center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0.31rem;
}

.index-section4 .item:hover {
  transform: translateY(-1rem);
}

.index-section4 .item:hover .item-txt_link {
  opacity: 1;
}

.index-section4 .index-section3_list > ul > li {
  width: 100%;
}

.index-section5 .index-section5_box2 li {
  margin-bottom: 1.2rem;
}

.index-section5 .index-section5_box2 li > div{
  transition: all 0.5s;
}

.index-section5 .index-section5_box2 li .item-tit {
  color: #a1a3a6;
}

.index-section5 .index-section5_box2 li .item-cont_link {
  margin-bottom: 2rem;
}

.index-section5 .index-section5_box2 li .item-cont_link a {
  border-bottom: 2px solid #000;
  color: #000;
}



.index-section5 .index-section5_box2 li:hover .item-tit {
  color: #231f20;
}

.index-section5 .index-section5_box2 li.active > div {
  border: transparent;
  padding-left: 0;
}

.index-section5 .index-section5_box2 li.active .item-tit {
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}


.index-section6 {
  background-size: 100% 35%;
}

.index-section6 .index-section6_box2 li .item-tit {
  color: #e92529;
}

.index-section7 .map {
  background: url("../images/new2/bg_map.jpg") no-repeat bottom center;
  background-size: cover;
}

.index-section7 .map li {
  position: absolute;
}

.index-section7 .map li .point {
  cursor: pointer;
}

.index-section7 .map li .point i {
  width: 2.55vw;
  height: 2.86vw;
  display: block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("../images/new2/point1.png");
}

.index-section7 .map li .map-layer {
  width: 25vw;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0.52vw;
  left: 100%;
}

.index-section7 .map li.li1 {
  left: 15.63vw;
  bottom: 5.99vw;
}

.index-section7 .map li.li2 {
  top: 4.17vw;
  left: 41.67vw;
}

.index-section7 .map li.li3 {
  top: 5.42vw;
  left: 44.79vw;
}

.index-section7 .map li.li4 {
  top: 10.1vw;
  left: 59.38vw;
}

.index-section7 .map li.li5 {
  bottom: 11.2vw;
  left: 59.38vw;
}

.index-section7 .map li.li6 {
  top: 12.71vw;
  right: 23.85vw;
}

.index-section7 .map li.li7 {
  top: 11.46vw;
  right: 21.88vw;
}

.index-section7 .map li.li8 {
  top: 11.3vw;
  right: 19.01vw;
}

.index-section7 .map li.li9 {
  top: 11.61vw;
  right: 17.71vw;
}

.index-section7 .map li.li10 {
  top: 9.48vw;
  right: 14.01vw;
}

.index-section7 .map li.li11 {
  bottom: 4.64vw;
  right: 2.97vw;
}

.index-section7 .map li.li12 {
  bottom: 6.51vw;
  right: 1.2vw;
}

.index-section7 .map li:nth-child(n + 7) .map-layer {
  left: auto;
  right: 100%;
}

.index-section7 .map li.active .point {
  transform: scale(2.8);
}

.index-section7 .header-lang .header-lang_dropdown li a {
  padding: 0.5rem 0;
}

.index-section8 .item .fitImg {
  padding-top: 74.48%;
}

.index-section8 .item .item-txt {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(0.63rem);
}

.index-section8 .item .item-txt_link {
  height: auto;
  transition: height 0.3s;
}

.index-section10 li {
  display: flex;
}

.index-section10 li .item {
  background: #e92529;
  color: #fff;
  flex: 1;
  overflow: hidden;
  transition: all 0.3s;
}

.index-section10 li .item .item-cont_icon {
  right: 0.94rem;
  bottom: 1.75rem;
}

.common-download .download-wrap {
  position: relative;
  align-items: flex-end;
}

.common-download .download-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 82%;
  background: #000;
  border-radius: 10px;
  z-index: -1;
}

.common-download .sec-type {
  margin-bottom: 2.5rem;
}

.common-download .col2 {
  max-width: 100%;
}
  .common-download2 .download-wrap {
    background-image: url("../images/new2/m_trade1.png");
    background-size:cover;
    background-repeat:no-repeat;
    padding:2.5rem 2rem;
    border-radius:.94rem;
    background-position:bottom center;
  }
  .common-download2 .step-link{
    line-height:1.5;
  }
.common-download2 .step-link a{
  border-bottom:1px solid #fff;
  padding-bottom:.25rem;
  display:inline-block;
  margin-bottom:.4rem;
 
}
.common-download2 .step-link span{
  margin:0 .63rem;
  display:inline-block;
  margin-bottom:.4rem;
}
.common-download2 .step-link a:hover{
  opacity:.88;
} .common-download2 .line1 img{
    display:none;
   }
.common-download2 .line1{
  border-top:1px solid rgba(255,255,255,.6);
  margin:2.19rem 0;
  width:100%;
}
/* inner */
.breadcrumb {
  border-color: #b9b9b9;
}

@media screen and (max-width: 900px) {
  .breadcrumb{
    display: none;
  }
}

.app-page .app-slide .app-slide_link a img {
  border-radius: 0 0.63rem 0 0.63rem;
}

.app-page .app-page_box1 li {
  margin-bottom: -0.31rem;
}

.app-page .app-page_box1 li .item .item-icon {
  height: 2.44rem;
}

.app-page .app-page_box1 li .item .item-icon img {
  max-height: 100%;
}

.app-page .app-page_box1 li:hover .item {
  transform: translateY(-0.31rem);
  color: #e92529;
}

.app-page .app-page_box2 .col1 img {
  max-width: 8rem;
}

.app-page .app-page_box3 {
  background: #fff;
  background-size: 100%;
}

.app-page .app-page_box3 li {
  background-color: #fff;
  background: url("../images/new2/bg_line3.png") repeat-x bottom center;
  background-size: 100%;
}

.app-page .app-page_box3 li .item-pic img {
  max-width: 65%;
}

.app-page .app-page_box3 li .item-info {
  max-width: 100%;
}

.app-page .app-page_box3 li .item-info .item-info_num {
  color: #b9b9b9;
}

.app-page .app-page_box3 li .item-info .item-info_link a {
  background: #e92529;
}

.app-page .app-page_box3 li .item-info .item-info_link a:hover {
  background: rgba(233, 37, 41, 0.8);
}

.app-page .app-page_box4 .line img {
  max-width: 4.06rem;
}

.app-page .app-page_box4 li .item-icon {
  margin: 0 0.75rem;
}

.app-page .app-page_box4 li .item-icon img {
  width: 2.38rem;
}

.app-page .app-page_box4 li .item-info .item-info_tit {
  color: #e92529;
}

.inner-slide .inner-slide_link a {
  background: #e92529;
}

.inner-slide .inner-slide_link a:hover {
  background: rgba(233, 37, 41, 0.8);
}

/* faqs */
.faqs-box li {
  border-bottom-color: #ddd;
}

.faqs-box li .link {
  width: 14px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/new2/arrow_right.svg");
  background-size: 100% 100%;
}

.faqs-box li.active .link {
  background-image: url("../images/new2/arrow_down.svg");
}

.faqs-box li:last-child {
  border-bottom: 0;
}

/* Forex Trading */
.trade-page .trade-page_box1 li .item-icon {
  height: 65px;
}

.trade-page .trade-page_box1 li .item-icon img {
  max-height: 100%;
}

.trade-page .trade-page_box2 {
  background: #f7f7f7;
}

.trade-page .trade-page_box2 .box2-pic {
  width: 100%;
}

.trade-page .trade-page_box3 .list li .item-tit {
  border-color: #ddd;
}

.trade-page .trade-page_box3 .list li .item-tit .link {
  width: 10px;
  height: 20px;
  background-position: right center;
  background-size: 100% 100%;
  margin-right: 0.63rem;
  background-image: url("../images/new2/jia.svg");
}

.trade-page .trade-page_box3 .list li.active .item-tit {
  background: #000;
  color: #fff;
  border-color: transparent;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.59);
}

.trade-page .trade-page_box3 .list li.active .item-tit .link {
  background-image: url("../images/new2/jian2.svg");
}

/* table */
.common-table1 table {
  border-collapse: collapse;
}

.common-table1 table td {
  border: 1px solid #e7e7e7;
  padding: 1.56rem 1rem;
  white-space: nowrap;
}

.common-table1 table tr:nth-child(2n + 1) {
  background: #f8f8f8;
}

@media screen and (min-width: 1200px) {
  .common-table2{
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }
}



.common-table2:active {
    cursor: grabbing;
}

.common-table2.dragging {
  user-select: none;
  cursor: grabbing;
}

.common-table2 table thead th {
  text-align: center;
  padding: 15px 10px;
}

.common-table2 table thead th:nth-child(1) {
  min-width: 90px;
}

.common-table2 table thead th:nth-child(n + 2) {
  min-width: 130px;
}

.common-table2 table th,
.common-table2 table td {
  position: relative;
}

.common-table2 table th::after,
.common-table2 table td::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.common-table2 table th:last-child::after,
.common-table2 table td:last-child::after {
  display: none;
}

.common-table2 table th::after {
  background: #fff;
}

.common-table2 table td {
  padding: 15px 10px;
}

.common-table2 table tbody tr:nth-child(2n) {
  background: #f7f7f7;
}

.common-table3 table thead th {
  padding: 20px 10px;
}

.common-table3 table thead th:nth-child(n + 2) {
  min-width: 200px;
}

.common-table01 td:nth-child(2n + 1) {
  font-weight: bold;
}

.mask {
  z-index: 32;
}

.common-table02 td {
  white-space: wrap !important;
  text-align: left;
}

.common-table02 td:nth-child(2n) {
  font-weight: bold;
}

.common-step .step-wrap {
  position: relative;
  align-items: flex-end;
}

.common-step .step-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85%;
  background: #e92529;
  border-radius: 0.63rem;
  z-index: -1;
}

.common-step .step-wrap ul li {
  position: relative;
  margin-bottom: 1.2rem;
}

.common-step .step-wrap ul li::after {
  content: "";
  position: absolute;
  left: 0.92rem;
  top: 0.65rem;
  width: 0.94rem;
  height: 2.13rem;
  background: url("../images/new2/line3.png") no-repeat center;
  background-size: 100% 100%;
}

.common-step .step-wrap ul li .info {
  padding-left: 30px;
}

.common-step .step-wrap ul li:last-child {
  margin-bottom: 0;
}

.common-step .sec-type {
  margin-bottom: 2.5rem;
}

.common-step .col2 {
  max-width: 29.38rem;
}

/* trading-rules */
.trading-rules .filter-bar .tabs li a {
  white-space: nowrap;
}

.trading-rules .filter-bar .tabs li:hover a, .trading-rules .filter-bar .tabs li.active div {
  background: #000;
  color: #fff;
}

.trading-rules .filter-bar .more {
  width: 65px;
}

/* trading-guide */
.trading-guide .guide-right {
  width: 25.94rem;
}

.trading-guide .guide-box1 {
  color: #b9b9b9;
}

.trading-guide .guide-box1 a {
  color: #b9b9b9;
}

.trading-guide .guide-box1 a:hover, .trading-guide .guide-box1 a.active {
  color: #000;
}

.trading-guide .guide-box3 a {
  border-color: #e92529;
  color: #e92529;
}

.trading-guide .guide-box3 a:hover {
  background: #e92529;
  color: #fff;
}

.trading-guide .side-cont .side-box2 .item-cont {
  min-height: 220px;
}

.trading-guide .side-cont .side-box2 .li1 a {
  border-color: #e92529;
  color: #e92529;
}

.trading-guide .side-cont .side-box2 .li1 a:hover {
  background: #e92529;
  color: #fff;
}

.trading-guide .side-cont .side-box2 .li2 a {
  color: #b9b9b9;
}

.trading-guide .side-cont .side-box3 li:hover a {
  color: #e92529;
}

.trading-guide .side-cont .side-box4 li:nth-child(1) a {
  background: #e92529;
  border-color: #e92529;
}

.trading-guide .side-cont .side-box4 li:nth-child(2) a:hover {
  background: #fff;
  color: #000;
}

.trading-guide .side-cont .side-box4 li:hover a {
  opacity: 0.88;
}

/* copy-trading */
.copy-trading .copy-trading_box1 .trading-pic {
  max-width: 47.69rem;
}

.copy-trading .copy-trading_box1 .list li .icon {
  height: 4.06rem;
}

.copy-trading .copy-trading_box1 .list li .icon img {
  max-height: 100%;
}

.copy-trading .copy-trading_box1 .list li .desc {
  max-width: 15rem;
  margin: 0 auto;
}

.copy-trading .copy-trading_box3 .trading-pic {
  max-width: 75%;
}

.copy-trading .copy-trading_box3 .list {
  max-width: 100%;
}

.copy-trading .copy-trading_box3 .list li.active .item {
  background: #000;
  color: #fff;
}

/*select*/
.select dt {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  height: 3.38rem;
  cursor: pointer;
  padding: 0 0.94rem;
  font-weight: normal;
  background: #f7f7f7 url("../images/new2/arrow_down.svg") no-repeat right 1.56rem center;
  background-size: 0.88rem 0.5rem;
}

.select dt input {
  cursor: pointer;
  position: relative;
  display: block;
  text-align: left;
  overflow: hidden;
  background: none;
}

.select dt input::-webkit-input-placeholder {
  color: #666;
  font-size: 1rem;
  text-align: left;
}

.select dd {
  top: 3.5rem;
  z-index: 5;
}

.select dd ul {
  height: 13.44rem;
}

.select dd ul li {
  cursor: pointer;
  position: relative;
}

.select dd ul li::after {
  content: "";
  width: 1.88rem;
  height: 0.63rem;
  background: url("../images/new2/check1.svg") no-repeat right center;
  background-size: 100% 100%;
  position: absolute;
  right: 0.38rem;
  top: 50%;
  transform: translateY(-50%);
}

.select dd ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.select dd ul::-webkit-scrollbar-thumb {
  background: #333;
}

/* 图片统一尺寸 */
.fitImg {
  height: 0;
  padding-top: 94.3%;
}

.fitImg img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.fitImg:hover img {
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}

/* 响应式 */
@media (min-width: 768px) {
  .md\:w-5\/6 {
    width: 90%;
  }
  .text-40 {
    font-size: 1.4rem;
  }
  .radius-20 {
    border-radius: 0.75rem;
  }
  .radius-b20 {
    border-radius: 0 0 0.75rem 0.75rem;
  }
  .banner {
    height: 32rem;
  }
  .banner .absolute::before {
    display: none;
  }
  .banner .swiper-button-white {
    background-size: 1.2rem;
  }
  .banner .swiper-button-prev {
    left: 1rem;
  }
  .banner .swiper-button-next {
    right: 1rem;
  }
  .index-section2_box1 .ul {
    padding: 1.25rem 3.13rem;
  }
  .index-section2_box1 .ul .li {
    margin-bottom: 0;
  }
  .index-section2_box1 .ul .li .card-item_desc {
    margin-top: 0.25rem;
  }
  .index-section2_box1 .line img {
    width: 1.88rem;
  }
  .index-section3 li .item-pic {
    padding-top: 54.3%;
  }
  .index-section3 li .item-pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.48);
    transition: height 0.3s;
    z-index: 1;
  }
  .index-section3 li .item-pic .link-more {
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .index-section3 li .item-txt {
    position: unset;
    background: none;
    height: auto;
    text-align: left;
  }
  .index-section3 li:hover .item-pic::before {
    height: 100%;
  }
  .index-section3 li:hover .item-pic .link-more {
    display: block;
  }
  .index-section4 .item .item-pic {
    height: 15rem;
    margin-bottom: -5rem;
  }
  .index-section4 .item .item-txt .item-txt_link {
    opacity: 0;
  }
  .index-section4 .item:hover .item-txt .item-txt_link {
    opacity: 1;
  }
  .index-section4 .index-section3_list > ul > li {
    width: 50%;
  }
  .index-section4 .index-section3_list > ul > li .item {
    margin: 0.94rem;
  }
  .index-section6 {
    background-size: 100% 65%;
  }
  .index-section6 .index-section6_box2 li {
    max-width: 11.25rem;
  }
  .index-section7 .map li:hover {
    z-index: 2;
  }
  .index-section7 .map li:hover .point i {
    background-image: url("../images/new2/point2.png");
  }
  .index-section7 .map li:hover .map-layer {
    display: block;
  }
  .index-section8 .item .item-txt_link {
    height: 0;
  }
  .index-section8 .item:hover .item-txt_link {
    height: 2.25rem;
  }
  .app-page .app-page_box1 li .item .item-icon {
    height: 4.88rem;
  }
  .app-page .app-page_box2 .col1 {
    max-width: 10.94rem;
  }
  .app-page .app-page_box2 .col1 img {
    max-width: 100%;
  }
  .app-page .app-page_box4 .line img {
    max-width: 4.06rem;
  }
  .app-page .app-page_box4 li .item-icon {
    margin: 0 1.56rem;
  }
  .app-page .app-page_box4 li .item-icon img {
    width: 3.44rem;
  }
  .trade-page .trade-page_box1 li .item-icon {
    height: 93px;
  }
  .trade-page .trade-page_box2 .box2-pic {
    width: 46%;
  }
  .trade-page .trade-page_box3 .list li .item-tit .link {
    width: 14px;
    height: 24px;
  }
  .copy-trading .copy-trading_box1 .trading-pic {
    max-width: 25rem;
  }
  .copy-trading .copy-trading_box1 .list li .icon {
    height: 2.5rem;
  }
  .copy-trading .copy-trading_box1 .list li .desc {
    max-width: 80%;
  }
  .trading-rules .filter-bar .more {
    width: 167px;
  }
  .download-wrap .sec-type .tit {
    padding-left: 0;
  }
  .index-section5 .index-section5_box2 li .active .item-tit {
    font-size: 1.4rem;
  }
  .inner-slide > img:nth-child(1),
  .app-slide > img:nth-child(1) {
    object-fit: cover;
    object-position: right;
    min-height: 300px;
  }
}

@media (min-width: 1024px) {
  .text-40 {
    font-size: 1.5rem;
  }
  .radius-20 {
    border-radius: 0.94rem;
  }
  .radius-b20 {
    border-radius: 0 0 0.94rem 0.94rem;
  }
  .banner {
    height: 36rem;
  }
  .index-section1 .card-item::before, .index-section1 .card-item::after {
    width: 2.25rem;
    height: 4.13rem;
  }
  .index-section2_box1 .ul {
    padding: 1.88rem 5rem;
  }
  .index-section2_box1 .ul .li .card-item_desc {
    margin-top: 0.5rem;
  }
  .index-section2_box1 .line img {
    width: 2rem;
  }
  .inner-slide > img:nth-child(1),
  .app-slide > img:nth-child(1) {
    min-height: 360px;
    object-fit: cover;
    object-position: right;
  }
  .sec-type {
    margin-bottom: 4.06rem;
  }
  .sec-type .sec-type_tit {
    margin-bottom: -0.8rem;
  }
  .sec-type .sec-type_tit .tit {
    padding-left: 2.25rem;
    margin-bottom: 1.56rem;
  }
  .sec-type .sec-type_tit .tit::before {
    width: 1.88rem;
    height: 2.13rem;
  }
  .index-section2_box2 .card-item .card-item_icon {
    height: 4.06rem;
  }
  .index-section2_box2 .card-item .card-item_icon img {
    max-height: 90%;
  }
  .index-section4 .index-section3_list > ul > li {
    width: 33.33%;
  }
  .app-page_box3 li .item-info {
    max-width: 34.38rem;
  }
  .app-page_box3 li .item-pic {
    max-width: 50%;
  }
  .app-page_box3 li .item-pic img {
    max-width: 100%;
  }
  .common-download .download-wrap {
    background: url("../images/new2/bg_sec11.png") no-repeat bottom center;
    background-size: 100% 26vw;
    padding: 2.71vw 10.31vw 3.28vw 14.74vw;
    align-items: flex-end;
  }
  .common-download2 .download-wrap {
    background-image: url("../images/new2/bg_trade1.png");
    background-size: 100% 100%!important;
    padding:6vw 12.5vw;
    border-radius:0;
    align-items:center;
  }
  .common-download .download-wrap::after {
    display: none;
  }
  .common-download .sec-type {
    margin-bottom: 2.28vw;
  }
  .common-download .sec-type .tit {
    padding-left: 0;
    margin-bottom: 1.04vw;
  }
  .common-download .col2 {
    width: 24.48vw;
  }
  .common-download .list1 li {
    width: 6.72vw !important;
    margin-right: 1.41vw !important;
  }
  .common-download .list1 li:nth-child(1) {
    width: 9.84vw !important;
  }
    .common-download2  .left-box .txt1{
      line-height:1.2;
    }
    
  .common-step .step-wrap {
    background: url("../images/new2/bg_sec12.png") no-repeat bottom center;
    background-size: 100% 90%;
    padding: 2.71vw 9.9vw 0 7.81vw;
    align-items: flex-end;
  }
  .common-step .step-wrap::after {
    display: none;
  }
  .common-step .step-wrap .g-tit {
    font-size: 2.2vw;
  }
  .common-step .step-wrap .g-desc {
    font-size: 1.2vw;
    padding-top: 0.15vw;
  }
  .common-step .step-wrap .step-pic {
    max-width: 25vw;
    margin-right: 1.56vw;
  }
  .common-step .step-wrap ul {
    margin-top: 0.3vw;
  }
  .common-step .step-wrap ul li {
    margin-bottom: 0.45vw;
  }
  .common-step .step-wrap ul li .xh {
    font-size: 1.04vw;
  }
  .common-step .step-wrap ul li::after {
    left: 0.83vw;
    top: 0.95vw;
    width: 0.78vw;
    height: 1.77vw;
  }
  .common-step .step-wrap ul li .info {
    padding-left: 1.56vw;
    font-size: 1.2vw;
  }
  .common-step .step-wrap ul li .info .desc {
    line-height: 1.35;
    margin-top: 0;
  }
  .common-step .step-wrap ul li:last-child {
    margin-bottom: 0;
  }
  .index-section10 li.active .item {
    transform: scale(1.06);
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.25);
  }
  .app-page .app-page_box1 li .item .item-icon {
    height: 4.88rem;
  }
  .app-page .app-page_box2 .col1 {
    max-width: 10.94rem;
  }
  .app-page .app-page_box3 li .item-info {
    max-width: 34.38rem;
  }
  .app-page .app-page_box4 .line img {
    max-width: 4.06rem;
  }
  .app-page .app-page_box4 li .item-icon {
    margin: 0 1.56rem;
  }
  .app-page .app-page_box4 li .item-icon img {
    width: 3.44rem;
  }
  .copy-trading .copy-trading_box1 .trading-pic {
    max-width: 37.5rem;
  }
  .copy-trading .copy-trading_box1 .list li .icon {
    height: 3.5rem;
  }
  .copy-trading .copy-trading_box1 .list li .desc {
    max-width: 12.5rem;
  }
  .copy-trading .copy-trading_box3 .list {
    max-width: 88%;
  }
  .copy-trading .copy-trading_box3 .list li.active {
    transform: scale(1.35);
  }
  .common-download2 .line1 img{
    display:block;
   }
.common-download2 .line1{
  border-top:0;
  margin: 0;
  width:auto;
}
}

@media (min-width: 1280px) {
  .text-40 {
    font-size: 1.65rem;
  }
  .radius-20 {
    border-radius: 1.25rem;
  }
  .radius-b20 {
    border-radius: 0 0 1.25rem 1.25rem;
  }
  .banner .swiper-button-prev {
    left: 3rem;
  }
  .banner .swiper-button-next {
    right: 3rem;
  }
  .banner .swiper-pagination {
    bottom: 1.88rem;
  }
  .banner .swiper-pagination-bullet {
    width: 1.2rem;
  }
  .banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 4rem;
  }
  .index-section2_box1 .ul {
    padding: 2.25rem 6.25rem;
  }
  .index-section2_box1 .ul .li .card-item_desc {
    margin-top: 0.5rem;
  }
  .copy-trading .copy-trading_box1 .trading-pic {
    max-width: 37.5rem;
  }
  .copy-trading .copy-trading_box3 .trading-pic {
    max-width: 65%;
  }
  .copy-trading .copy-trading_box3 .list {
    max-width: 78%;
  }
  .common-step .step-wrap {
    background-size: 100% 73%;
   } 
  .common-step .step-wrap .g-tit {
    font-size: 2.08vw;
  }
  .common-step .step-wrap .g-desc {
    font-size: 0.94vw;
    padding-top: 0.85vw;
  }
  .common-step .step-wrap .step-pic {
    max-width: 29.69vw;
    margin-right: 1.56vw;
  }
  .common-step .step-wrap ul {
    margin-top: 1.25vw;
  }
  .common-step .step-wrap ul li {
    margin-bottom: 0.95vw;
  }
  .common-step .step-wrap ul li .xh {
    font-size: 1.04vw;
  }
  .common-step .step-wrap ul li::after {
    left: 0.63vw;
    top: 0.65vw;
    width: 0.78vw;
    height: 1.77vw;
  }
  .common-step .step-wrap ul li .info {
    padding-left: 1.56vw;
    font-size: 0.94vw;
  }
  .common-step .step-wrap ul li .info .desc {
    line-height: 1.35;
    margin-top: 0.31vw;
  }
  .common-step .step-wrap ul li:last-child {
    margin-bottom: 0;
  }
  .common-download .download-wrap {
    background-size: 100%;
  }

 
}

@media (min-width: 1536px) and (max-width: 1620px) {
  .header-nav > li {
    margin-left: 1.8rem !important;
  }
  .header-nav > li:first-child {
    margin-left: 0;
  }
  .header {
    font-size: 1.05rem;
  }
}

@media (min-width: 1536px) {
  .md\:w-5\/6 {
    width: 83.333333%;
  }
  .text-40 {
    font-size: 2.5rem;
  }
  .banner {
    height: 45.81rem;
  }
  .banner .swiper-pagination-bullet {
    width: 1.63rem;
  }
  .banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 7.63rem;
  }
  .index-section3 li .item-pic {
    padding-top: 65.3%;
  }
  .index-section7 .map li .map-layer {
    width: 22.08vw;
  }
  .index-section4 .index-section3_list > ul > li {
    width: 20%;
  }
  .index-section2_box1 .ul {
    padding: 2.63rem 8.56rem;
  }
  .index-section2_box1 .ul .li .card-item_desc {
    margin-top: 0.63rem;
  }
  .index-section2_box1 .line img {
    width: 3.56rem;
  }
  .index-section10 li .item {
    background: #e92529;
    color: #fff;
    transition: all 0.3s;
  }
  .index-section10 li .item .item-cont_icon {
    right: 0.94rem;
    bottom: 1.75rem;
  }
  .index-section10 li .item.active {
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.25);
  }
  .index-section10 li .item.active .item-cont_link {
    visibility: visible;
  }
  .app-page .app-page_box1 li .item .item-icon {
    height: 4.88rem;
  }
  .app-page .app-page_box2 .col1 {
    max-width: 10.94rem;
  }
  .app-page .app-page_box3 li .item-info {
    max-width: 34.38rem;
  }
  .app-page .app-page_box4 .line img {
    max-width: 8.13rem;
  }
  .app-page .app-page_box4 li .item-icon {
    margin: 0 1.56rem 0 0;
  }
  .app-page .app-page_box4 li .item-icon img {
    width: 4.81rem;
  }
  .copy-trading .copy-trading_box1 .trading-pic {
    max-width: 47.69rem;
  }
  .copy-trading .copy-trading_box1 .list li .icon {
    height: 4.06rem;
  }
  .copy-trading .copy-trading_box1 .list li .desc {
    max-width: 15rem;
  }
  .copy-trading .copy-trading_box3 .trading-pic {
    max-width: 65.44rem;
  }
  .copy-trading .copy-trading_box3 .list {
    max-width: 73.13rem;
  }
}


