@charset "UTF-8";
/*
 * @Author: Minihui 
 * @Date: 2017-12-21 09:14:11 
 * @Last Modified by: Minihui
 * @Last Modified time: 2017-12-21 18:50:43
 */
/*
 * @Author: Minihui 
 * @Date: 2017-11-13 11:17:51 
 * @Last Modified by: Minihui
 * @Last Modified time: 2017-12-21 18:51:30
 */
/* 颜色 */
@keyframes warn {
  0% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  25% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  75% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.0;
  }
}

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

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

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    opacity: 1;
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

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

html,
body,
div,
p,
hr,
pre,
h1,
h2,
h3,
h4,
h5,
h6,
table,
tr,
td,
th,
tfoot,
tbody,
thead,
form,
input,
textarea,
label,
ul,
ol,
dl,
li,
dt,
dd,
.clearfix:after {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  /*font-family: 'PingFang SC', 'Lantinghei SC', 'Helvetica Neue', 'Helvetica', 'Arial', 'Microsoft YaHei', '微软雅黑', 'STHeitiSC-Light', 'simsun', '宋体', 'WenQuanYi Zen Hei', 'WenQuanYi Micro Hei', 'sans-serif' !important;*/
  font-family: "PingFang SC", "Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "微软雅黑", STHeitiSC-Light, simsun, "宋体", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  outline: none;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #3773db;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe,
img {
  border: 0;
}

img {
  vertical-align: middle;
}

input {
  outline: none;
}

.clearfix {
  display: block;
}

.clearfix:after {
  content: '';
  overflow: hidden;
  width: 100%;
  height: 0px;
  font-size: 0px;
  display: block;
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.hide {
  display: none;
}

html,
body {
  position: relative;
}

/* body {
    background: #eee;
    // font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
} */
.swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.container {
  width: 1200px;
  position: relative;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }
}

.domPc {
  display: block;
}

.domMob {
  display: none;
}

@media (max-width: 768px) {
  .domPc {
    display: none;
  }
  .domMob {
    display: block;
  }
}

/* body {
    background: $color-gray-light;
} */
.ie9 .card-bg,
.ie9 .card-list li,
.ie9 .card-intro,
.ie9 .card-tips,
.ie9 .card-play,
.ie9 .card-slogan {
  opacity: 1;
}

.ie9 .card-intro,
.ie9 .card-slogan {
  transform: translate3d(0, 0, 0);
}

.card {
  width: 1140px;
  height: 690px;
  padding: 10px;
  background: #ffffff;
  position: relative;
}

.card-bg {
  width: 1140px;
  height: 690px;
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-bg.jpg") 0 0 no-repeat;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  opacity: 0;
}

/* 播放 */
.card-play {
  width: 78px;
  height: 78px;
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-play.png") 0 0 no-repeat;
  position: absolute;
  right: 295px;
  top: 205px;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}

/* 列表 */
.card-list {
  color: #333333;
  font-size: 24px;
  position: absolute;
  z-index: 2;
  width: 416px;
  height: 340px;
  left: 100px;
  top: 55px;
}

.card-list a {
  color: #333333;
}

.card-list li {
  position: absolute;
  width: 145px;
  height: 46px;
  line-height: 46px;
}

.card-list li .add-box {
  width: 46px;
  height: 46px;
  line-height: 42px;
  text-align: center;
  display: block;
  float: right;
  position: relative;
  cursor: pointer;
}

.card-list li .add-box:before {
  content: "";
  width: 26px;
  height: 26px;
  background: #3683b3;
  display: block;
  left: 10px;
  top: 10px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
}

.card-list li .add-box img {
  position: relative;
  z-index: 3;
}

.card-list li .add-box:after {
  content: "";
  width: 46px;
  height: 46px;
  background: #3683b3;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  animation: warn 4s linear;
  animation-iteration-count: infinite;
}

li.card-list-env {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-map.png") 0 10px no-repeat;
  padding-left: 43px;
  left: 110px;
  top: 0;
  opacity: 0;
}

li.card-list-climate {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-sun.png") 0 10px no-repeat;
  padding-left: 35px;
  left: 196px;
  top: 60px;
  opacity: 0;
}

li.card-list-mine {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-mine.png") 0 10px no-repeat;
  padding-left: 35px;
  left: 96px;
  top: 120px;
  opacity: 0;
}

li.card-list-eco {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-bird.png") 0 10px no-repeat;
  padding-left: 30px;
  left: 0px;
  top: 180px;
  opacity: 0;
}

li.card-list-nation {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-nation.png") 0 10px no-repeat;
  padding-left: 38px;
  left: 205px;
  top: 208px;
  opacity: 0;
}

li.card-list-soci {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-money.png") 0 10px no-repeat;
  padding-left: 35px;
  left: 135px;
  top: 266px;
  opacity: 0;
}

/* 雄安概况 */
.card-intro {
  position: absolute;
  left: 32px;
  top: 400px;
  z-index: 2;
  opacity: 0;
  transform: translate3d(-3000px, 0, 0);
}

.card-intro h2 {
  margin-bottom: 20px;
}

.card-intro h2 span {
  display: block;
}

.card-intro p {
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  width: 400px;
  padding-left: 18px;
  position: relative;
}

.card-intro p:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #154d90;
  display: block;
  left: 0px;
  top: 12px;
  z-index: 2;
  position: absolute;
}

.card-intro-title {
  font-size: 28px;
  color: #333333;
  height: 42px;
  line-height: 42px;
  width: 120px;
  float: left;
}

.card-intro-hello {
  color: #2c8eca;
  font-size: 12px;
  line-height: 27px;
  height: 18px;
}

.card-intro-english {
  color: #003333;
  font-size: 16px;
  line-height: 21px;
  height: 21px;
}

/*标签  */
.card-tips {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-tips.png") 0 0px no-repeat;
  width: 205px;
  height: 34px;
  position: absolute;
  left: 0;
  bottom: 45px;
  z-index: 2;
  opacity: 0;
}

/* 主题 */
.card-slogan {
  background: url("//www.xiongan.gov.cn/info/xagk/images/card-slogan.png") 0 0px no-repeat;
  width: 497px;
  height: 192px;
  position: absolute;
  right: 52px;
  bottom: 90px;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 3000px, 0);
}

/* 动画 */
.init .card-intro {
  animation: bounceInLeft 1s linear;
  animation-fill-mode: forwards;
}

.init .card-tips {
  animation: tada 1s linear;
  animation-fill-mode: forwards;
}

.init .card-slogan {
  animation: bounceInUp 1s linear;
  animation-fill-mode: forwards;
}

.init li.card-list-env {
  animation: zoomIn 0.5s linear;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.init li.card-list-climate {
  animation: zoomIn 0.5s linear;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

.init li.card-list-mine {
  animation: zoomIn 0.5s linear;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.init li.card-list-eco {
  animation: zoomIn 0.5s linear;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

.init li.card-list-nation {
  animation: zoomIn 0.5s linear;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

.init li.card-list-soci {
  animation: zoomIn 0.5s linear;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}

.init .card-play,
.init .card-bg {
  animation: fadeIn 2s ease;
  animation-fill-mode: forwards;
}

/*# sourceMappingURL=maps/card.css.map */
