@charset "UTF-8";
.no-onclick {
  pointer-events: none;
}

.flex-item-vertical, #select-toast .box .text .msg {
  overflow: auto;
  /* winphone8和android4+ */
  -webkit-overflow-scrolling: touch;
  /* ios5+ */
}
.flex-item-vertical::-webkit-scrollbar, #select-toast .box .text .msg::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html {
  min-width: 1200px;
  height: 100%;
  background-color: transparent;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  font-size: 32px;
  font-family: '微软雅黑','PingFangSC-Regular','Helvetica Neue','San Francisco','Muli','sans-serif';
}

html::-webkit-scrollbar {
  width: 0px;
}

@font-face {
  font-family: Alternate;
  src: url("../framework/Alternate.ttf");
}
body {
  min-height: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #333;
}

a,
aside,
article,
body,
blockquote,
code,
cite,
div,
dl,
dt,
dd,
del,
em,
footer,
figcaption,
figure,
form,
fieldset,
header,
h1,
h2,
h3,
h4,
h5,
h6,
input,
img,
li,
legend,
mark,
nav,
ol,
p,
pre,
section,
span,
strong,
th,
td,
time,
textarea,
ul,
var {
  margin: 0;
  padding: 0;
}

article,
aside,
div,
header,
section,
footer,
nav,
figure,
li {
  display: block;
}

th {
  font-weight: normal;
}

input,
textarea,
button,
select,
label,
[contenteditable] {
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  padding: 0;
  background: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text;
}

input,
textarea {
  width: 100%;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

select, textarea {
  width: 100%;
}

textarea {
  resize: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  font-weight: normal;
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img {
  border: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

[contenteditable]:empty::before {
  content: attr(placeholder);
  color: #ccc;
}
[contenteditable]:focus::before:empty::before {
  content: attr(placeholder);
}
[contenteditable]:focus::before:not(:empty)::before {
  content: initial;
}

video {
  width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=number] {
  width: 100%;
}

input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  font-size: 1em;
  color: inherit;
}
input[type=radio] + label::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  left: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 0 1px #bbb;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
input[type=radio] + label::before {
  border-radius: 50%;
  border: .25em solid #fff;
}
input[type=radio]:checked + label::before {
  background-color: #00a0e9;
  box-shadow: 0 0 0 1px #00a0e9;
}

.model-fixd {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
}

.show {
  display: block;
}

.hide {
  display: none !important;
}

.color-success {
  background-color: #67C23A;
}

.color-warning {
  background-color: #E6A23C;
}

.color-danger {
  background-color: #F56C6C;
}

.hover {
  opacity: .8;
}

.clear::after {
  content: '';
  display: block;
  clear: both;
}

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
}

.flex-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex-item-vertical {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

#toast {
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(56, 56, 56, 0.8);
  border-radius: 45px;
  max-width: 90%;
  font-size: 13px;
  color: #fff;
  text-align: center;
  word-break: break-all;
  padding: 3px 10px;
}

#select-toast .box {
  width: 270px;
  text-align: center;
  background-color: white;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 999;
}
#select-toast .box .text {
  padding: 25px 15px 20px;
}
#select-toast .box .text .title {
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}
#select-toast .box .text .msg {
  color: #888888;
  line-height: 22.5px;
  max-height: 200px;
}
#select-toast .box .select-list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#select-toast .box .select-list::before {
  border-top: 1px solid #eee;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0 0;
}
#select-toast .box .select-list .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  line-height: 41px;
  color: #999;
}
#select-toast .box .select-list .item:not(:first-child) {
  position: relative;
}
#select-toast .box .select-list .item:not(:first-child)::after {
  border-left: 1px solid #eee;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  transform-origin: 0 50% 0;
}
#select-toast .box .select-list .item.active {
  color: #D75C23;
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  background-color: rgba(15, 15, 14, 0.8);
  border-bottom: 3px solid rgba(15, 15, 14, 0.8);
}
.header .header-box {
  max-width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0 70px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header .header-box .header-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header .header-box .header-left .logo {
  width: 45px;
  margin-right: 18px;
}
.header .header-box .header-left .title {
  font-size: 31px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.header .header-box .header-left .title span {
  font-size: 18px;
}
.header .header-box .header-right {
  width: 600px;
}
.header .header-box .header-right .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header .header-box .header-right .list .item {
  position: relative;
  color: #999;
  text-align: center;
  font-size: 18px;
  height: 70px;
  line-height: 70px;
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.header .header-box .header-right .list .item.active {
  color: #fff;
  font-size: 20px;
  border-bottom: 3px solid #19b2ff;
}
.header .header-box .header-right .list .item:hover {
  font-size: 20px;
  color: #fff;
}
.header .header-box .header-right .list .item.more:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: 10px solid;
  border-color: #999 transparent transparent;
  border-bottom: 0;
}
.header .header-box .header-right .list .item.more:hover .option {
  display: block;
}
.header .header-box .header-right .list .item.more:hover:after {
  border-color: #fff transparent transparent;
}
.header .header-box .header-right .list .item .option {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  font-size: 14px;
  line-height: 30px;
  padding: 10px;
  background-color: rgba(15, 15, 14, 0.8);
}
.header .header-box .header-right .list .item .option .op {
  display: block;
  cursor: pointer;
}

.footer {
  background-color: #3e3e3e;
}
.footer .foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 70px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.footer .foot .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.footer .foot .item.explain {
  text-align: left;
}
.footer .foot .info .info-logo {
  width: 80px;
}
.footer .foot .info .name {
  font-size: 30px;
  color: #fff;
}
.footer .foot .text {
  line-height: 30px;
}
.footer .foot .text.record:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url("../images/logo-1.png") center/cover no-repeat transparent;
}
.footer .foot .box img {
  width: 150px;
  border-radius: 2px;
}
.footer .foot .box img:first-child {
  margin-right: 10px;
}

.ios-select-widget-box.olay.five-level-box {
  background-color: rgba(0, 0, 0, 0.5);
}

[contenteditable]:empty::before {
  color: #BEBFC0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

#no-data {
  height: 100vh;
  text-align: center;
  color: #999999;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#no-data.height1 {
  height: 10vh;
}
#no-data.height2 {
  height: 20vh;
}
#no-data.height3 {
  height: 30vh;
}
#no-data.height4 {
  height: 40vh;
}
#no-data.height5 {
  height: 50vh;
}
#no-data.height6 {
  height: 60vh;
}
#no-data.height7 {
  height: 70vh;
}
#no-data.height8 {
  height: 80vh;
}
#no-data.height9 {
  height: 90vh;
}
#no-data::before {
  content: '';
  display: block;
  height: 178px;
  width: 186px;
  margin: 0 auto 17px;
  background: url("../images/icon-home.png") center bottom/186px auto no-repeat transparent;
}
#no-data.wallet::before {
  background: url("../images/bitmap-wallet-detail.png") center bottom/186px auto no-repeat transparent;
}

.rich-text {
  max-width: 100%;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.screen {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  width: 260px;
  text-align: center;
}
.screen .scr-title {
  font-size: 15px;
  color: #000;
  font-weight: bold;
  padding: 25px 0 15px;
  line-height: 21px;
}
.screen .scr-message {
  font-size: 14px;
  color: #666;
  padding: 0 15px 20px;
  line-height: 20px;
}
.screen .scr-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}
.screen .scr-box::before {
  border-top: 1px solid #706776;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  -o-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0 0;
}
.screen .scr-box::before {
  border-color: #ddd;
}
.screen .scr-box .scr-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  height: 41px;
  line-height: 41px;
  font-size: 15px;
  color: #999;
  position: relative;
}
.screen .scr-box .scr-item::before {
  border-right: 1px solid #706776;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 100% 50% 0;
  -moz-transform-origin: 100% 50% 0;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50% 0;
}
.screen .scr-box .scr-item::before {
  border-color: #ddd;
}
.screen .scr-box .scr-item:last-of-type::before {
  border: none;
}
.screen .scr-box .scr-item.color {
  color: #D75C23;
}

.wrap .banner .swiper-slide {
  position: relative;
  height: 770px;
  background: url("../images/banner-1.jpg") center/cover no-repeat transparent;
}
.wrap .banner .swiper-slide:nth-child(1) {
  background: url("../images/banner-1.jpg") center/cover no-repeat transparent;
}
.wrap .banner .swiper-slide:nth-child(2) {
  background: url("../images/banner-1.jpg") center/cover no-repeat transparent;
}
.wrap .banner .swiper-slide:nth-child(3) {
  background: url("../images/banner-1.jpg") center/cover no-repeat transparent;
}
.wrap .banner .swiper-slide .word {
  position: absolute;
  top: 45%;
  right: 10%;
  color: #fff;
}
.wrap .banner .swiper-slide .word .title {
  font-family: 微软雅黑;
  font-size: 40px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
}
.wrap .banner .swiper-slide .word .info {
  padding-top: 30px;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}
.wrap .banner .swiper-slide .explain {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 55%;
  line-height: 50px;
  font-size: 40px;
  color: #0000bf;
  font-weight: bold;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.wrap .theme {
  width: 80%;
  margin: 30px auto;
  text-align: center;
  font-size: 40px;
  border-radius: 20px;
  padding: 20px 0;
  color: #fff;
  background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
  /* 标准的语法 */
  background-color: #b856ff;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
}
.wrap .theme:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.wrap .article .article-list .article-item {
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 60px;
  /*多平台管理样式开始*/
  /*数据可视化样式开始*/
  /*产品介绍*/
  /*关于我们*/
}
.wrap .article .article-list .article-item.color-f9f9f9 {
  background-color: #f9f9f9;
}
.wrap .article .article-list .article-item .title {
  font-family: "微软雅黑 Light";
  color: #333;
  font-size: 56px;
  text-align: center;
}
.wrap .article .article-list .article-item .description {
  padding-bottom: 52px;
  padding-top: 30px;
  line-height: 35px;
  text-align: center;
  font-family: 微软雅黑;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  color: #666666;
  display: block;
  vertical-align: bottom;
}
.wrap .article .article-list .article-item .content {
  position: relative;
  min-height: 780px;
}
.wrap .article .article-list .article-item .content .bottom {
  width: 60%;
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #ccc;
}
.wrap .article .article-list .article-item .content .bottom.active {
  z-index: 10;
  transform: scale(1.1);
  transition-delay: 0.5;
}
.wrap .article .article-list .article-item .content .bottom .article-img {
  border-radius: 8px;
  width: 100%;
}
.wrap .article .article-list .article-item .content .center {
  width: 60%;
  position: absolute;
  top: 15%;
  left: 20%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #ccc;
}
.wrap .article .article-list .article-item .content .center.active {
  z-index: 10;
  transform: scale(1.1);
  transition-delay: 0.5;
}
.wrap .article .article-list .article-item .content .center .article-img {
  border-radius: 8px;
  width: 100%;
}
.wrap .article .article-list .article-item .content .top {
  width: 60%;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #ccc;
  position: absolute;
  top: 20%;
  left: 30%;
  z-index: 3;
}
.wrap .article .article-list .article-item .content .top.active {
  z-index: 10;
  transform: scale(1.1);
  transition-delay: 0.5;
}
.wrap .article .article-list .article-item .content .top .article-img {
  border-radius: 8px;
  width: 100%;
}
.wrap .article .article-list .article-item .article-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap .article .article-list .article-item .article-block .article-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.wrap .article .article-list .article-item .article-block .article-left .img-box {
  position: relative;
  padding-bottom: 80px;
  padding-left: 50px;
  text-align: center;
}
.wrap .article .article-list .article-item .article-block .article-left .img-box img {
  width: 100%;
  border-radius: 4px;
}
.wrap .article .article-list .article-item .article-block .article-left .img-box .img-top {
  position: absolute;
  z-index: 2;
  right: -100px;
  top: 100px;
}
.wrap .article .article-list .article-item .article-block .article-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.wrap .article .article-list .article-item .article-block .article-right .title {
  font-family: "微软雅黑 Light";
  font-size: 40px;
  padding-left: 20%;
  text-align: left;
}
.wrap .article .article-list .article-item .article-block .article-right .description {
  padding-left: 20%;
  text-align: left;
  font-size: 20px;
  font-family: "微软雅黑 Light";
}
.wrap .article .article-list .article-item .article-block .article-right .subtitle {
  font-family: "微软雅黑 Light";
  font-size: 30px;
  padding-left: 20%;
  text-align: left;
}
.wrap .article .article-list .article-item .article-block .article-right .img {
  padding-left: 26%;
  margin-top: 30px;
  width: 300px;
}
.wrap .article .article-list .article-item .article-block .article-right .img img {
  width: 300px;
  border-radius: 8px;
}
.wrap .article .article-list .article-item .article-digital {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  min-height: 600px;
}
.wrap .article .article-list .article-item .article-digital .article-left {
  width: 35%;
  min-height: 600px;
}
.wrap .article .article-list .article-item .article-digital .article-left .title {
  font-family: "微软雅黑 Light";
  font-size: 40px;
  padding-left: 25%;
  text-align: left;
}
.wrap .article .article-list .article-item .article-digital .article-left .description {
  padding-top: 10%;
  padding-left: 25%;
  text-align: left;
  font-size: 20px;
  font-family: "微软雅黑 Light";
}
.wrap .article .article-list .article-item .article-digital .article-left .download {
  width: 200px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  background-color: #409EFF;
  margin-top: 6%;
  margin-left: 25%;
  text-align: center;
  font-size: 20px;
  font-family: "微软雅黑 Light";
}
.wrap .article .article-list .article-item .article-digital .article-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-height: 600px;
  position: relative;
}
.wrap .article .article-list .article-item .article-digital .article-right .top {
  width: 70%;
  position: absolute;
  top: 0;
  left: 20%;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #ccc;
}
.wrap .article .article-list .article-item .article-digital .article-right .top.active {
  z-index: 10;
  transform: scale(1.1);
  transition-delay: 0.5;
}
.wrap .article .article-list .article-item .article-digital .article-right .top img {
  border-radius: 8px;
  width: 100%;
}
.wrap .article .article-list .article-item .article-digital .article-right .bottom {
  width: 70%;
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0px 0px 20px #ccc;
}
.wrap .article .article-list .article-item .article-digital .article-right .bottom.active {
  z-index: 10;
  transform: scale(1.1);
  transition-delay: 0.5;
}
.wrap .article .article-list .article-item .article-digital .article-right .bottom img {
  border-radius: 8px;
  width: 100%;
}
.wrap .article .article-list .article-item .article-product .product-title {
  text-align: center;
  font-family: "微软雅黑 Light";
  font-size: 40px;
  font-weight: normal;
  font-style: normal;
  color: #333333;
  padding-bottom: 30px;
}
.wrap .article .article-list .article-item .article-product .product-list {
  max-width: 1000px;
  padding: 50px 10px 0;
  margin: 0 auto;
  font-size: 0;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item {
  width: 33.33%;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(1) .item:hover .product-icon {
  background: url("../images/icon-face-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(2) .item:hover .product-icon {
  background: url("../images/icon-monitor-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(3) .item:hover .product-icon {
  background: url("../images/icon-brake-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(4) .item:hover .product-icon {
  background: url("../images/icon-elevator-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(5) .item:hover .product-icon {
  background: url("../images/icon-tower-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(6) .item:hover .product-icon {
  background: url("../images/icon-environmental-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(7) .item:hover .product-icon {
  background: url("../images/icon-helmet-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item:nth-child(8) .item:hover .product-icon {
  background: url("../images/icon-led-active.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item {
  position: relative;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
  border: 1px solid #cccccc;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item:hover .more {
  top: 0;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon {
  padding: 20px 0;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: url("../images/icon-face.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.monitor {
  background: url("../images/icon-monitor.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.brake {
  background: url("../images/icon-brake.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.elevator {
  background: url("../images/icon-elevator.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.tower {
  background: url("../images/icon-tower.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.environmental {
  background: url("../images/icon-environmental.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.helmet {
  background: url("../images/icon-helmet.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .product-icon.led {
  background: url("../images/icon-led.png") center/70px no-repeat transparent;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item img {
  width: 70px;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .info {
  color: #494949;
  font-size: 15px;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 10px;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background-color: rgba(97, 176, 255, 0.8);
  z-index: 999;
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  -ms-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more .text {
  color: #fff;
  font-size: 14px;
  padding: 15px 0;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more .box img {
  width: 40%;
  border-radius: 4px;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more .box img:first-child {
  margin-right: 10px;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more .call {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}
.wrap .article .article-list .article-item .article-product .product-list .product-item .item .more .call:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
  background: url("../images/icon-call.png") center/cover no-repeat transparent;
}
.wrap .article .article-list .article-item .article-us {
  padding: 80px 0;
  background: url("../images/bitmap-product-bg.png") center/cover no-repeat transparent;
}
.wrap .article .article-list .article-item .article-us .title {
  font-family: "微软雅黑 Light";
  font-size: 40px;
  color: #fff;
}
.wrap .article .article-list .article-item .article-us .description {
  width: 50%;
  color: #fff;
  margin: 0 auto;
  font-family: "微软雅黑 Light";
}

@keyframes myfirst {
  0% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
  25% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  50% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  100% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
}
@-moz-keyframes myfirst /* Firefox */ {
  0% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
  25% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  50% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  100% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
}
@-webkit-keyframes myfirst /* Safari 和 Chrome */ {
  0% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
  25% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  50% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  100% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
}
@-o-keyframes myfirst /* Opera */ {
  0% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
  25% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  50% {
    background: -webkit-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #409EFF 0%, #b856ff 100%);
    /* 标准的语法 */
  }
  100% {
    background: -webkit-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(135deg, #b856ff 0%, #409EFF 100%);
    /* 标准的语法 */
  }
}

/*# sourceMappingURL=index.css.map */
