@keyframes blinkcs {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blinkcs {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blinkcs {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes blinkcs {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes blinkcs {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation: zoomIn 0.5s linear;
  animation: zoomIn 0.5s linear;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation: bounceIn 1s linear 0s;
  animation: bounceIn 1s linear;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 0.7s linear 0s;
  animation: fadeIn 0.7s linear;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.typed-cursor {
  position: relative;
  top: 3px;
  width: 1px;
  background: #999;
  height: 20px;
  margin-left: 5px;
  font-size: 1.4em;
  opacity: 1;
  font-weight: 300;
  color: #999;
  display: inline-block;
  -webkit-animation: blinkcs 0.7s infinite;
  -moz-animation: blinkcs 0.7s infinite;
  -ms-animation: blinkcs 0.7s infinite;
  -o-animation: blinkcs 0.7s infinite;
  animation: blinkcs 0.7s infinite;
  font-family: MuseoSans, Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.blink {
  -webkit-animation: blink 0.35s linear 2;
  -moz-animation: blink 0.35s linear 2;
  -ms-animation: blink 0.35s linear 2;
  -o-animation: blink 0.35s linear 2;
  animation: blink 0.35s linear 2;
}

@keyframes blink {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-ms-keyframes blink {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-o-keyframes blink {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

.blinkc {
  -webkit-animation: blinkc 0.35s linear 2;
  -moz-animation: blinkc 0.35s linear 2;
  -ms-animation: blinkc 0.35s linear 2;
  -o-animation: blinkc 0.35s linear 2;
  animation: blinkc 0.35s linear 2;
}

@keyframes blinkc {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-webkit-keyframes blinkc {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-moz-keyframes blinkc {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-ms-keyframes blinkc {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-o-keyframes blinkc {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

.blinkb {
  -webkit-animation: blinkb 0.35s linear 2;
  -moz-animation: blinkb 0.35s linear 2;
  -ms-animation: blinkb 0.35s linear 2;
  -o-animation: blinkb 0.35s linear 2;
  animation: blinkb 0.35s linear 2;
}

@keyframes blinkb {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-webkit-keyframes blinkb {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-moz-keyframes blinkb {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-ms-keyframes blinkb {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

@-o-keyframes blinkb {
  0% {
    opacity: 1;
    color: #0096dc;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #0096dc;
  }
}

.blinkd {
  -webkit-animation: blinkd 0.35s linear 2;
  -moz-animation: blinkd 0.35s linear 2;
  -ms-animation: blinkd 0.35s linear 2;
  -o-animation: blinkd 0.35s linear 2;
  animation: blinkd 0.35s linear 2;
}

@keyframes blinkd {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-webkit-keyframes blinkd {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-moz-keyframes blinkd {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-ms-keyframes blinkd {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-o-keyframes blinkd {
  0% {
    opacity: 1;
    color: #ffa000;
  }
  50% {
    opacity: 1;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #ffa000;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation: fadeOut 1s linear;
  animation: fadeOut 1s linear;
}

/* Begin Hero bar */

.hero {
  width: 100%;
  position: relative;
  top: -100px;
  left: 0;
  min-height: 100px;
}

.hero .flexslider {
  overflow: hidden;
}

.hero .flexslider .slides {
  position: relative;
  left: 50%;
  margin-left: -960px;
  width: 1920px;
}

.hero .flexslider .slides img {
  display: block;
  height: 520px;
  background-size: cover !important;
}

.hero .flexslider .slides a {
  line-height: 0;
}

.hero .flexslider .slides .market {
  background: url(//dl.cfxz123.com/source/www/homepage/hero_retire0.jpg)
    center no-repeat;
}

.hero .flexslider .slides .retire {
  background: url(//dl.cfxz123.com/source/www/homepage/mainpage-banner.jpg)
    center no-repeat;
}

.hero .flexslider .slides .fees {
  background: url(//dl.cfxz123.com/source/www/homepage/hero_fees.jpg) center
    no-repeat;
}

.hero .flexslider .slides .dream {
  background: url(//dl.cfxz123.com/source/www/homepage/hero_market.jpg) center
    no-repeat;
}

.hero .flexslider .slides .time {
  background: url(//dl.cfxz123.com/source/www/homepage/autumn.jpg) center
    no-repeat;
}

.hero .flexslider .slides .autumn {
  background: url(//dl.cfxz123.com/source/www/homepage/hero_time.jpg) center
    no-repeat;
}

.hero .flexslider .slides .winner {
  background: url(//dl.cfxz123.com/source/www/homepage/hero_dream.jpg) center
    no-repeat;
}

.hero .animated-headline {
  position: absolute;
  top: 50%;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  color: #fff;
}

.hero .animated-headline .animation {
  color: #90caf9;
}

.hero .animated-headline .animation.first {
  color: #90caf9;
}

.hero .animated-headline .animation.second {
  color: #7fb800;
}

.hero .animated-headline .animation.third {
  color: #ffb400;
}

.hero .animated-headline .animation.fourth {
  color: #90caf9;
}

.hero .animated-headline .animation.fifth {
  color: #7fb800;
}

.hero .animated-headline span {
  display: inline-block;
}

.hero h1 {
  font-size: 3.2em;
  line-height: 1.3;
  z-index: 500;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #1c4560;
  width: 100%;
  height: 100%;
}

/* -----------------------End Hero bar--------------------------------------*/

.home-page .date-formatnb {
  font-family: Myriad, arial, sans-serif;
  font-size: 1.29em;
  position: relative;
  top: 1px;
}

/* Begin button top */

.button-top {
  position: absolute;
  z-index: 7;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -44px;
  height: 68px;
}

.button-top img {
  opacity: 1;
}

.button-top a {
  display: inline-block;
  position: absolute;
  z-index: 9;
  width: 50%;
  height: 68px;
  line-height: 68px;
  color: #ffffff;
  font-size: 2.6em;
  transition: all 0.35s ease-in;
}

.button-top a span {
  display: inline-block;
}

.button-top a.bt-left {
  background-size: contain;
  background: url(//dl.cfxz123.com/source/www/homepage/buttop-left.png) center
    no-repeat;
  transition: all 0.35s ease-in;
  left: 0;
}

.button-top a.bt-left:before {
  content: "";
  display: block;
  width: 85px;
  height: 23px;
  position: absolute;
  top: 22px;
  left: 29%;
  background: url(//dl.cfxz123.com/source/www/homepage/real.png) center
    no-repeat;
  transition: all 0.35s ease-in;
}

.button-top a.bt-left:hover {
  background: url(//dl.cfxz123.com/source/www/homepage/buttopl-hover.png)
    center no-repeat;
}

.button-top a.bt-left:hover:before {
  left: 26%;
  transform: scaleX(0.8);
}

.button-top a.bt-left:hover span {
  left: 45%;
}

.button-top a.bt-left span {
  position: absolute;
  top: 0;
  left: 48%;
  transition: all 0.35s ease-in;
}

.button-top a.bt-right {
  background-size: contain;
  background: url(//dl.cfxz123.com/source/www/homepage/buttop-right.png)
    center no-repeat;
  transition: all 0.35s ease-in;
  right: 0;
}

.button-top a.bt-right:before {
  content: "";
  display: block;
  width: 85px;
  height: 22px;
  position: absolute;
  top: 22px;
  left: 29%;
  background: url(//dl.cfxz123.com/source/www/homepage/demo.png) center
    no-repeat;
  transition: all 0.35s ease-in;
}

.button-top a.bt-right:hover {
  background: url(//dl.cfxz123.com/source/www/homepage/buttopr-hover.png)
    center no-repeat;
}

.button-top a.bt-right:hover:before {
  left: 26%;
  transform: scaleX(0.8);
}

.button-top a.bt-right:hover span {
  left: 45%;
}

.button-top a.bt-right span {
  position: absolute;
  top: 0;
  left: 48%;
  transition: all 0.35s ease-in;
}

/* End button top */

/* Begin top slogan*/

.top-slogan {
  text-align: center;
  font-size: 2em;
  padding-bottom: 37px;
  color: #333333;
  height: 76px;
}

.top-slogan #typed {
  color: #0096dc;
  font-family: "Microsoft JhengHei";
  font-size: 1.4em;
  position: relative;
}

.top-slogan .black {
  color: #333333;
  font-family: "Microsoft JhengHei";
  font-size: 1.4em;
  position: relative;
  top: 2px;
}

.top-slogan .type-wrapper {
  min-width: 107px;
  display: inline-block;
  text-align: left;
  padding-left: 7px;
  vertical-align: text-bottom;
}

.top-slogan a {
  color: #0096dc;
}

.top-slogan #typed-strings {
  display: none;
}

/* End top slogan*/

/* -----------------------Begin section1 -----------------------------------*/

.section1 {
  overflow: hidden;
  padding-top: 50px;
  border-top: 1px solid #a8c0cb;
}

.section1 .col-ssm-7 {
  width: 51.72%;
}

.section1 .col-ssm-5 {
  width: 48.28%;
}

.section1 .nav-wrapper {
  width: 93.33%;
  margin: 0 auto;
  margin-left: 0;
}

.section1 .nav-wrapper li {
  float: left;
  width: 20%;
  margin-left: -1px;
}

.section1 .nav-wrapper li a {
  border: 1px solid #cccccc;
  display: block;
  height: 40px;
  font-size: 1.6em;
  line-height: 40px;
  text-align: center;
  color: #666666;
  padding-left: 26px;
  transition: all 0.15s ease-out;
}

.section1 .nav-wrapper li a.ic-stock {
  background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-stock.png)
    9px center no-repeat;
}

.section1 .nav-wrapper li a.ic-currency {
  background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-currency.png)
    9px center no-repeat;
}

.section1 .nav-wrapper li a.ic-gold {
  background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-gold.png) 9px
    center no-repeat;
}

.section1 .nav-wrapper li a.ic-oil {
  background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-oil.png) 9px
    center no-repeat;
}

.section1 .nav-wrapper li a.ic-ideal {
  background: #fff
    url(//dl.cfxz123.com/source/www/homepage/icon-virtual-currency.png) 9px
    center no-repeat;
}

.section1 .nav-wrapper li.active a,
.section1 .nav-wrapper li:hover a {
  color: #fff;
  border: 1px solid #03354c;
}

.section1 .nav-wrapper li.active a.ic-stock,
.section1 .nav-wrapper li:hover a.ic-stock {
  background: #03425f url(//dl.cfxz123.com/source/www/homepage/ichv-stock.png)
    9px center no-repeat;
}

.section1 .nav-wrapper li.active a.ic-currency,
.section1 .nav-wrapper li:hover a.ic-currency {
  background: #03425f
    url(//dl.cfxz123.com/source/www/homepage/ichv-currency.png) 9px center
    no-repeat;
}

.section1 .nav-wrapper li.active a.ic-gold,
.section1 .nav-wrapper li:hover a.ic-gold {
  background: #03425f url(//dl.cfxz123.com/source/www/homepage/ichv-gold.png)
    9px center no-repeat;
}

.section1 .nav-wrapper li.active a.ic-oil,
.section1 .nav-wrapper li:hover a.ic-oil {
  background: #03425f url(//dl.cfxz123.com/source/www/homepage/ichv-oil.png)
    9px center no-repeat;
}

.section1 .nav-wrapper li.active a.ic-ideal,
.section1 .nav-wrapper li:hover a.ic-ideal {
  background: #03425f
    url(//dl.cfxz123.com/source/www/homepage/icon-virtual-currency-p.png) 9px
    center no-repeat;
}

.section1 .quotation {
  position: relative;
  height: 551px;
}

.section1 .quotation .frame1 .block-1 {
  display: block;
}

.section1 .quotation .frame1 .block-2 {
  display: block;
}

.section1 .quotation .frame1 .block-3 {
  display: block;
}

.section1 .quotation .frame1 .block-4 {
  display: block;
}

.section1 .quotation .block-wrapper {
  position: absolute;
  width: 229px;
  height: 160px;
  left: 0;
  top: 16.33%;
  border: 1px solid #1c4560;
  overflow: hidden;
}

.section1 .quotation .block-wrapper ul {
  padding: 10px 12px;
  opacity: 0.9;
  background: #fff;
  height: 117px;
}

.section1 .quotation .block-wrapper ul i {
  color: #333;
  font-size: 0.47em;
  padding-left: 3px;
}

.section1 .quotation .block-wrapper li {
  font-size: 2.6em;
}

.section1 .quotation .block-wrapper .price {
  margin-bottom: -4px;
}

.section1 .quotation .block-wrapper .price i {
  display: block;
  font-size: 0.54em;
  margin-top: 10px;
}

.section1 .quotation .block-wrapper .price span {
  font-size: 1.2em;
  font-family: Myriadr;
}

.section1 .quotation .block-wrapper .price.up {
  color: #ffa000;
}

.section1 .quotation .block-wrapper .price.down {
  color: #0096dc;
}

.section1 .quotation .block-wrapper .timer {
  width: 46% !important;
}

.section1 .quotation .block-wrapper .timer,
.section1 .quotation .block-wrapper .percent {
  float: left;
  width: 54%;
  font-size: 2em;
}

.section1 .quotation .block-wrapper .timer i,
.section1 .quotation .block-wrapper .percent i {
  font-size: 0.7em;
  padding-right: 3px;
  position: relative;
  top: -2px;
}

.section1 .quotation .block-wrapper .timer .up,
.section1 .quotation .block-wrapper .percent .up {
  position: relative;
  padding-left: 15px;
}

.section1 .quotation .block-wrapper .timer .up:before,
.section1 .quotation .block-wrapper .percent .up:before {
  content: "";
  width: 6px;
  height: 4px;
  background: url(//dl.cfxz123.com/source/www/homepage/increased.png)
    no-repeat;
  position: absolute;
  left: 5px;
  top: 10px;
}

.section1 .quotation .block-wrapper .timer .down,
.section1 .quotation .block-wrapper .percent .down {
  position: relative;
  padding-left: 15px;
}

.section1 .quotation .block-wrapper .timer .down:before,
.section1 .quotation .block-wrapper .percent .down:before {
  content: "";
  width: 6px;
  height: 4px;
  background: url(//dl.cfxz123.com/source/www/homepage/decreased1.png)
    no-repeat;
  position: absolute;
  left: 5px;
  top: 10px;
}

.section1 .quotation .block-wrapper .timer span {
  font-family: Myriad;
}

.section1 .quotation .block-wrapper .percent span {
  font-size: 0.7em;
  font-family: Myriad;
}

.section1 .quotation .block-wrapper .percent span.down {
  font-size: 0.9em;
  color: #0096dc;
}

.section1 .quotation .block-wrapper .percent span.up {
  font-size: 0.9em;
  color: #ffa000;
}

.section1 .quotation .block-1 {
  left: 0;
  top: 16.33%;
  z-index: 29;
  display: block;
}

.section1 .quotation .block-2 {
  left: 46.67%;
  top: 7.44%;
  z-index: 29;
  display: block;
}

.section1 .quotation .block-3 {
  left: 8.33%;
  top: 52.63%;
  z-index: 29;
  display: block;
}

.section1 .quotation .block-4 {
  left: 55%;
  top: 43.92%;
  z-index: 29;
  display: block;
}

.section1 .quotation h3 {
  font-size: 1.6em;
  text-align: left;
  background: #03425f;
  height: 42px;
  line-height: 42px;
  color: #fff;
  padding: 0 12px;
  background-size: 63px 35px;
  position: relative;
}

.section1 .quotation h3 span.number {
  font-family: Myriad;
  font-size: 1.2em;
  top: 1px;
}

.section1 .quotation h3 span {
  z-index: 27;
  position: relative;
}

.section1 .quotation h3 a {
  transition: all 0.1s ease-in;
  color: #fff;
}

.section1 .quotation h3 a:hover {
  color: #0096dc;
}

.section1 #stock {
  position: absolute;
  top: 58.92%;
  left: 0;
  transition: all 0.7s ease-in;
  z-index: 28;
}

.section1 #gold {
  position: absolute;
  top: 58.92%;
  left: 0;
  transition: all 0.7s ease-in;
  z-index: 28;
}

.section1 #oil {
  position: absolute;
  top: 58.92%;
  left: 0;
  transition: all 0.7s ease-in;
  z-index: 28;
}

.section1 #currency {
  position: absolute;
  top: 58.92%;
  left: 0;
  transition: all 0.7s ease-in;
  z-index: 28;
}

.section1 #btb {
  position: absolute;
  top: 58.92%;
  left: 0;
  transition: all 0.7s ease-in;
  z-index: 28;
}

.section1 .frame-bg {
  position: absolute;
}

.section1 .frame-bg1 {
  top: 58.92%;
  left: 0;
  opacity: 1;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  transition: all 0.7s ease-in;
  z-index: 27;
}

.section1 .frame-bg2 {
  top: 58.92%;
  left: 0;
  opacity: 0.5;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  transition: all 0.7s ease-in;
  z-index: 26;
}

.section1 .frame-bg3 {
  top: 58.92%;
  left: 0;
  opacity: 0.7;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1 .frame-bg4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  transition: all 0.7s ease-in;
  z-index: 24;
}

.section1 .frame-bg5 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  transition: all 0.7s ease-in;
  z-index: 23;
}

.section1 .exchange {
  position: relative;
  width: 92.86%;
  height: 50px;
  margin: 0 auto;
}

.section1 .exchange h2 {
  font-size: 2.4em;
  position: absolute;
  top: -17px;
  background: #fff;
  left: 0;
  right: 0;
  width: 100%;
  text-align: left;
  margin-top: 10px;
  color: #666666;
}

.section1 .exchange h2 span {
  color: #035a82;
  font-size: 1.5em;
}

.section1 .intro {
  margin-top: 20px;
}

.section1 .intro li {
  width: 100%;
  font-size: 1.6em;
  color: #333;
  padding: 0 0 7px 20px;
  line-height: 1.8;
}

.section1 .intro h3 {
  font-size: 1.14em;
  color: #035a82;
  margin-bottom: 5px;
}

.section1 .intro h3 .num {
  font-size: 2.25em;
  color: #035a82;
  padding-right: 6px;
  font-family: Myriad, arial, sans-serif;
}

.section1 .link-more {
  font-size: 1.6em;
  color: #03a9f4;
  float: right;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-right: 21px;
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 92% center
    no-repeat;
  transition: all 0.25s ease-in;
  position: relative;
  z-index: 30;
}

.section1 .link-more:hover {
  background-position: right center;
}

.section1 .note {
  text-align: right;
  font-size: 1.4em;
  color: #999;
}

.section1 .note .red {
  color: #bf0000;
}

.section1 .heart-rate {
  width: 227px;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
}

.section1 .fade-in {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #03425f;
  top: 0;
  right: 0;
  animation: heartRateIn 5s linear infinite;
}

.section1 .fade-out {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  animation: heartRateOut 5s linear infinite;
  background: white;
  background: -moz-linear-gradient(
    left,
    #03425f 0%,
    #03425f 50%,
    rgba(3, 66, 95, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    #03425f 0%,
    #03425f 50%,
    rgba(3, 66, 95, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    #03425f 0%,
    #03425f 50%,
    rgba(3, 66, 95, 0) 100%
  );
  background: -ms-linear-gradient(
    left,
    #03425f 0%,
    #03425f 50%,
    rgba(3, 66, 95, 0) 100%
  );
  background: linear-gradient(
    to right,
    #03425f 0%,
    #03425f 80%,
    rgba(3, 66, 95, 0) 100%
  );
}

@keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}

.section1.active #stock {
  position: absolute;
  top: 41.92%;
  left: 0;
}

.section1.active #gold {
  position: absolute;
  top: 41.92%;
  left: 0;
}

.section1.active #oil {
  position: absolute;
  top: 41.92%;
  left: 0;
}

.section1.active #currency {
  position: absolute;
  top: 41.92%;
  left: 0;
}

.section1.active #btb {
  position: absolute;
  top: 41.92%;
  left: 0;
}

.section1.active .frame-bg1 {
  top: 41.92%;
  left: 0;
  opacity: 1;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg1.before {
  top: 41.92%;
  left: 0;
  opacity: 1;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg1.after5 {
  top: 63.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 23;
}

.section1.active .frame-bg1.after4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg1.after3 {
  top: 53.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1.active .frame-bg1.after2 {
  top: 47.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.6s ease-in;
  z-index: 26;
}

.section1.active .frame-bg1.after1 {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.5s ease-in;
}

.section1.active .frame-bg2 {
  top: 47.92%;
  left: 0;
  opacity: 0.5;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg2.before {
  top: 41.92%;
  left: 0;
  opacity: 0.5;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg2.after5 {
  top: 63.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg2.after4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg2.after3 {
  top: 53.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1.active .frame-bg2.after2 {
  top: 47.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.6s ease-in;
  z-index: 26;
}

.section1.active .frame-bg2.after1 {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.5s ease-in;
}

.section1.active .frame-bg3 {
  top: 53.92%;
  left: 0;
  opacity: 0.7;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg3.before {
  top: 41.92%;
  left: 0;
  opacity: 0.7;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg3.after5 {
  top: 63.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg3.after4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg3.after3 {
  top: 53.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1.active .frame-bg3.after2 {
  top: 47.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.6s ease-in;
  z-index: 26;
}

.section1.active .frame-bg3.after1 {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.5s ease-in;
}

.section1.active .frame-bg4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg4.before {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg4.after5 {
  top: 63.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg4.after4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg4.after3 {
  top: 53.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1.active .frame-bg4.after2 {
  top: 47.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.6s ease-in;
  z-index: 26;
}

.section1.active .frame-bg4.after1 {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.5s ease-in;
}

.section1.active .frame-bg5 {
  top: 64.59%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg5.before {
  top: 41.92%;
  left: 0;
  opacity: 1;
  transition: all 0.7s ease-in;
}

.section1.active .frame-bg5.after5 {
  top: 63.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg5.after4 {
  top: 58.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.8s ease-in;
  z-index: 24;
}

.section1.active .frame-bg5.after3 {
  top: 53.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.7s ease-in;
  z-index: 25;
}

.section1.active .frame-bg5.after2 {
  top: 47.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.6s ease-in;
  z-index: 26;
}

.section1.active .frame-bg5.after1 {
  top: 41.92%;
  left: 0;
  opacity: 0.9;
  transition: all 0.5s ease-in;
}

/* End section1 */

/* Begin section2 */

.section2 {
  background: url(//dl.cfxz123.com/source/www/homepage/section2-bg.jpg)
    repeat-x scroll;
}

.section2 .container {
  height: 650px;
  overflow: hidden;
}

.section2 h2 {
  padding-top: 4.5%;
  text-align: center;
  color: #7b7e7f;
  position: relative;
  z-index: 69;
}

.section2 h2 i {
  color: #035a82;
  font-size: 3.6em;
  display: block;
  margin-bottom: 20px;
}

.section2 h2 span {
  display: block;
  font-size: 2.4em;
  color: #666666;
}

.section2 .des-cript {
  font-size: 1.6em;
  color: #333333;
  text-align: center;
  margin-top: 0;
}

.section2 .des-cript a {
  display: block;
  font-size: 1em;
  color: #fff;
  background: #0096dc;
  width: 200px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  transition: all 0.15s ease-in;
}

.section2 .des-cript a:hover {
  background: #035a82;
}

.section2 .des-cript .note {
  margin-top: 0px;
  font-size: 0.88em;
  color: #999;
}

.section2 .des-cript .red {
  color: #cc0000;
}

.section2 .list-depict {
  margin-top: 2.57%;
}

.section2 .list-depict li {
  float: left;
  width: 25%;
  min-height: 89px;
  position: relative;
  padding-left: 3.1%;
}

.section2 .list-depict li p {
  font-size: 1.6em;
  color: #333333;
  text-align: left;
  width: 90%;
  margin: 0 auto 7.59%;
}

.section2 .list-depict li p:before {
  content: "";
  width: 13px;
  height: 9px;
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/homepage/checkmark.png)
    no-repeat;
  margin-right: 9px;
  position: relative;
}

.section2 .chart-wrapper {
  margin-top: -3%;
}

.section2 .chart-wrapper .pie-chart {
  width: 25%;
  float: left;
  background: transparent;
  position: relative;
}

.section2 .chart-wrapper .pie-chart .highcharts-container {
  transition: all ease 0.3s;
}

.section2 .chart-wrapper .pie-chart img {
  display: block;
  margin: 0 auto;
}

.section2 .chart-wrapper .pie-chart:hover .highcharts-container {
  transform: scale(1.2, 1.2) translateY(-50px);
}

.section2 .chart-wrapper .pie-chart:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: url(//dl.cfxz123.com/source/www/homepage/light.png) center 100%
    no-repeat;
  opacity: 0;
  filter: alpha(opacity=0);
}

.section2 .chart-wrapper .pie-chart.active .highcharts-container {
  transform: scale(1.2, 1.2) translateY(-10px);
}

.section2 .chart-wrapper .pie-chart.active:before {
  background: url(//dl.cfxz123.com/source/www/homepage/light.png) center 100%
    no-repeat;
  opacity: 1;
  filter: alpha(opacity=100);
  height: 130px;
  transition: all 0.2s ease-in;
}

.section2 .chart-wrapper .pie-chart.active .gloss {
  height: 32px;
  line-height: 32px;
  font-size: 1.9em;
  width: 35%;
  letter-spacing: 2px;
}

.section2 .chart-wrapper .pie-chart.active .figures {
  font-size: 5.7em;
  top: 42.5%;
}

.section2 .chart-wrapper .figures {
  position: absolute;
  font-size: 4.2em;
  font-family: Myriad, arial, sans-serif;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 46%;
  transition: all 0.3s ease;
}

.section2 .chart-wrapper .gloss {
  position: absolute;
  font-size: 1.6em;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 63.5%;
  height: 26px;
  line-height: 26px;
  width: 30%;
  letter-spacing: 2px;
  transition: all 0.25s ease;
}

.section2 .chart-wrapper .gloss a {
  display: block;
  width: 100%;
}

.section2 .chart-wrapper .cap4 {
  color: #cf8200;
  border: 1px solid #cf8200;
  border-radius: 5px;
}

.section2 .chart-wrapper .cap3 {
  color: #035b83;
  border: 1px solid #035b83;
  border-radius: 5px;
}

.section2 .chart-wrapper .cap2 {
  color: #cf8200;
  border: 1px solid #cf8200;
  border-radius: 5px;
}

.section2 .chart-wrapper .cap1 {
  color: #669400;
  border: 1px solid #669400;
  border-radius: 5px;
}

.section2 .highcharts-data-labels {
  text-align: center;
  font-size: 30px;
}

.section2 i.per {
  font-size: 30px;
  cursor: pointer;
  font-style: normal;
  font-family: Myriad, Helvetica, Arial, sans-serif;
  cursor: default;
}

.section2 .pri-pe {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-family: Myriad, Helvetica, Arial, sans-serif;
  cursor: default;
}

.section2 .highcharts-title {
  font-family: "Microsoft JhengHei", "Microsoft YaHei", arial, sans-serif !important;
}

.section2 .highcharts-tooltip .pri-pe {
  display: inline;
  padding: 2px;
  font-size: 9px !important;
}

.section2 .highcharts-tooltip i.per {
  font-size: 9px !important;
}

.section2 .highcharts-tooltip > span {
  padding: 2px;
  display: block;
  font-size: 8px !important;
  text-align: center;
}

.section2 .highcharts-tooltip {
  border: none;
}

/* End section2 */

@font-face {
  font-family: MuseoSans;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/museo_sans/museo_light.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/museo_sans/museo_light.woff) format("woff"),
    url(../fonts/museo_sans/museo_light.ttf) format("truetype");
}

@font-face {
  font-family: ModernPictogramsPro;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/modern_pictograms/modernpictogramspro_234.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/modern_pictograms/modernpictogramspro_234.woff) format("woff"),
    url(../fonts/modern_pictograms/modernpictogramspro_234.ttf)
      format("truetype");
}

@font-face {
  font-family: Myriad;
  font-style: normal;
  src: url(../fonts/myriad/MYRIADPRO-LIGHT.OTF) format("embedded-opentype"),
    url(../fonts/myriad/MYRIADPRO-LIGHT.woff) format("woff");
}

@font-face {
  font-family: Myriadb;
  font-style: normal;
  src: url(../fonts/myriad/MYRIADPRO-BOLD.OTF) format("embedded-opentype");
}

@font-face {
  font-family: Myriadr;
  font-style: normal;
  src: url(../fonts/myriad/MyriadPro-Regular.otf) format("embedded-opentype"),
    url(../fonts/myriad/MyriadPro-Regular.woff) format("woff");
}

.show {
  display: block;
}

.hide {
  display: none;
}

.itemdt-wrapp ul li.hide{
  display: none !important;
}

#price2 {
  display: block;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation: fadeInUp 1s linear;
  animation: fadeInUp 1s linear;
}

/* Begin section 3 */

.section3 {
  padding: 79px 0;
}

.section3 h2 {
  font-size: 2.2em;
  color: #666666;
  margin-bottom: 22px;
}

.section3 h2 span {
  font-size: 1.45em;
  color: #035a82;
}

.section3 .news {
  height: 460px;
  border: 1px solid #999;
  position: relative;
  width: 96.55%;
}

.section3 .col-left {
  border-right: 1px solid #999;
  height: 100%;
  width: 35.71%;
  float: left;
  position: relative;
}

.section3 .col-left span {
  display: inline-block;
  height: 100%;
  overflow: hidden;
}

.section3 .col-left ul {
  float: right;
  padding-top: 100px;
  margin-right: 12px;
  position: absolute;
  top: 0;
  right: 0;
}

.section3 .col-right {
  width: 64.29%;
  float: left;
  padding: 32px 27px 0;
  position: relative;
}

.section3 .col-right .item-wrapper {
  margin-bottom: 28px;
}

.section3 .col-right .item-wrapper li {
  float: left;
  width: 50%;
  text-align: center;
}

.section3 .col-right .item-wrapper li a {
  width: 100%;
  display: block;
  height: 42px;
  line-height: 42px;
  font-size: 2em;
  color: #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  transition: all 0.15s ease-in;
}

.section3 .col-right .item-wrapper li:hover a {
  color: #035a82;
}

.section3 .col-right .item-wrapper li.active a {
  border-bottom: 2px solid #035a82;
  color: #035a82;
}

.section3 .col-right .sub-info li a {
  display: block;
  font-size: 1.6em;
  color: #333333;
  margin-bottom: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section3 .col-right .sub-info li:hover a {
  color: #035a82;
}

.section3 .col-right .sub-info span {
  width: 56px;
  height: 24px;
  line-height: 25px;
  color: #333;
  padding-left: 5px;
  font-size: 1.8em;
  position: absolute;
  left: -69px;
  font-family: Myriad, arial, sans-serif;
}

.section3 .col-right .sub-info span i {
  position: absolute;
  right: -20px;
  top: 5px;
  width: 15px;
  height: 15px;
  display: block;
  background: url(//dl.cfxz123.com/source/www/homepage/dot-brown.png) center
    no-repeat;
}

.section3 .col-right .sub-info span.new-if {
  color: #fff;
  background: url(//dl.cfxz123.com/source/www/homepage/new-ic.png) center
    no-repeat;
}

.section3 .col-right .sub-info span.new-if i {
  position: absolute;
  right: -20px;
  top: 5px;
  width: 15px;
  height: 15px;
  display: block;
  background: url(//dl.cfxz123.com/source/www/homepage/dot-orange.png) center
    no-repeat;
}

.section3 .col-right .link-ref {
  float: right;
  font-size: 1.6em;
  color: #0096dc;
  display: block;
  width: 80px;
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  transition: all ease-in 0.25s;
}

.section3 .col-right .link-ref:hover {
  background-position: right center;
}

.section3 .news-bg {
  max-width: 100%;
  height: auto;
  display: block;
  height: 100%;
}

.section3 .calender {
  width: 96.55%;
  position: relative;
  float: right;
  border: 1px solid #999;
  height: 460px;
}

.section3 .calender .no-content {
  font-size: 1.6em;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  top: 69%;
  left: 0;
  right: 0;
}

.section3 .calender .calender-bg {
  position: absolute;
  max-width: 100%;
  height: auto;
  display: block;
}

.section3 .calender .this-date {
  position: absolute;
  left: 40px;
  top: 30px;
  font-size: 2em;
  color: #fff;
}

.section3 .calender .this-date span {
  font-family: Myriad, arial, sans-serif;
  font-size: 1.2em;
}

.section3 .calender .item-wrapper {
  padding-top: 17.87%;
  border-bottom: none;
}

.section3 .calender .item-wrapper li {
  float: left;
  width: 14.28%;
  text-align: center;
}

.section3 .calender .item-wrapper li span {
  display: block;
  font-size: 0.7em;
}

.section3 .calender .item-wrapper li a {
  display: inline-block;
  font-size: 2em;
  color: #333333;
  padding-bottom: 5px;
  width: 80%;
}

.section3 .calender .item-wrapper li.active a {
  background: #eff6fa;
  border: 1px solid #999999;
  border-bottom: 1px solid #eff6fa;
  position: relative;
  z-index: 29;
  bottom: -1px;
}

.section3 .calender .itemdt-wrapp {
  border-top: none;
}

.section3 .calender .itemdt-wrapp .link-ref {
  position: absolute;
  bottom: 3%;
  right: 0;
  float: right;
  padding-right: 15px;
  margin-right: 19px;
  font-size: 1.6em;
  color: #0096dc;
  display: block;
  width: 80px;
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  transition: all ease-in 0.25s;
}

.section3 .calender .itemdt-wrapp .link-ref:hover {
  background-position: right center;
}

.section3 .calender .sub-desc {
  height: 45px;
  background: #eff6fa;
  padding: 0 5px;
  text-align: center;
  font-size: 1.6em;
  color: #333333;
  border-top: 1px solid #999999;
}

.section3 .calender .sub-desc span {
  display: inline-block;
  float: left;
  line-height: 45px;
}

.section3 .calender .sub-desc .time-tt {
  width: 12.33%;
}

.section3 .calender .sub-desc .flag-tt {
  width: 12.33%;
}

.section3 .calender .sub-desc .content-tt {
  width: 42.07%;
}

.section3 .calender .sub-desc .star-tt {
  width: 23.09%;
}

.section3 .calender .sub-desc .value-tt {
  width: 10.18%;
}

.section3 .calender .sub-info {
  padding: 22px 0px 12px 5px;
  text-align: center;
  font-size: 1.6em;
  color: #333333;
}

.section3 .calender .sub-info li {
  height: 29px;
  line-height: 29px;
  margin-bottom: 9px;
}

.section3 .calender .sub-info span {
  float: left;
}

.section3 .calender .sub-info .time {
  width: 12.33%;
}

.section3 .calender .sub-info .flag {
  width: 12.33%;
}

.section3 .calender .sub-info .flag img {
  position: relative;
  top: 3px;
}

.section3 .calender .sub-info .content {
  width: 40.07%;
  text-align: left;
}

.section3 .calender .sub-info .star {
  width: 25.09%;
  text-align: center;
}

.section3 .calender .sub-info .value {
  width: 9.18%;
  text-align: center;
}

.section3 .calender .sub-info a {
  display: block;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

/* End section 3 */

/* Begin section 4 */

.section4 {
  /*padding: 86px 0;*/
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ccc;
}

.section4 .page {
  background-color: transparent;
  overflow: hidden;
}

.section4 .page .bg-zen {
  width: 60%;
  float: right;
  height: 100%;
}

.section4 .cfd-gif {
  position: absolute;
  top: 9%;
  left: 42%;
  width: 547px;
  max-width: 100%;
  margin-left: 148px;
}

.section4 .zen-bg {
  position: absolute;
  top: -4%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.section4 h2 {
  font-size: 22px;
  text-align: left;
  margin-bottom: 38px;
  padding-top: 60px;
  color: #666666;
}

.section4 h2 .blue {
  font-size: 1.6em;
  color: #035a82;
}

.section4 h2 .dot {
  font-size: 0.9em;
  position: relative;
  top: -2px;
}

.section4 .item-wrapperi {
  width: 80%;
  margin-bottom: 36px;
  border: 1px solid #006699;
}

.section4 .item-wrapperi li {
  height: 40px;
  line-height: 40px;
  float: left;
  width: 50%;
  text-align: center;
  position: relative;
  font-size: 1.6em;
  color: #006699;
  border-right: 1px solid #006699;
  cursor: pointer;
}

.section4 .item-wrapperi li:hover {
  background: #006699;
  color: #fff;
}

.section4 .item-wrapperi li.active {
  background: #006699;
  color: #fff;
}

.section4 .item-wrapperi .cfd i {
  display: block;
  position: absolute;
  bottom: -59px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.section4 .item-wrapperi .binary i {
  display: block;
  position: absolute;
  bottom: -59px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.section4 .item-wrapperi .cfist {
  border-right: none;
}

.section4 .item-wrapperi .cfist i {
  display: block;
  position: absolute;
  bottom: -59px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.section4 .itemdt-wrapp {
  width: 80%;
}

.section4 .itemdt-wrapp h3 {
  font-size: 2.2em;
  color: #006699;
  padding-left: 40px;
  background: url(//dl.cfxz123.com/source/www/homepage/CFD.png) left center
    no-repeat;
  font-weight: 700;
  margin-bottom: 27px;
}

.section4 .itemdt-wrapp .sub-info li {
  width: 100%;
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #333333;
  background: url(//dl.cfxz123.com/source/www/homepage/arrowr.png) 3% center
    no-repeat;
}

.section4 .itemdt-wrapp .item1-details h3 {
  background: url(//dl.cfxz123.com/source/www/homepage/CFD.png) left center
    no-repeat;
}

.section4 .itemdt-wrapp .item1-details .sub-info li {
  padding-left: 40px;
}

.section4 .itemdt-wrapp .item1-details .link-ref {
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  color: #03a9f4;
  margin-bottom: 20px;
  padding-right: 15px;
  position: relative;
  left: 3px;
  transition: all 0.25s ease-in;
}

.section4 .itemdt-wrapp .item1-details .link-ref:hover {
  background-position: right center;
}

.section4 .itemdt-wrapp .item2-details h3 {
  background: url(//dl.cfxz123.com/source/www/homepage/ist.png) left center
    no-repeat;
}

.section4 .itemdt-wrapp .item2-details .link-ref {
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  color: #03a9f4;
  margin-bottom: 20px;
  padding-right: 15px;
  position: relative;
  left: 3px;
  transition: all 0.25s ease-in;
}

.section4 .itemdt-wrapp .item2-details .link-ref:hover {
  background-position: right center;
}

.section4 .itemdt-wrapp .item2-details .sub-info li {
  padding-left: 35px;
}

.section4 .itemdt-wrapp .item3-details h3 {
  background: url(//dl.cfxz123.com/source/www/homepage/ist.png) left center
    no-repeat;
}

.section4 .itemdt-wrapp .item3-details .link-ref {
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  color: #03a9f4;
  margin-bottom: 20px;
  padding-right: 15px;
  position: relative;
  left: 3px;
  transition: all 0.25s ease-in;
}

.section4 .itemdt-wrapp .item3-details .link-ref:hover {
  background-position: right center;
}

.section4 .itemdt-wrapp .item3-details .sub-info li {
  padding-left: 35px;
}

/*.section4 .link-ref {*/

/*display: inline-block;*/

/*float: right;*/

/*font-size: 1.6em;*/

/*padding-right: 10px;*/

/*}*/

.section4 .view-more {
  margin-top: 28px;
  position: relative;
}

.section4 .view-more > li {
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  width: 50%;
  background: #0078b4;
  font-size: 1.6em;
  border-right: 1px solid #fff;
  cursor: pointer;
}

.section4 .view-more > li:hover {
  background-color: #035a82 !important;
}

.section4 .view-more > li:hover .view-more1 {
  display: block;
}

.section4 .view-more li.adr-w {
  background: #0078b4 url(//dl.cfxz123.com/source/www/homepage/phone-ich.png)
    32% center no-repeat;
  border-right: none;
  padding-left: 21px;
}

.section4 .view-more li.qr-w {
  background: #0078b4 url(//dl.cfxz123.com/source/www/homepage/pc-ic.png) 32%
    center no-repeat;
}

.section4 .view-more li.qr-w a {
  color: #ffffff;
  display: block;
  padding-left: 21px;
}

.section4 .view-more1 {
  width: 100%;
  position: absolute;
  height: 190px;
  bottom: 100%;
  left: 0;
  background: #035a82;
  display: none;
}

.section4 .view-more1 > li {
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.section4 .view-more1 > li span {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -23%;
  display: none;
}

.section4 .view-more1 .qr {
  top: 50%;
  margin-top: -41px;
}

.section4 .view-more1 .qr:hover span {
  display: block;
}

.section4 .view-more1 .qr a {
  line-height: 0;
}

.section4 .view-more1 .adr {
  top: 50%;
  margin-top: -41px;
}

.section4 .view-more1 .adr:hover span {
  display: block;
}

.section4 .view-more1 .adr a {
  line-height: 0;
}

.section4 .view-more1 i {
  position: absolute;
  right: 0;
  top: 47%;
  margin-top: -71px;
  width: 1px;
  height: 130px;
  background: #4f8ca8;
}

/* End section 4 */

/* Begin section 5 */

.section5 {
  background: url(//dl.cfxz123.com/source/www/homepage/section5-bg.jpg)
    repeat-x;
  text-align: center;
  padding: 117px 0 77px 0;
  display: block;
}

.section5 .quest {
  font-size: 2em;
  color: #666666;
  margin-bottom: 50px;
}

.section5 .info-custom {
  font-size: 3.2em;
  color: #333;
  position: relative;
}

.section5 .info-custom #income {
  position: relative;
}

.section5 .info-custom .madlib-error {
  position: absolute;
  top: 54%;
  width: 200px;
  text-align: center;
  font-size: 0.5em;
  left: 42px;
  line-height: 1;
  color: #fb7c00;
  display: none;
}

.section5 .info-custom .income-error {
  position: absolute;
  top: 120%;
  width: 200px;
  text-align: center;
  font-size: 0.5em;
  left: 40%;
  line-height: 1;
  color: #fb7c00;
  display: none;
}

.section5 .info-custom .blue {
  font-family: Myriad, arial, sans-serif;
  color: #0288d1;
  display: inline-block;
  padding: 0 22px;
  margin: 0 2px;
  border: 0;
  border-bottom: 1px solid #999;
  line-height: 1;
  font-weight: 300;
  outline: 0;
}

.section5 .info-custom .age {
  width: 70px;
  display: inline-block;
  text-align: center;
  padding: 0;
  background-color: transparent;
  font-size: 1.2em;
}

.section5 .info-custom .enter-income {
  /*width: 195px;*/
  /*display: inline-block;*/
  /*position: relative;*/
  /*text-align: center;*/
  /*margin-left: 0;*/
  /*margin-top: -45px;*/
  padding: 0;
  background-color: transparent;
  /*font-size: 1.2em;*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section5 .info-custom span.last {
  padding: 0;
  margin: 0;
}

.section5 .info-custom span.last select,
.section5 .info-custom span.enter-income select {
  cursor: pointer;
  background: url(//dl.cfxz123.com/source/www/homepage/decreased.png) 90%
    center no-repeat;
  font-size: 1em;
  color: #0288d1;
  display: inline-block;
  padding: 0 32px 0 22px;
  text-align: center;
  border: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  -moz-appearance: window;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "Microsoft JhengHei", "Microsoft YaHei", arial, sans-serif;
}

.section5 .info-custom span.enter-income .nice-select {
  font-size: 0.8em;
  padding-left: 0;
}

.section5 .info-custom span.last select::-ms-expand {
  display: none;
}

.section5 .get-result {
  display: inline-block;
  text-align: center;
  width: 200px;
  height: 32px;
  background: #0288d1;
  line-height: 32px;
  color: #fff;
  margin-top: 103px;
  font-size: 1.6em;
  transition: all 0.25s ease-in;
}

.section5 .get-result:hover {
  background: #01579b;
}

/* End section 5 */

/* Begin section 6 */

.section6 {
  position: relative;
  background: #03425f;
  overflow: hidden;
}

.section6 video {
  opacity: 0.3;
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section6 .overlay {
  background: #03425f;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.section6 .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.section6 .sec-bg {
  opacity: 0.3;
  margin: 0 auto;
  height: 600px;
}

.section6 .statistic {
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 2em;
  position: absolute;
  top: 9%;
}

.section6 .statistic .customers span {
  font-size: 2em;
}

.section6 .statistic .customers i {
  font-size: 1.2em;
}

.section6 .statistic .introduction {
  margin-bottom: 20px;
  line-height: 2;
}

.section6 .statistic .trading {
  font-family: Myriad, arial, sans-serif;
}

.section6 .grow-chart {
  position: absolute;
  top: 81%;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 27.16%;
}

.section6 .view-more {
  display: inline-block;
  width: 200px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 1.6em;
  color: #fff;
  background: #0288d1;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.25s ease-in;
}

.section6 .view-more:hover {
  background: #01579b;
}

.section6 .bgchart {
  position: relative;
  display: block;
  top: 68%;
}

.section6 .bgchart .img1 {
  position: absolute;
  bottom: 4px;
  left: 0px;
}

.section6 .bgchart .img2 {
  position: absolute;
  bottom: 9px;
  left: 65px;
}

.section6 .bgchart .img3 {
  position: absolute;
  bottom: 9px;
  left: 110px;
}

.section6 .bgchart .img4 {
  position: absolute;
  bottom: 9px;
  left: 156px;
}

.section6 .bgchart .img5 {
  position: absolute;
  bottom: 9px;
  left: 203px;
}

.section6 .bgchart .img6 {
  position: absolute;
  bottom: 9px;
  left: 249px;
}

.section6 #img-1 {
  width: 320px;
}

.section6 #img-2 {
  width: 70px;
}

.section6 #img-3 {
  width: 70px;
}

.section6 #img-4 {
  width: 70px;
}

.section6 #img-5 {
  width: 70px;
}

.section6 #img-6 {
  width: 70px;
}

/* End section 6 */

/* Begin section 7 */

.section7 {
  background: #fff;
  padding: 55px 0;
  overflow: hidden;
}

.section7 h3.agencies {
  font-size: 3.6em;
  color: #035a82;
  padding-bottom: 28px;
}

.section7 p {
  font-size: 2em;
  color: #333333;
}

.section7 .partner {
  width: 100%;
  position: relative;
  right: -50px;
  top: 35px;
}

.section7 .partner li {
  width: 20%;
  height: 45px;
  float: left;
  background: url(//dl.cfxz123.com/source/www/homepage/partner.png) no-repeat
    scroll;
  margin-right: 19px;
  margin-bottom: 28px;
}

.section7 .partner li.yiniu {
  background: none;
}

.section7 .partner .comodo {
  background-position: 0 0;
  width: 80px;
}

.section7 .partner .dbs {
  background-position: -478px 0;
  width: 107px;
}

.section7 .partner .anz {
  background-position: -80px 0;
  width: 107px;
}

.section7 .partner .reuter {
  background-position: -192px 0;
  width: 141px;
}

.section7 .partner .bloomberg {
  background-position: -338px 0;
  width: 127px;
}

.section7 .partner .dispute {
  background-position: 0 -60px;
  width: 90px;
}

.section7 .partner .qqcom {
  background-position: -109px -60px;
  width: 100px;
}

.section7 .partner .sina {
  background-position: -229px -60px;
  width: 100px;
}

.section7 .partner .netease {
  background-position: -347px -60px;
  width: 103px;
}

.section7 .partner .baidu {
  background-position: -470px -60px;
  width: 111px;
  margin-right: 0;
}

/* End section 7 */

/*-----------------------Begin media screen --------------------*/

@media (min-width: 480px) {
  .button-top {
    bottom: -37px;
    height: 57px;
  }
  .button-top a {
    height: 57px;
    line-height: 57px;
    font-size: 2.2em;
  }
  .button-top a.bt-left {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-left-1024.png)
      left no-repeat;
  }
  .button-top a.bt-left:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopl-hover-1024.png)
      left no-repeat;
  }
  .button-top a.bt-left:hover:before {
    left: 23%;
  }
  .button-top a.bt-left:before {
    top: 17px;
    left: 25%;
  }
  .button-top a.bt-right {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-right-1024.png)
      right no-repeat;
  }
  .button-top a.bt-right:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopr-hover-1024.png)
      right no-repeat;
  }
  .button-top a.bt-right:hover:before {
    left: 23%;
  }
  .button-top a.bt-right:before {
    top: 17px;
    left: 25%;
  }
  .section1 .quotation .block-1 {
    left: 0;
    top: 14.22%;
  }
  .section1 .quotation .block-2 {
    left: 49%;
    top: 6.22%;
  }
  .section1 .quotation .block-3 {
    left: 0;
    top: 51.63%;
  }
  .section1 .quotation .block-4 {
    left: 49%;
    top: 43.92%;
  }
  .section2 .chart-wrapper .gloss {
    top: 61.5%;
  }
  .section3 .calender .this-date {
    left: 30px;
    top: 20px;
  }
  .section3 .news-bg {
    margin-left: -7%;
  }
  .section4 h2 {
  }
  .section4 .item-wrapperi {
    width: 88%;
  }
  .section4 .itemdt-wrapp {
    width: 88%;
  }
  .section4 .zen-bg {
    position: absolute;
    top: -4%;
    max-width: 140%;
    height: auto;
    margin: 0 auto;
    left: -21%;
  }
  .section5 .info-custom .madlib-error {
    left: 5%;
  }
}

@media (min-width: 1024px) {
  .button-top {
    bottom: -37px;
    height: 57px;
  }
  .button-top a {
    height: 57px;
    line-height: 57px;
    font-size: 2.2em;
  }
  .button-top a.bt-left {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-left-1024.png)
      center no-repeat;
  }
  .button-top a.bt-left:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopl-hover-1024.png)
      center no-repeat;
  }
  .button-top a.bt-left:hover:before {
    left: 23%;
  }
  .button-top a.bt-left:before {
    top: 17px;
    left: 25%;
  }
  .button-top a.bt-right {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-right-1024.png)
      center no-repeat;
  }
  .button-top a.bt-right:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopr-hover-1024.png)
      center no-repeat;
  }
  .button-top a.bt-right:hover:before {
    left: 23%;
  }
  .button-top a.bt-right:before {
    top: 17px;
    left: 25%;
  }
  /* .section3 .calender .sub-info .star {
     padding-left: 3.5%;
   }*/
  .section4 .zen-bg {
    position: absolute;
    top: -4%;
    max-width: 140%;
    height: auto;
    margin: 0 auto;
    left: -21%;
  }
  .section5 .info-custom {
    font-size: 2.6em;
  }
}

@media (min-width: 1218px) {
  .button-top {
    height: 68px;
    bottom: -44px;
  }
  .button-top a {
    height: 68px;
    line-height: 68px;
  }
  .button-top a.bt-left {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-left.png) left
      center no-repeat;
  }
  .button-top a.bt-left:before {
    top: 22px;
    left: 29%;
  }
  .button-top a.bt-left:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopl-hover.png)
      left center no-repeat;
  }
  .button-top a.bt-left:hover:before {
    left: 26%;
    transform: scaleX(0.8);
  }
  .button-top a.bt-left:hover span {
    left: 45%;
  }
  .button-top a.bt-left span {
    left: 48%;
  }
  .button-top a.bt-right {
    background: url(//dl.cfxz123.com/source/www/homepage/buttop-right.png)
      right center no-repeat;
  }
  .button-top a.bt-right:before {
    top: 22px;
    left: 29%;
  }
  .button-top a.bt-right:hover {
    background: url(//dl.cfxz123.com/source/www/homepage/buttopr-hover.png)
      right center no-repeat;
  }
  .button-top a.bt-right:hover:before {
    left: 26%;
    transform: scaleX(0.8);
  }
  .button-top a.bt-right:hover span {
    left: 45%;
  }
  .section3 .calender .sub-desc .value-tt {
    width: 15.18%;
    text-align: center;
  }
  .section3 .calender .sub-desc .star-tt {
    width: 18.09%;
  }
  .section6 .view-more {
    bottom: 6%;
  }
  .section7 .col-left {
    width: 41%;
  }
  .section7 .col-right {
    width: 59%;
  }
}

@media (min-width: 1367px) {
  .container {
    width: 1160px;
  }
  .button-top .container {
    width: 1160px;
  }
  .section1 .quotation .block-1 {
    left: 0;
    top: 16.33%;
  }
  .section1 .quotation .block-2 {
    left: 46.67%;
    top: 7.44%;
  }
  .section1 .quotation .block-3 {
    left: 8.33%;
    top: 52.63%;
  }
  .section1 .quotation .block-4 {
    left: 55%;
    top: 43.92%;
  }
  .section2 .container {
    width: 1160px;
  }
  .section2 .chart-wrapper .gloss {
    top: 61.5%;
  }
  .section3 .calender .this-date {
    left: 40px;
    top: 30px;
  }
  /* .section3 .calender .sub-info .star {
     padding-left: 4.7%;
     width: 14.09%;
   }*/
  .section3 .news-bg {
    margin-left: 0;
  }
  .section4 .zen-bg {
    max-width: 120%;
    left: -12%;
  }
  .section4 h2 {
    width: 82%;
  }
  .section4 .item-wrapperi {
    width: 80%;
  }
  .section4 .itemdt-wrapp {
    width: 80%;
  }
  .section5 .info-custom {
    font-size: 3.2em;
    line-height: 75px;
  }
  .section5 .info-custom .madlib-error {
    left: 8%;
  }
  .section7 .col-left {
    width: 50%;
  }
  .section7 .col-right {
    width: 50%;
  }
}

@media (min-width: 1440px) {
  .section4 .zen-bg {
    max-width: 120%;
    left: -2%;
  }
  .section6 .view-more {
    bottom: 10%;
  }
  .section6 .grow-chart {
    width: 27.16%;
    top: 81%;
  }
}

@media (min-width: 1600px) {
  .section6 .view-more {
    bottom: 10%;
  }
  .section6 .grow-chart {
    width: 27.16%;
    top: 81%;
  }
}

@media (min-width: 1920px) {
  .section1 .nav-wrapper li a.ic-stock {
    background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-stock.png)
      30% center no-repeat;
  }
  .section1 .nav-wrapper li a.ic-currency {
    background: #fff
      url(//dl.cfxz123.com/source/www/homepage/icon-currency.png) 30% center
      no-repeat;
  }
  .section1 .nav-wrapper li a.ic-gold {
    background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-gold.png)
      25% center no-repeat;
  }
  .section1 .nav-wrapper li a.ic-oil {
    background: #fff url(//dl.cfxz123.com/source/www/homepage/icon-oil.png)
      25% center no-repeat;
  }
  .section1 .nav-wrapper li a.ic-ideal {
    background: #fff
      url(//dl.cfxz123.com/source/www/homepage/icon-virtual-currency.png) 25%
      center no-repeat;
  }
  .section1 .nav-wrapper li.active a,
  .section1 .nav-wrapper li:hover a {
    color: #fff;
    border: 1px solid #03354c;
  }
  .section1 .nav-wrapper li.active a.ic-stock,
  .section1 .nav-wrapper li:hover a.ic-stock {
    background: #03425f
      url(//dl.cfxz123.com/source/www/homepage/ichv-stock.png) 30% center
      no-repeat;
  }
  .section1 .nav-wrapper li.active a.ic-currency,
  .section1 .nav-wrapper li:hover a.ic-currency {
    background: #03425f
      url(//dl.cfxz123.com/source/www/homepage/ichv-currency.png) 30% center
      no-repeat;
  }
  .section1 .nav-wrapper li.active a.ic-gold,
  .section1 .nav-wrapper li:hover a.ic-gold {
    background: #03425f
      url(//dl.cfxz123.com/source/www/homepage/ichv-gold.png) 25% center
      no-repeat;
  }
  .section1 .nav-wrapper li.active a.ic-oil,
  .section1 .nav-wrapper li:hover a.ic-oil {
    background: #03425f url(//dl.cfxz123.com/source/www/homepage/ichv-oil.png)
      25% center no-repeat;
  }
  .section1 .nav-wrapper li.active a.ic-ideal,
  .section1 .nav-wrapper li:hover a.ic-ideal {
    background: #03425f
      url(//dl.cfxz123.com/source/www/homepage/icon-virtual-currency-p.png)
      25% center no-repeat;
  }
  .section3 .calender .sub-desc .value-tt {
    width: 10.18%;
  }
  .section3 .calender .sub-desc .star-tt {
    width: 23.09%;
  }
  /* .section3 .calender .sub-info .star {
     padding-left:8%;
   }*/
  .section4 .zen-bg {
    position: absolute;
    top: -4%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    left: 0;
  }
}

@media (max-width: 1024px) {
  .section3 .calender .sub-info .value {
    width: 16.18%;
    text-align: center;
  }
  .section3 .calender .sub-desc .content-tt {
    width: 40.07%;
  }
  .section3 .calender .sub-desc .value-tt {
    width: 15.18%;
  }
  .section3 .calender .sub-desc .star-tt {
    width: 20.09%;
  }
}

@media (max-width: 1900px) {
  .section3 .calender .sub-info .value {
    width: 13.18%;
    text-align: center;
  }
  .section3 .calender .sub-info .star {
    width: 20.09%;
    text-align: center;
  }
}

/*-----------------------End media screen --------------------*/

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.myriad {
  font-family: Myriad, arial, sans-serif;
  font-size: 1.2em;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  font-family: "Microsoft JhengHei", "Microsoft YaHei", arial, sans-serif;
  background-color: #fff;
  border-bottom: solid 1px #999;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 25px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  top: 12px;
  font-size: 1em;
}

.nice-select .current {
  position: relative;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding: 8px 29px 8px 25px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*  ========================Flip clock css ======================== */

.flip-clock-wrapper {
  position: absolute;
  top: 66.7%;
  left: 41%;
  right: 0;
  margin: 0 auto;
}

.flip-clock-wrapper ul {
  width: 40px;
  height: 60px;
}

.flip-clock-wrapper ul li a {
  line-height: 1.5 !important;
  font-family: Myriad, arial, sans-serif;
}

.flip-clock-wrapper ul li a div div.inn {
  background-color: #fff;
  color: #666;
  font-size: 40px;
  text-shadow: initial;
}

.flip-clock-wrapper ul li a div.up:after {
  background-color: #ccc;
  height: 3px !important;
  top: 29px;
  opacity: 0.7;
}

.flip-clock-divider {
  width: 22px;
}

.flip-clock-divider .flip-clock-label {
  color: #ffffff;
  font-family: "Microsoft JhengHei", "Microsoft YaHei", arial, sans-serif;
  top: 1.3em;
  font-size: 1.6em;
  right: -119px;
}

.flip-clock-dot {
  background: #fff;
  width: 6px;
  height: 6px;
}

.flip-clock-dot.top {
  display: none;
  top: 22px;
}

.flip-clock-dot.bottom {
  display: none;
  bottom: 53px;
}

.flip-clock-divider.seconds .flip-clock-label {
  right: -123px;
}

.flip-clock-divider.minutes .flip-clock-label {
  right: -121px;
}

/* Css NFP Banner  */

.clock1.flip-clock-wrapper {
  top: 66.9%;
  left: 40.9%;
}

/*�м�����Ͷ�ʲ���*/

.web-touzi {
  width: 580px;
  position: relative;
  float: left;
}

.web-touzi p {
  display: inline-block;
  font-size: 16px;
  position: relative;
}

.web-touzi p span {
  color: #0096dc;
  position: relative;
  z-index: 2;
}

.web-class ul li {
  float: left;
  font-size: 16px;
  color: #333;
  padding: 20px 27px 30px;
  background: #f9f9f9;
}

.web-class ul li i {
  font-size: 48px;
  font-family: MyriadPro, arial, sans-serif;
}

.web-class .web-class-top {
  height: 64px;
  line-height: 64px;
  border: 1px solid #e8e9ed;
  background: #f1f2f4;
  text-align: center;
}

.web-class .web-class-top img {
  position: relative;
  width: 38px;
  display: inline-block;
  top: 10px;
  left: -10px;
}

.web-class ul {
  border: 1px solid #e8e9ed;
  border-top: none;
  background: #f9f9f9;
}

.web-class .web-class-top a {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #035b83;
}

.section4 .item-1 .container,
.section4 .item-2 .container {
  height: 412px;
}

.section4 .item-2 .web-bg {
  width: 627px;
  height: 498px;
  background: url(//dl.cfxz123.com/source/www/homepage/CFIX-img.png) no-repeat;
  position: relative;
  margin-left: 650px;
  top: -70px;
}

.section4 .item-1 .web-bg {
  width: 627px;
  height: 498px;
  background: url(//dl.cfxz123.com/source/www/homepage/CFD-img.png) no-repeat;
  position: relative;
  margin-left: 650px;
  top: -70px;
}

.section4 .item-1 .web-bg img {
  position: absolute;
  width: 204.5px;
  height: 364px;
  top: 63px;
  left: 27px;
}

.section4 .item-2 .web-bg {
  position: absolute;
  width: 204px;
  top: 68px;
  left: 201px;
}

.web-down {
  margin: 0 auto;
  padding-top: 44px;
  position: relative;
}

.web-down .layout-1 {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
}

.web-down .layout-2 {
  position: relative;
}

.web-down .layout-2 .item-3 {
  position: absolute;
  bottom: -15px;
  left: 5px;
}

.web-down .layout-2 .item-3 a {
  color: #666;
  font-size: 14px;
}

.web-down .layout-2 .item-3 a:first-child {
  margin-right: 20px;
}

.web-down .layout-1 a {
  display: block;
  width: 100%;
  height: 40px;
  background: #0096dc;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 5px;
  padding-left: 45px;
}

.item-1 .web-down .layout-1 a {
  padding-left: 63px;
  transition: all 0.3s;
}

.web-down .layout-1 a span {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/homepage/WIN-ICON.png) no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  left: -10px;
}

.item-1 .web-down .layout-1 a:hover {
  background: #035b83;
}

.web-down .layout-1 p {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #0096dc;
  color: #fff;
  padding-left: 16px;
}

.web-down .layout-1 p span {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/template/phone.png) no-repeat;
  width: 15px;
  height: 25px;
  position: relative;
  top: 5px;
  left: -4px;
}

.web-down .layout-1 p i {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/homepage/sanjiao-icon.png)
    no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  top: 6px;
  left: 63px;
}

.web-down .layout-2 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.web-down .layout-2 img {
  width: 98px;
  height: 98px;
}

.web-down .layout-3 {
  margin-left: 70px;
  top: 36px;
}

.item-2 .web-down .layout-3 {
  margin-left: 177px;
  top: 36px;
}

.web-down .layout-1 a i {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/homepage/sanjiao-icon.png)
    no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  top: 6px;
  left: 63px;
}

.section4 {
  position: relative;
  background: #fbfbfb;
}

.section4 .web-arrow a {
  display: block;
  background: url(//dl.cfxz123.com/source/www/homepage/arrow-two.png);
  width: 54px;
  height: 26px;
}

.section4 .item-1,
.section4 .item-2 {
  padding-bottom: 50px;
}

.section4 .item-2 .web-class ul li {
  padding-left: 22px;
  padding-right: 12px;
}

.section4 .item-2 .web-down .layout-1 a span {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/homepage/app-one.png) no-repeat;
  width: 28px;
  height: 27px;
  position: relative;
  top: 4px;
  left: -4px;
}

.section4 .item-2 .web-down .layout-1 p span {
  display: inline-block;
  background: url(//dl.cfxz123.com/source/www/template/phone.png) no-repeat;
  width: 15px;
  height: 25px;
  position: relative;
  top: 7px;
  left: -7px;
}

.section4 .link-ref:hover {
  background-position: right center;
}

.show {
  display: block;
}

.section4 .link-ref {
  /*float: right;*/
  font-size: 16px;
  color: #0096dc;
  display: inline-block;
  width: 80px;
  background: url(//dl.cfxz123.com/source/www/homepage/more-bt.png) 95% center
    no-repeat;
  transition: all ease-in 0.25s;
}

object.banner {
  width: 100%;
  height: 520px;
}

.preload-captcha-container {
  height: 100%;
  width: 100%;
  background: #fff;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-size: 16px;
  z-index: 100000;
}

.preload-captcha-container > .logo {
  text-align: left;
  width: 100%;
  padding-left: 25px;
}

.captcha-desc {
  padding-bottom: 200px;
}

.copyright {
  line-height: 1.8;
  color: #999;
  font-size: 10px;
  padding: 15px 0;
}

#captcha-box {
  padding-top: 350px;
}

.geetest_panel_ghost {
  display: none !important;
}

.geetest_wind.geetest_panel .geetest_panel_box {
  top: 35% !important;
}

.geetest_wind.geetest_panel {
  top: 307px !important;
  height: 220px !important;
}

/* Css NFP Banner */

/*  ========================End flip clock css ========================*/

/*# sourceMappingURL=homepage.css.map */
