@charset "utf-8";
/**
 * @Author   zcool
 * @Date     2017-11-20
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
ol {
  margin: 0;
  padding: 0;
}
*,
::after,
::before {
  box-sizing: border-box;
  font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
}
body {
  font: 12px -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
}
ol,
ul,
li {
  list-style-type: none;
  vertical-align: middle;
}
img {
  vertical-align: top;
  border: 0;
}
input,
select,
textarea,
button {
  vertical-align: middle;
}
textarea,
input {
  text-indent: 10px;
}
/*表单元素默认有10像素的缩进*/
input[type='submit'],
input[type='button'],
button {
  text-indent: 0;
  text-align: center;
  cursor: pointer;
}
label,
button,
a {
  cursor: pointer;
}
ins,
em,
b,
i {
  text-decoration: none;
  font-style: normal;
}
/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
  outline: none;
}
/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
  color: #999;
  transition: color .5s;
}
/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
  color: #c2c2c2;
}
/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}
/* a_link */
a {
  color: inherit;
  text-decoration: none;
}
a[href] {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  background-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6,
em {
  font-weight: normal;
}
a,
span,
li,
b,
i,
label,
p,
strong,
div,
h1,
h2,
h3,
h4,
h5,
h6,
font,
small,
em,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  font-size: 14px;
}
span {
  display: inline-block;
}
p {
  line-height: 2;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
/*用来解决在安卓上的点击出现篮框问题*/
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
font {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
}
body,
html {
  height: 100%;
}
.noc{
  moz-user-select: -moz-none;
  -moz-user-select: none;
  -o-user-select:none;
  -khtml-user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
::-webkit-scrollbar {
  width: 9px;
  background-color: #000;
}
::-webkit-scrollbar-thumb {
  border: solid 2px #000;
  width: 5px;
  border-radius: 4px;
  background-color: #0f218b;
}
::-webkit-scrollbar-corner {
  background-color: #000;
}
::-webkit-scrollbar:horizontal {
  height: 9px;
}
::-webkit-selection {
  background: #0f218b;
  color: #fff;
}
::-moz-selection {
  background: #0f218b;
  color: #fff;
}
::selection {
  background: #0f218b;
  color: #fff;
}
/*滚动动画的样式*/
.disable-hover {
  pointer-events: none;
}
.scroll-animate.animated {
  visibility: hidden;
}
.font-fadeIn font {
  display: inline-block;
}
.scrolly {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
/* 浮动与清浮动 */
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn{float: none !important;}
.cl::after {
  content: '\20';
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.text_overflow {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-ahref] {
  cursor: pointer;
}
.over-2 {
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.over-3 {
  line-height: 24px;
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
html {
  font-size: 100px;
}
/* 初始定义 */
@font-face {
  font-family: 'en_b';
  src: url('../fonts/montserrat-bold.ttf');
}
.en-b {
  font-family: en_b;
}
@font-face {
  font-family: 'en_l';
  src: url('../fonts/montserrat-light.ttf');
}
.en-l {
  font-family: en_l;
}
@font-face {
  font-family: 'en_bb';
  src: url('../fonts/montserrat-extrabold.ttf');
}
.en-bb {
  font-family: en_bb;
}
@font-face {
  font-family: 'en_bi';
  src: url('../fonts/montserrat-extrabolditalic.ttf');
}
.en-bi {
  font-family: en_bi;
}
@font-face {
  font-family: 'word';
  src: url('../fonts/word.ttf');
}
/* 定义网站色值 */
.mc {
  color: #0f218b;
}
.fc {
  color: #6ea97f;
}
.sc{
  color: #333;
}
.wc {
  color: #ffffff;
}
.gc {
  color: #6f6f6f;
}
.d-gc {
  color: #9e9e9e;
}
.rc {
  color: #ff231c;
}
.oc {
  color: #fc842c;
}
.yc {
  color: #fff714;
}
.gc {
  color: #0f218b;
}
.bc {
  color: #3f539a;
}
.font-40 {
  font-size: 40px;
}
.font-32 {
  font-size: 32px;
}
.font-30 {
  font-size: 30px;
}
.font-28 {
  font-size: 28px;
}
.font-24 {
  font-size: 24px;
}
.font-20 {
  font-size: 20px;
}
.font-18 {
  font-size: 18px;
}
.font-16 {
  font-size: 16px;
}
.bgw{background: #fff !important;}
.transi {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.linear-bg {
  background: linear-gradient(0deg, #03aedb 0%, #137acc 100%);
}
.linear-txt {
  background: linear-gradient(0deg, #03aedb 0%, #137acc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.max-wid {
  width: 82%;
  max-width: 1600px;
  margin: auto;
}
.full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.layout-tab {
  display: table;
  width: 100%;
}
.layout-tab > .cell {
  display: table-cell;
  vertical-align: middle;
}
.Sline {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  fill: none;
  stroke: #92989e;
  pointer-events: none;
  -webkit-transform: translate3d(-66.6%, 0, 0);
  transform: translate3d(-66.6%, 0, 0);
  -webkit-transition: -webkit-transform 0.7s, stroke 0.7s, stroke-width 0.7s;
  transition: transform 0.7s, stroke 0.7s, stroke-width 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.pro-box {
  float: left;
  width: 100%;
}
.pro-box .pro-pic {
  width: 100%;
  height: 250px;
  position: relative;
  z-index: 10;
}
.pro-box .pro-pic > img {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 4;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -webkit-box-reflect: below 8px -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 50%, rgba(250, 250, 250, 0.12));
}
.pro-box .pro-pic:hover > img {
  top: -30px;
}
.pro-box .pro-pic:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #343434;
  height: 50%;
  z-index: 1;
}
@keyframes beat {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    -o-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}
.pro-box .pic-name {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}
.page {
  text-align: center;
}
.page .pageSet {
  color: #626262;
  margin: 0 14px;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}
.page .pageSet:hover {
  color: #fff;
}
.page > ol {
  display: inline-block;
}
.page > ol > li {
  width: 30px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #626262;
  font-family: word;
  cursor: pointer;
  font-size: 18px;
}
.page > ol > li.on,
.page > ol > li:hover {
  color: #0f218b;
}
.layout-row {
  width: 100%;
}
#home .layout-row .layout-rowMain {
  width: 84%;
  max-width: 1600px;
  padding: 22vh 0 5vh;
  margin: auto;
}
.layout-row .layout-rowMain {
  width: 82%;
  max-width: 1600px;
  padding: 5vh 0;
  margin: auto;
}
.pagetitle .name{margin-bottom: 6vh; overflow: hidden;}
.pagetitle .name span{display: block; text-align: center; margin-top: 30px; }
.pagetitle h1{font-weight: normal; font-size: 2vw; text-align: center;}
.pagetitle span a{
  display: inline-block;
  border: 1px solid #7a7a7c;
  padding: 0 1.2vw;
  font-size: .8vw;
  line-height: 2.6vw;
  border-radius: 3px;
  text-align: center;
  vertical-align: middle;
  color: #666;
  margin-top: 5px;
}
.pagetitle span a:hover{background:#0f218b ; color: #fff;}
.clear{clear: both;}
.layout-row .layout-rowMain .title {
  font-size: 40px;
  position: relative;
  font-weight: bold;
}
.layout-row .layout-rowMain .title > b {
  font-size: 40px;
  display: inline;
}
.layout-row .layout-rowMain .layout-mid {
  overflow: hidden;
}
.layout-pa-box {
  position: relative;
}
.layout-pa-box .layout-pa-right {
  position: absolute;
  right: 0;
}
.layout-pa-box .layout-pa-left {
  position: absolute;
  left: 0;
}
/* 新闻文章列表 */
.layout-articles {
  border-bottom: 1px solid #eee;
}
.layout-articles .layout-top {
  display: inline-block;
}
.layout-articles .layout-top h4.layout-title {
  text-align: left;
  font-weight: bold;
  font-size: 0.18rem;
  color: #333;
}
.layout-articles .layout-top > small {
  display: block;
  font-weight: 500;
  color: #6a6a6a;
  font-size: 0.13rem;
  margin: 0.15rem 0 0.2rem 0;
}
.layout-articles p {
  line-height: 150%;
  font-size: 14px;
}
.layout-articles .layout-btm {
  clear: both;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0.3rem 0;
  position: relative;
  box-sizing: content-box;
}
.layout-articles .layout-btm > .btn {
  background-color: #f0f4f7;
  color: #6a6a6a;
  width: 1.25rem;
  height: 0.45rem;
  line-height: 0.45rem;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 0.13rem;
}
.layout-articles:not(:last-child) {
  margin-bottom: 0.7rem;
}
/*列表*/
.layout-ul > li {
  height: 0.38rem;
  line-height: 0.38rem;
  position: relative;
  color: #6f6f6f;
}
.layout-ul > li > i {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  height: 0.3rem;
}
/* 按钮 */
.layout-btn {
  padding: 20px 36px;
  background: transparent;
  border: 1px solid #4e4e4e;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.layout-btn > i {
  vertical-align: sub;
  margin-right: 20px;
}
.layout-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
/* tab选项 */
.layout-tabBox ul.layout-part {
  overflow: hidden;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.layout-tabBox ul.layout-part > li {
  width: calc(100%/5);
  float: left;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
}
/*box1:图片（上）+文字（下）*/
.layout-box1 {
  width: 100%;
}
.layout-box1 .photo {
  width: 100%;
  height: max-content;
  border-radius: 4px;
  background-position: center;
  margin-bottom: 16px;
}
.layout-box1 .txt h4 {
  height: 30px;
  line-height: 30px;
  margin: 30px 0;
}
.layout-box1 .txt p {
  height: 60px;
  line-height: 160%;
  overflow: hidden;
  color: #000;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box:hover p{color: #0f218b;}
.layout-box1 .txt p:hover{color: #0f218b;}
.layout-box1 .txt small {
  display: inline-block;
  margin: 10px 0 0;
}
/*box2:图片（左）+文字（右）*/
.layout-box2 {
  position: relative;
  padding: 20px;
  box-sizing: content-box;
}
.layout-box2 .pic {
  width: 16%;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: top;
  height: 80%;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.layout-box2 .txt {
  padding-left: 20%;
}
.layout-box2 .txt h4 {
  margin-bottom: 12px;
}
.layout-box2 .txt small {
  display: block;
  color: #8d8d8d;
}
/*输入框*/
.layout-inputBox {
  display: inline-block;
}
.layout-inputBox > h5 {
  height: 0.32rem;
  line-height: 0.32rem;
}
.layout-inputBox .input-text {
  height: 50px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.layout-inputBox .input-text > input {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  border: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  z-index: 10;
}
.layout-inputBox .input-text > input:focus {
  background-color: transparent;
  border-color: transparent;
}
.layout-inputBox .input-text > input:focus ~ .input-border {
  background-color: white;
}
.layout-inputBox .input-text > input:focus ~ .input-border:first-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 100%;
}
.layout-inputBox .input-text > input:focus ~ .input-border:first-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type {
  background: transparent;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100%;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
  top: 0;
}
.layout-inputBox .input-text .input-border {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.layout-inputBox .input-text .input-border:before,
.layout-inputBox .input-text .input-border:after {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  background-color: #0f218b;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.layout-inputBox .input-text .input-border:first-of-type:before {
  height: 2px;
  left: 0;
  top: 0;
  width: 0;
}
.layout-inputBox .input-text .input-border:first-of-type:after {
  height: 0;
  right: 0;
  top: 0;
  width: 2px;
}
.layout-inputBox .input-text .input-border:last-of-type:before {
  background-color: #0f218b;
  height: 2px;
  top: calc(100% - 2px);
  right: 0;
  width: 0;
}
.layout-inputBox .input-text .input-border:last-of-type:after {
  background-color: #01afd1;
  height: 0;
  top: calc(100% - 2px);
  left: 0;
  width: 2px;
}
.layout-inputRow {
  position: relative;
}
.layout-inputRow span.txt {
  width: 20%;
  display: inline-block;
  text-indent: 20px;
  font-size: 16px;
  font-weight: bold;
}
.layout-inputRow input {
  border: none;
  border-bottom: 1px solid #d8dede;
  width: 80%;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #000;
}
.layout-inputRow input:focus + span.borderLine {
  width: 80%;
}
.layout-inputRow input:focus ~ .input-down {
  opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
.layout-inputRow span.borderLine {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: #0f218b;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.layout-inputRow .input-down {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  width: 80%;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -ms-transform: translateY(20px);
  opacity: 0;
  padding: 20px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  background-color: #fff;
  box-shadow: 0 3px 12px -3px rgba(0, 0, 0, 0.19);
}
.layout-inputRow .input-down > li {
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.layout-inputRow .input-down > li:hover {
  background-color: #e5eaea;
}
/*下拉框结构*/
.layout-down {
  display: inline-block;
  padding-right: 0.4rem;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  height: 0.4rem;
  line-height: 0.4rem;
  cursor: pointer;
}
.layout-down span.downTxt {
  display: inline-block;
  width: 100px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  border: none;
  background-color: transparent;
  box-sizing: border-box;
  padding: 0.04rem 0.08rem;
  height: 100%;
  vertical-align: top;
}
.layout-down span.downTxt:after {
  content: '';
  width: 1px;
  height: 50%;
  top: 0;
  bottom: 0;
  background-color: #ddd;
  right: 0;
  position: absolute;
  margin: auto;
}
.layout-down span.downIcon {
  position: absolute;
  right: 0;
  width: 0.4rem;
  top: 0;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  color: #fff;
  height: 0.4rem;
  line-height: 0.4rem;
}
.layout-down ul.down {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  z-index: 100;
  display: none;
}
.layout-down ul.down > li {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.08rem;
  background-color: rgba(0, 0, 0, 0.5);
  float: left;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.layout-down ul.down > li > span {
  color: #bcbcbc;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.layout-down ul.down > li:hover {
  background-color: #0f218b;
}
.layout-down ul.down > li:hover > span {
  color: #fff;
}
.layout-down.active span.downIcon {
  transform: scale(-1);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -o-transform: scale(-1);
  -ms-transform: scale(-1);
}
/*图片容器*/
.pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.pic img.w-h {
  width: 100%;
  max-width: 100%;
  opacity: 0;
}
.pic img.lazy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
}
/*弹窗*/
.home .dialog{visibility: hidden;}
.dialog {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.dialog .dialog_mask {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1001;
  background: rgba(55, 58, 71, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-backface-visibility: hidden;
}
.dialog .dialog_content {
  width: 50%;
  max-width: 560px;
  min-width: 290px;
  background: #fff;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1005;
  opacity: 1;
}
.dialog.dialog--open {
  visibility: visible;
}
.dialog.dialog--open .dialog_mask {
  opacity: 1;
  pointer-events: auto;
}
.dialog.dialog--open .dialog_content {
  opacity: 1;
  pointer-events: auto;
}
/*输入框*/
.layout-inputBox {
  display: inline-block;
}
.layout-inputBox > h5 {
  height: 0.32rem;
  line-height: 0.32rem;
}
.layout-inputBox .input-text {
  height: 50px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.layout-inputBox .input-text > input {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  border: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  z-index: 10;
}
.layout-inputBox .input-text > input:focus {
  background-color: transparent;
  border-color: transparent;
}
.layout-inputBox .input-text > input:focus ~ .input-border {
  background-color: white;
}
.layout-inputBox .input-text > input:focus ~ .input-border:first-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 100%;
}
.layout-inputBox .input-text > input:focus ~ .input-border:first-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type {
  background: transparent;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100%;
}
.layout-inputBox .input-text > input:focus ~ .input-border:last-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
  top: 0;
}
.layout-inputBox .input-text .input-border {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.layout-inputBox .input-text .input-border:before,
.layout-inputBox .input-text .input-border:after {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  background-color: #0f218b;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.layout-inputBox .input-text .input-border:first-of-type:before {
  height: 2px;
  left: 0;
  top: 0;
  width: 0;
}
.layout-inputBox .input-text .input-border:first-of-type:after {
  height: 0;
  right: 0;
  top: 0;
  width: 2px;
}
.layout-inputBox .input-text .input-border:last-of-type:before {
  background-color: #0f218b;
  height: 2px;
  top: calc(100% - 2px);
  right: 0;
  width: 0;
}
.layout-inputBox .input-text .input-border:last-of-type:after {
  background-color: #01afd1;
  height: 0;
  top: calc(100% - 2px);
  left: 0;
  width: 2px;
}
.layout-inputRow {
  position: relative;
}
.layout-inputRow span.txt {
  width: 20%;
  display: inline-block;
  text-indent: 20px;
  font-size: 16px;
  font-weight: bold;
}
.layout-inputRow input {
  border: none;
  border-bottom: 1px solid #d8dede;
  width: 80%;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #000;
}
.layout-inputRow input:focus + span.borderLine {
  width: 80%;
}
.layout-inputRow input:focus ~ .input-down {
  opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
.layout-inputRow span.borderLine {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: #0f218b;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.layout-inputRow .input-down {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  width: 80%;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -ms-transform: translateY(20px);
  opacity: 0;
  padding: 20px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  background-color: #fff;
  box-shadow: 0 3px 12px -3px rgba(0, 0, 0, 0.19);
}
.layout-inputRow .input-down > li {
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.layout-inputRow .input-down > li:hover {
  background-color: #e5eaea;
}
.component {
  margin: 0 auto;
  position: relative;
  margin-bottom: 0.4rem;
  max-width: 100%;
}
.component > ul {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.component > ul > li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.component > ul > li > img {
  display: block;
  max-width: 100%;
}
.component > ul .current {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}
.component nav > a {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #5b4c5c;
  outline: none;
  overflow: visible;
  text-align: center;
  top: 50%;
  z-index: 1100;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.component nav .moveNext {
  right: 0;
}
.component .Tcon {
  position: absolute;
  width: 80%;
  height: 70%;
  top: 10%;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 11;
}
.component .Tcon > small {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: max-content;
}
.component .Tcon > small > .Tpage {
  color: #fff;
  font-size: 0.2rem;
}
.component .Tcon .txtChange {
  position: relative;
  height: 100%;
  width: 100%;
}
.component .Tcon .txtChange > [data-txt] {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 70%;
  color: #fff;
  text-align: center;
  font-size: 0.24rem;
  pointer-events: none;
  transition: all 0.4s;
  -webkit-perspective: 1600px;
  perspective: 1600px;
}
.component .Tcon .txtChange > [data-txt] > span {
  letter-spacing: 50px;
  display: block;
  text-align: center;
}
.component .Tcon .txtChange > [data-txt] > small {
  letter-spacing: 20px;
  display: block;
  text-align: center;
  line-height: 32px;
}
.component .Tcon .txtChange > [data-txt]:after {
  content: attr(data-note);
  position: absolute;
  right: 0;
  bottom: 0;
  height: 25px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  letter-spacing: 40px;
}
.component .Tcon .txtChange > [data-txt].on {
  opacity: 1;
  pointer-events: auto;
}
.component .Tcon .txtChange > [data-txt].txtHide {
  -webkit-animation: fadeOut 1s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: fadeOut 1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.component .Tcon .txtChange > [data-txt].txtShow {
  -webkit-animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
.component .Tcon .pageChange {
  position: absolute;
  width: max-content;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.component .Tcon .pageChange > li {
  display: inline-block;
  float: left;
  height: 0.25rem;
  line-height: 0.25rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  opacity: 0.18;
  cursor: pointer;
}
.component .Tcon .pageChange > li > img {
  height: 100%;
}
.component .Tcon .pageChange > li.on {
  opacity: 1;
}
.component-small {
  width: 650px;
  height: 290px;
}
.component-small > ul {
  width: 450px;
}
.component-fullwidth {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  background: transparent;
}
.component-fullwidth > ul {
  overflow: hidden;
}
.component-fullwidth > ul > li {
  overflow: hidden;
}
.component-fullwidth > ul > li > img {
  min-width: 100%;
  max-width: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.component-transparent {
  width: 900px;
  height: 500px;
}
.component-transparent > ul {
  width: 60%;
}
.component-transparent > ul > li {
  height: 90%;
}
.component-transparent > ul > li > img {
  max-width: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* input:range样式 */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: -webkit-linear-gradient(right, #28e3e4, #28c3c4) no-repeat;
  background-size: 0% 100%;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 0px;
  /*将轨道设为圆角的*/
  box-shadow: 0 1px 50px #f0f0f0 inset;
  /*轨道内置阴影效果*/
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  margin-top: -8px;
  /*使滑块超出轨道部分的偏移量相等*/
  background: #0f218b;
  border-radius: 50%;
  /*外观设置为圆形*/
  border: solid 0.36em #9aeded;
  /*设置边框*/
  box-shadow: 0 0.125em 0.125em rgba(29, 128, 129, 0.5) inset, 0 0.125em 0.5em rgba(29, 128, 129, 0.4);
  /*添加底部阴影*/
}
input[type=range]::-moz-range-progress {
  background: linear-gradient(to right, #059cfa, #ffffff 100%, #ffffff);
  height: 13px;
  border-radius: 10px;
}
input[type=range]::-ms-track {
  height: 25px;
  border-radius: 10px;
  box-shadow: 0 1px 1px #def3f8, inset 0 .125em .125em #0d1112;
  border-color: transparent;
  /*去除原有边框*/
  color: transparent;
  /*去除轨道内的竖线*/
}
input[type=range]::-ms-thumb {
  border: solid 0.125em rgba(205, 224, 230, 0.5);
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: -5px;
  box-shadow: 0 .125em .125em #3b4547;
}
input[type=range]::-ms-fill-lower {
  /*进度条已填充的部分*/
  height: 22px;
  border-radius: 10px;
  background: #000;
}
input[type=range]::-ms-fill-upper {
  /*进度条未填充的部分*/
  height: 22px;
  border-radius: 10px;
  background: #ffffff;
}
input[type=range]:focus::-ms-fill-lower {
  background: linear-gradient(to right, #059cfa, #ffffff 100%, #ffffff);
}
input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}
.f-300 {
  font-size: 300px;
}
.f-70 {
  font-size: 70px;
}
.f-60 {
  font-size: 60px;
}
.f-50 {
  font-size: 50px;
}
.f-48 {
  font-size: 48px;
}
.f-46 {
  font-size: 46px;
}
.f-44 {
  font-size: 44px;
}
.f-42 {
  font-size: 42px;
}
.f-40 {
  font-size: 40px;
}
.f-38 {
  font-size: 38px;
}
.f-36 {
  font-size: 36px;
}
.f-34 {
  font-size: 34px;
}
.f-32 {
  font-size: 32px;
}
.f-30 {
  font-size: 30px;
}
.f-28 {
  font-size: 28px;
}
.f-26 {
  font-size: 26px;
}
.f-24 {
  font-size: 24px;
}
.f-22 {
  font-size: 22px;
}
.f-20 {
  font-size: 20px;
}
.f-18 {
  font-size: 18px;
}
.f-16 {
  font-size: 16px;
}
.f-14 {
  font-size: 14px;
}
.f-12 {
  font-size: 12px;
}
.lh-100 {
  line-height: 1;
}
.lh-150 {
  line-height: 1.5;
}
.lh-120 {
  line-height: 1.2;
}
.lh-140 {
  line-height: 1.4;
}
.lh-160 {
  line-height: 1.6;
}
.lh-180 {
  line-height: 1.8;
}
.lh-200 {
  line-height: 2;
}
.f-light {
  font-weight: lighter;
}
.f-bold,
.font-bold {
  font-weight: bold;
}
.f-500 {
  font-weight: 500;
}
.f-left {
  text-align: left;
}
.f-center {
  text-align: center;
}
.f-right {
  text-align: right;
}
.up-word {
  text-transform: uppercase;
}
.v-show {
  visibility: visible;
}
.v-hide {
  visibility: hidden;
}
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
.back-cover {
  background-size: cover;
}
.back-contain {
  background-size: contain;
}
.half {
  width: 50%;
}
.wid-10 {
  width: 10%;
}
.wid-15 {
  width: 15%;
}
.wid-20 {
  width: 20%;
}
.wid-25 {
  width: 25%;
}
.wid-30 {
  width: 30%;
}
.wid-35 {
  width: 35%;
}
.wid-40 {
  width: 40%;
}
.wid-45 {
  width: 45%;
}
.wid-50 {
  width: 50%;
}
.wid-55 {
  width: 55%;
}
.wid-60 {
  width: 60%;
}
.wid-65 {
  width: 65%;
}
.wid-70 {
  width: 70%;
}
.wid-75 {
  width: 75%;
}
.wid-80 {
  width: 80%;
}
.wid-85 {
  width: 85%;
}
.wid-90 {
  width: 90%;
}
.wid-95 {
  width: 95%;
}
.wid-100 {
  width: 100%;
}
.op-0 {
  opacity: 0;
}
.op-1 {
  opacity: 0.1;
}
.op-2 {
  opacity: 0.2;
}
.op-3 {
  opacity: 0.3;
}
.op-4 {
  opacity: 0.4;
}
.op-5 {
  opacity: 0.5;
}
.op-6 {
  opacity: 0.6;
}
.op-7 {
  opacity: 0.7;
}
.op-8 {
  opacity: 0.8;
}
.op-9 {
  opacity: 0.9;
}
.op-10 {
  opacity: 1;
}
.mt0{margin-top: 0 !important;}
.layout-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.layout-v-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.layout-h-middle {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.pa-v {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.pa-h {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.pa-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.mt-1 {
  margin-top: 1px;
}
.mt-2 {
  margin-top: 2px;
}
.mt-3 {
  margin-top: 3px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-5 {
  margin-top: 5px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-7 {
  margin-top: 7px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-9 {
  margin-top: 9px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-22 {
  margin-top: 22px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-26 {
  margin-top: 26px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-34 {
  margin-top: 34px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-38 {
  margin-top: 38px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-42 {
  margin-top: 42px;
}
.mt-44 {
  margin-top: 44px;
}
.mt-46 {
  margin-top: 46px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-1 {
  margin-bottom: 1px;
}
.mb-3 {
  margin-bottom: 3px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-7 {
  margin-bottom: 7px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-9 {
  margin-bottom: 9px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-26 {
  margin-bottom: 26px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-34 {
  margin-bottom: 34px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-38 {
  margin-bottom: 38px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-42 {
  margin-bottom: 42px;
}
.mb-44 {
  margin-bottom: 44px;
}
.mb-46 {
  margin-bottom: 46px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.ml-1 {
  margin-left: 1px;
}
.ml-3 {
  margin-left: 3px;
}
.ml-4 {
  margin-left: 4px;
}
.ml-5 {
  margin-left: 5px;
}
.ml-6 {
  margin-left: 6px;
}
.ml-7 {
  margin-left: 7px;
}
.ml-8 {
  margin-left: 8px;
}
.ml-9 {
  margin-left: 9px;
}
.ml-10 {
  margin-left: 10px;
}
.ml-12 {
  margin-left: 12px;
}
.ml-14 {
  margin-left: 14px;
}
.ml-16 {
  margin-left: 16px;
}
.ml-18 {
  margin-left: 18px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-22 {
  margin-left: 22px;
}
.ml-24 {
  margin-left: 24px;
}
.ml-26 {
  margin-left: 26px;
}
.ml-28 {
  margin-left: 28px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-32 {
  margin-left: 32px;
}
.ml-34 {
  margin-left: 34px;
}
.ml-36 {
  margin-left: 36px;
}
.ml-38 {
  margin-left: 38px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-42 {
  margin-left: 42px;
}
.ml-44 {
  margin-left: 44px;
}
.ml-46 {
  margin-left: 46px;
}
.ml-48 {
  margin-left: 48px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-70 {
  margin-left: 70px;
}
.ml-80 {
  margin-left: 80px;
}
.ml-90 {
  margin-left: 90px;
}
.ml-100 {
  margin-left: 100px;
}
.mr-1 {
  margin-right: 1px;
}
.mr-3 {
  margin-right: 3px;
}
.mr-4 {
  margin-right: 4px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-6 {
  margin-right: 6px;
}
.mr-7 {
  margin-right: 7px;
}
.mr-8 {
  margin-right: 8px;
}
.mr-9 {
  margin-right: 9px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-12 {
  margin-right: 12px;
}
.mr-14 {
  margin-right: 14px;
}
.mr-16 {
  margin-right: 16px;
}
.mr-18 {
  margin-right: 18px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-22 {
  margin-right: 22px;
}
.mr-24 {
  margin-right: 24px;
}
.mr-26 {
  margin-right: 26px;
}
.mr-28 {
  margin-right: 28px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-32 {
  margin-right: 32px;
}
.mr-34 {
  margin-right: 34px;
}
.mr-36 {
  margin-right: 36px;
}
.mr-38 {
  margin-right: 38px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-42 {
  margin-right: 42px;
}
.mr-44 {
  margin-right: 44px;
}
.mr-46 {
  margin-right: 46px;
}
.mr-48 {
  margin-right: 48px;
}
.mr-50 {
  margin-right: 50px;
}
.mr-60 {
  margin-right: 60px;
}
.mr-70 {
  margin-right: 70px;
}
.mr-80 {
  margin-right: 80px;
}
.mr-90 {
  margin-right: 90px;
}
.mr-100 {
  margin-right: 100px;
}
.pt-1 {
  padding-top: 1px;
}
.pt-3 {
  padding-top: 3px;
}
.pt-4 {
  padding-top: 4px;
}
.pt-5 {
  padding-top: 5px;
}
.pt-6 {
  padding-top: 6px;
}
.pt-7 {
  padding-top: 7px;
}
.pt-8 {
  padding-top: 8px;
}
.pt-9 {
  padding-top: 9px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-12 {
  padding-top: 12px;
}
.pt-14 {
  padding-top: 14px;
}
.pt-16 {
  padding-top: 16px;
}
.pt-18 {
  padding-top: 18px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-22 {
  padding-top: 22px;
}
.pt-24 {
  padding-top: 24px;
}
.pt-26 {
  padding-top: 26px;
}
.pt-28 {
  padding-top: 28px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-32 {
  padding-top: 32px;
}
.pt-34 {
  padding-top: 34px;
}
.pt-36 {
  padding-top: 36px;
}
.pt-38 {
  padding-top: 38px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-42 {
  padding-top: 42px;
}
.pt-44 {
  padding-top: 44px;
}
.pt-46 {
  padding-top: 46px;
}
.pt-48 {
  padding-top: 48px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-1 {
  padding-bottom: 1px;
}
.pb-3 {
  padding-bottom: 3px;
}
.pb-4 {
  padding-bottom: 4px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-6 {
  padding-bottom: 6px;
}
.pb-7 {
  padding-bottom: 7px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pb-9 {
  padding-bottom: 9px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-12 {
  padding-bottom: 12px;
}
.pb-14 {
  padding-bottom: 14px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pb-18 {
  padding-bottom: 18px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-22 {
  padding-bottom: 22px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pb-26 {
  padding-bottom: 26px;
}
.pb-28 {
  padding-bottom: 28px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-32 {
  padding-bottom: 32px;
}
.pb-34 {
  padding-bottom: 34px;
}
.pb-36 {
  padding-bottom: 36px;
}
.pb-38 {
  padding-bottom: 38px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-42 {
  padding-bottom: 42px;
}
.pb-44 {
  padding-bottom: 44px;
}
.pb-46 {
  padding-bottom: 46px;
}
.pb-48 {
  padding-bottom: 48px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pl-1 {
  padding-left: 1px;
}
.pl-3 {
  padding-left: 3px;
}
.pl-4 {
  padding-left: 4px;
}
.pl-5 {
  padding-left: 5px;
}
.pl-6 {
  padding-left: 6px;
}
.pl-7 {
  padding-left: 7px;
}
.pl-8 {
  padding-left: 8px;
}
.pl-9 {
  padding-left: 9px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-12 {
  padding-left: 12px;
}
.pl-14 {
  padding-left: 14px;
}
.pl-16 {
  padding-left: 16px;
}
.pl-18 {
  padding-left: 18px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-22 {
  padding-left: 22px;
}
.pl-24 {
  padding-left: 24px;
}
.pl-26 {
  padding-left: 26px;
}
.pl-28 {
  padding-left: 28px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-32 {
  padding-left: 32px;
}
.pl-34 {
  padding-left: 34px;
}
.pl-36 {
  padding-left: 36px;
}
.pl-38 {
  padding-left: 38px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-42 {
  padding-left: 42px;
}
.pl-44 {
  padding-left: 44px;
}
.pl-46 {
  padding-left: 46px;
}
.pl-48 {
  padding-left: 48px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-60 {
  padding-left: 60px;
}
.pl-70 {
  padding-left: 70px;
}
.pl-80 {
  padding-left: 80px;
}
.pl-90 {
  padding-left: 90px;
}
.pl-100 {
  padding-left: 100px;
}
.pr-1 {
  padding-right: 1px;
}
.pr-3 {
  padding-right: 3px;
}
.pr-4 {
  padding-right: 4px;
}
.pr-5 {
  padding-right: 5px;
}
.pr-6 {
  padding-right: 6px;
}
.pr-7 {
  padding-right: 7px;
}
.pr-8 {
  padding-right: 8px;
}
.pr-9 {
  padding-right: 9px;
}
.pr-10 {
  padding-right: 10px;
}
.pr-12 {
  padding-right: 12px;
}
.pr-14 {
  padding-right: 14px;
}
.pr-16 {
  padding-right: 16px;
}
.pr-18 {
  padding-right: 18px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-22 {
  padding-right: 22px;
}
.pr-24 {
  padding-right: 24px;
}
.pr-26 {
  padding-right: 26px;
}
.pr-28 {
  padding-right: 28px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-32 {
  padding-right: 32px;
}
.pr-34 {
  padding-right: 34px;
}
.pr-36 {
  padding-right: 36px;
}
.pr-38 {
  padding-right: 38px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-42 {
  padding-right: 42px;
}
.pr-44 {
  padding-right: 44px;
}
.pr-46 {
  padding-right: 46px;
}
.pr-48 {
  padding-right: 48px;
}
.pr-50 {
  padding-right: 50px;
}
.pr-60 {
  padding-right: 60px;
}
.pr-70 {
  padding-right: 70px;
}
.pr-80 {
  padding-right: 80px;
}
.pr-90 {
  padding-right: 90px;
}
.pr-100 {
  padding-right: 100px;
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 80px;
  }
  .f-300 {
    font-size: 220px;
  }
  .f-70 {
    font-size: 64px;
  }
  .f-60 {
    font-size: 58px;
  }
  .f-50 {
    font-size: 42px;
  }
  .f-48 {
    font-size: 46px;
  }
  .f-46 {
    font-size: 44px;
  }
  .f-44 {
    font-size: 42px;
  }
  .f-42 {
    font-size: 40px;
  }
  .f-40 {
    font-size: 38px;
  }
  .f-38 {
    font-size: 36px;
  }
  .f-36 {
    font-size: 34px;
  }
  .f-34 {
    font-size: 32px;
  }
  .f-32 {
    font-size: 30px;
  }
  .f-30 {
    font-size: 28px;
  }
  .f-28 {
    font-size: 24px;
  }
  .f-26 {
    font-size: 24px;
  }
  .f-24 {
    font-size: 22px;
  }
  .f-22 {
    font-size: 20px;
  }
  .f-20 {
    font-size: 18px;
  }
  .f-18 {
    font-size: 16px;
  }
  .f-16 {
    font-size: 14px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 80px;
  }
  a,
  span,
  li,
  b,
  i,
  label,
  p,
  strong,
  div,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  small,
  em,
  li,
  pre,
  form,
  fieldset,
  legend,
  button,
  input,
  textarea,
  th,
  td {
    font-size: 14px;
  }
  .f-300 {
    font-size: 190px;
  }
  .f-70 {
    font-size: 62px;
  }
  .f-60 {
    font-size: 58px;
  }
  .f-50 {
    font-size: 48px;
  }
  .f-48 {
    font-size: 46px;
  }
  .f-46 {
    font-size: 44px;
  }
  .f-44 {
    font-size: 42px;
  }
  .f-42 {
    font-size: 40px;
  }
  .f-40 {
    font-size: 30px;
  }
  .f-38 {
    font-size: 32px;
  }
  .f-36 {
    font-size: 32px;
  }
  .f-34 {
    font-size: 32px;
  }
  .f-32 {
    font-size: 30px;
  }
  .f-30 {
    font-size: 28px;
  }
  .f-28 {
    font-size: 24px;
  }
  .f-26 {
    font-size: 24px;
  }
  .f-24 {
    font-size: 22px;
  }
  .f-22 {
    font-size: 20px;
  }
  .f-20 {
    font-size: 18px;
  }
  .f-18 {
    font-size: 16px;
  }
  .f-16 {
    font-size: 14px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 80px;
  }
  .f-300 {
    font-size: 160px;
  }
  .f-70 {
    font-size: 50px;
  }
  .f-60 {
    font-size: 40px;
  }
  .f-50 {
    font-size: 34px;
  }
  .f-48 {
    font-size: 32px;
  }
  .f-46 {
    font-size: 30px;
  }
  .f-44 {
    font-size: 28px;
  }
  .f-42 {
    font-size: 26px;
  }
  .f-40 {
    font-size: 24px;
  }
  .f-38 {
    font-size: 22px;
  }
  .f-36 {
    font-size: 20px;
  }
  .f-34 {
    font-size: 20px;
  }
  .f-32 {
    font-size: 18px;
  }
  .f-30 {
    font-size: 18px;
  }
  .f-28 {
    font-size: 16px;
  }
  .f-26 {
    font-size: 16px;
  }
  .f-24 {
    font-size: 16px;
  }
  .f-22 {
    font-size: 14px;
  }
  .f-20 {
    font-size: 14px;
  }
  .f-18 {
    font-size: 14px;
  }
  .f-16 {
    font-size: 12px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 50px;
  }
  p {
    font-size: 13px;
    line-height: 180%;
  }
  a,
  span,
  li,
  b,
  i,
  label,
  p,
  strong,
  div,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  small,
  em,
  li,
  pre,
  form,
  fieldset,
  legend,
  button,
  input,
  textarea,
  th,
  td {
    font-size: 12px;
  }
  .f-80 {
    font-size: 28px;
  }
  .f-72 {
    font-size: 26px;
  }
  .f-60 {
    font-size: 24px;
  }
  .f-50 {
    font-size: 24px;
  }
  .f-48 {
    font-size: 24px;
  }
  .f-46 {
    font-size: 22px;
  }
  .f-44 {
    font-size: 22px;
  }
  .f-42 {
    font-size: 20px;
  }
  .f-40 {
    font-size: 20px;
  }
  .f-38 {
    font-size: 18px;
  }
  .f-36 {
    font-size: 18px;
  }
  .f-34 {
    font-size: 18px;
  }
  .f-32 {
    font-size: 16px;
  }
  .f-30 {
    font-size: 16px;
  }
  .f-28 {
    font-size: 16px;
  }
  .f-26 {
    font-size: 16px;
  }
  .f-24 {
    font-size: 16px;
  }
  .f-22 {
    font-size: 16px;
  }
  .f-20 {
    font-size: 16px;
  }
  .f-18 {
    font-size: 13px;
  }
  .f-16 {
    font-size: 13px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }
  .mt-1 {
    margin-top: 1px;
  }
  .mt-3 {
    margin-top: 3px;
  }
  .mt-4 {
    margin-top: 4px;
  }
  .mt-5 {
    margin-top: 4px;
  }
  .mt-6 {
    margin-top: 4px;
  }
  .mt-7 {
    margin-top: 4px;
  }
  .mt-8 {
    margin-top: 4px;
  }
  .mt-9 {
    margin-top: 4px;
  }
  .mt-10 {
    margin-top: 6px;
  }
  .mt-12 {
    margin-top: 6px;
  }
  .mt-14 {
    margin-top: 6px;
  }
  .mt-16 {
    margin-top: 6px;
  }
  .mt-18 {
    margin-top: 6px;
  }
  .mt-20 {
    margin-top: 8px;
  }
  .mt-22 {
    margin-top: 8px;
  }
  .mt-24 {
    margin-top: 8px;
  }
  .mt-26 {
    margin-top: 8px;
  }
  .mt-28 {
    margin-top: 10px;
  }
  .mt-30 {
    margin-top: 10px;
  }
  .mt-32 {
    margin-top: 10px;
  }
  .mt-34 {
    margin-top: 10px;
  }
  .mt-36 {
    margin-top: 12px;
  }
  .mt-38 {
    margin-top: 12px;
  }
  .mt-40 {
    margin-top: 12px;
  }
  .mt-42 {
    margin-top: 14px;
  }
  .mt-44 {
    margin-top: 14px;
  }
  .mt-46 {
    margin-top: 16px;
  }
  .mt-48 {
    margin-top: 16px;
  }
  .mt-50 {
    margin-top: 18px;
  }
  .mt-60 {
    margin-top: 18px;
  }
  .mt-70 {
    margin-top: 20px;
  }
  .mt-80 {
    margin-top: 22px;
  }
  .mt-90 {
    margin-top: 26px;
  }
  .mt-100 {
    margin-top: 30px;
  }
  .mb-1 {
    margin-bottom: 1px;
  }
  .mb-3 {
    margin-bottom: 3px;
  }
  .mb-4 {
    margin-bottom: 4px;
  }
  .mb-5 {
    margin-bottom: 4px;
  }
  .mb-6 {
    margin-bottom: 4px;
  }
  .mb-7 {
    margin-bottom: 4px;
  }
  .mb-8 {
    margin-bottom: 4px;
  }
  .mb-9 {
    margin-bottom: 4px;
  }
  .mb-10 {
    margin-bottom: 6px;
  }
  .mb-12 {
    margin-bottom: 6px;
  }
  .mb-14 {
    margin-bottom: 6px;
  }
  .mb-16 {
    margin-bottom: 6px;
  }
  .mb-18 {
    margin-bottom: 6px;
  }
  .mb-20 {
    margin-bottom: 8px;
  }
  .mb-22 {
    margin-bottom: 8px;
  }
  .mb-24 {
    margin-bottom: 8px;
  }
  .mb-26 {
    margin-bottom: 8px;
  }
  .mb-28 {
    margin-bottom: 10px;
  }
  .mb-30 {
    margin-bottom: 10px;
  }
  .mb-32 {
    margin-bottom: 10px;
  }
  .mb-34 {
    margin-bottom: 10px;
  }
  .mb-36 {
    margin-bottom: 12px;
  }
  .mb-38 {
    margin-bottom: 12px;
  }
  .mb-40 {
    margin-bottom: 12px;
  }
  .mb-42 {
    margin-bottom: 14px;
  }
  .mb-44 {
    margin-bottom: 14px;
  }
  .mb-46 {
    margin-bottom: 16px;
  }
  .mb-48 {
    margin-bottom: 16px;
  }
  .mb-50 {
    margin-bottom: 18px;
  }
  .mb-60 {
    margin-bottom: 18px;
  }
  .mb-70 {
    margin-bottom: 20px;
  }
  .mb-80 {
    margin-bottom: 22px;
  }
  .mb-90 {
    margin-bottom: 26px;
  }
  .mb-100 {
    margin-bottom: 30px;
  }
  .ml-1 {
    margin-left: 1px;
  }
  .ml-3 {
    margin-left: 3px;
  }
  .ml-4 {
    margin-left: 4px;
  }
  .ml-5 {
    margin-left: 4px;
  }
  .ml-6 {
    margin-left: 4px;
  }
  .ml-7 {
    margin-left: 4px;
  }
  .ml-8 {
    margin-left: 4px;
  }
  .ml-9 {
    margin-left: 4px;
  }
  .ml-10 {
    margin-left: 6px;
  }
  .ml-12 {
    margin-left: 6px;
  }
  .ml-14 {
    margin-left: 6px;
  }
  .ml-16 {
    margin-left: 6px;
  }
  .ml-18 {
    margin-left: 6px;
  }
  .ml-20 {
    margin-left: 8px;
  }
  .ml-22 {
    margin-left: 8px;
  }
  .ml-24 {
    margin-left: 8px;
  }
  .ml-26 {
    margin-left: 8px;
  }
  .ml-28 {
    margin-left: 10px;
  }
  .ml-30 {
    margin-left: 10px;
  }
  .ml-32 {
    margin-left: 10px;
  }
  .ml-34 {
    margin-left: 10px;
  }
  .ml-36 {
    margin-left: 12px;
  }
  .ml-38 {
    margin-left: 12px;
  }
  .ml-40 {
    margin-left: 12px;
  }
  .ml-42 {
    margin-left: 14px;
  }
  .ml-44 {
    margin-left: 14px;
  }
  .ml-46 {
    margin-left: 16px;
  }
  .ml-48 {
    margin-left: 16px;
  }
  .ml-50 {
    margin-left: 18px;
  }
  .ml-60 {
    margin-left: 18px;
  }
  .ml-70 {
    margin-left: 20px;
  }
  .ml-80 {
    margin-left: 22px;
  }
  .ml-90 {
    margin-left: 26px;
  }
  .ml-100 {
    margin-left: 30px;
  }
  .mr-1 {
    margin-right: 1px;
  }
  .mr-3 {
    margin-right: 3px;
  }
  .mr-4 {
    margin-right: 4px;
  }
  .mr-5 {
    margin-right: 4px;
  }
  .mr-6 {
    margin-right: 4px;
  }
  .mr-7 {
    margin-right: 4px;
  }
  .mr-8 {
    margin-right: 4px;
  }
  .mr-9 {
    margin-right: 4px;
  }
  .mr-10 {
    margin-right: 6px;
  }
  .mr-12 {
    margin-right: 6px;
  }
  .mr-14 {
    margin-right: 6px;
  }
  .mr-16 {
    margin-right: 6px;
  }
  .mr-18 {
    margin-right: 6px;
  }
  .mr-20 {
    margin-right: 8px;
  }
  .mr-22 {
    margin-right: 8px;
  }
  .mr-24 {
    margin-right: 8px;
  }
  .mr-26 {
    margin-right: 8px;
  }
  .mr-28 {
    margin-right: 10px;
  }
  .mr-30 {
    margin-right: 10px;
  }
  .mr-32 {
    margin-right: 10px;
  }
  .mr-34 {
    margin-right: 10px;
  }
  .mr-36 {
    margin-right: 12px;
  }
  .mr-38 {
    margin-right: 12px;
  }
  .mr-40 {
    margin-right: 12px;
  }
  .mr-42 {
    margin-right: 14px;
  }
  .mr-44 {
    margin-right: 14px;
  }
  .mr-46 {
    margin-right: 16px;
  }
  .mr-48 {
    margin-right: 16px;
  }
  .mr-50 {
    margin-right: 18px;
  }
  .mr-60 {
    margin-right: 18px;
  }
  .mr-70 {
    margin-right: 20px;
  }
  .mr-80 {
    margin-right: 22px;
  }
  .mr-90 {
    margin-right: 26px;
  }
  .mr-100 {
    margin-right: 30px;
  }
  .pt-1 {
    padding-top: 1px;
  }
  .pt-3 {
    padding-top: 3px;
  }
  .pt-4 {
    padding-top: 4px;
  }
  .pt-5 {
    padding-top: 4px;
  }
  .pt-6 {
    padding-top: 4px;
  }
  .pt-7 {
    padding-top: 4px;
  }
  .pt-8 {
    padding-top: 4px;
  }
  .pt-9 {
    padding-top: 4px;
  }
  .pt-10 {
    padding-top: 6px;
  }
  .pt-12 {
    padding-top: 6px;
  }
  .pt-14 {
    padding-top: 6px;
  }
  .pt-16 {
    padding-top: 6px;
  }
  .pt-18 {
    padding-top: 6px;
  }
  .pt-20 {
    padding-top: 8px;
  }
  .pt-22 {
    padding-top: 8px;
  }
  .pt-24 {
    padding-top: 8px;
  }
  .pt-26 {
    padding-top: 8px;
  }
  .pt-28 {
    padding-top: 10px;
  }
  .pt-30 {
    padding-top: 10px;
  }
  .pt-32 {
    padding-top: 10px;
  }
  .pt-34 {
    padding-top: 10px;
  }
  .pt-36 {
    padding-top: 12px;
  }
  .pt-38 {
    padding-top: 12px;
  }
  .pt-40 {
    padding-top: 12px;
  }
  .pt-42 {
    padding-top: 14px;
  }
  .pt-44 {
    padding-top: 14px;
  }
  .pt-46 {
    padding-top: 16px;
  }
  .pt-48 {
    padding-top: 16px;
  }
  .pt-50 {
    padding-top: 18px;
  }
  .pt-60 {
    padding-top: 18px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pt-80 {
    padding-top: 22px;
  }
  .pt-90 {
    padding-top: 26px;
  }
  .pt-100 {
    padding-top: 30px;
  }
  .pb-1 {
    padding-bottom: 1px;
  }
  .pb-3 {
    padding-bottom: 3px;
  }
  .pb-4 {
    padding-bottom: 4px;
  }
  .pb-5 {
    padding-bottom: 4px;
  }
  .pb-6 {
    padding-bottom: 4px;
  }
  .pb-7 {
    padding-bottom: 4px;
  }
  .pb-8 {
    padding-bottom: 4px;
  }
  .pb-9 {
    padding-bottom: 4px;
  }
  .pb-10 {
    padding-bottom: 6px;
  }
  .pb-12 {
    padding-bottom: 6px;
  }
  .pb-14 {
    padding-bottom: 6px;
  }
  .pb-16 {
    padding-bottom: 6px;
  }
  .pb-18 {
    padding-bottom: 6px;
  }
  .pb-20 {
    padding-bottom: 8px;
  }
  .pb-22 {
    padding-bottom: 8px;
  }
  .pb-24 {
    padding-bottom: 8px;
  }
  .pb-26 {
    padding-bottom: 8px;
  }
  .pb-28 {
    padding-bottom: 10px;
  }
  .pb-30 {
    padding-bottom: 10px;
  }
  .pb-32 {
    padding-bottom: 10px;
  }
  .pb-34 {
    padding-bottom: 10px;
  }
  .pb-36 {
    padding-bottom: 12px;
  }
  .pb-38 {
    padding-bottom: 12px;
  }
  .pb-40 {
    padding-bottom: 12px;
  }
  .pb-42 {
    padding-bottom: 14px;
  }
  .pb-44 {
    padding-bottom: 14px;
  }
  .pb-46 {
    padding-bottom: 16px;
  }
  .pb-48 {
    padding-bottom: 16px;
  }
  .pb-50 {
    padding-bottom: 18px;
  }
  .pb-60 {
    padding-bottom: 18px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pb-80 {
    padding-bottom: 22px;
  }
  .pb-90 {
    padding-bottom: 26px;
  }
  .pb-100 {
    padding-bottom: 30px;
  }
  .pl-1 {
    padding-left: 1px;
  }
  .pl-3 {
    padding-left: 3px;
  }
  .pl-4 {
    padding-left: 4px;
  }
  .pl-5 {
    padding-left: 4px;
  }
  .pl-6 {
    padding-left: 4px;
  }
  .pl-7 {
    padding-left: 4px;
  }
  .pl-8 {
    padding-left: 4px;
  }
  .pl-9 {
    padding-left: 4px;
  }
  .pl-10 {
    padding-left: 6px;
  }
  .pl-12 {
    padding-left: 6px;
  }
  .pl-14 {
    padding-left: 6px;
  }
  .pl-16 {
    padding-left: 6px;
  }
  .pl-18 {
    padding-left: 6px;
  }
  .pl-20 {
    padding-left: 8px;
  }
  .pl-22 {
    padding-left: 8px;
  }
  .pl-24 {
    padding-left: 8px;
  }
  .pl-26 {
    padding-left: 8px;
  }
  .pl-28 {
    padding-left: 10px;
  }
  .pl-30 {
    padding-left: 10px;
  }
  .pl-32 {
    padding-left: 10px;
  }
  .pl-34 {
    padding-left: 10px;
  }
  .pl-36 {
    padding-left: 12px;
  }
  .pl-38 {
    padding-left: 12px;
  }
  .pl-40 {
    padding-left: 12px;
  }
  .pl-42 {
    padding-left: 14px;
  }
  .pl-44 {
    padding-left: 14px;
  }
  .pl-46 {
    padding-left: 16px;
  }
  .pl-48 {
    padding-left: 16px;
  }
  .pl-50 {
    padding-left: 18px;
  }
  .pl-60 {
    padding-left: 18px;
  }
  .pl-70 {
    padding-left: 20px;
  }
  .pl-80 {
    padding-left: 22px;
  }
  .pl-90 {
    padding-left: 26px;
  }
  .pl-100 {
    padding-left: 30px;
  }
  .pr-1 {
    padding-right: 1px;
  }
  .pr-3 {
    padding-right: 3px;
  }
  .pr-4 {
    padding-right: 4px;
  }
  .pr-5 {
    padding-right: 4px;
  }
  .pr-6 {
    padding-right: 4px;
  }
  .pr-7 {
    padding-right: 4px;
  }
  .pr-8 {
    padding-right: 4px;
  }
  .pr-9 {
    padding-right: 4px;
  }
  .pr-10 {
    padding-right: 6px;
  }
  .pr-12 {
    padding-right: 6px;
  }
  .pr-14 {
    padding-right: 6px;
  }
  .pr-16 {
    padding-right: 6px;
  }
  .pr-18 {
    padding-right: 6px;
  }
  .pr-20 {
    padding-right: 8px;
  }
  .pr-22 {
    padding-right: 8px;
  }
  .pr-24 {
    padding-right: 8px;
  }
  .pr-26 {
    padding-right: 8px;
  }
  .pr-28 {
    padding-right: 10px;
  }
  .pr-30 {
    padding-right: 10px;
  }
  .pr-32 {
    padding-right: 10px;
  }
  .pr-34 {
    padding-right: 10px;
  }
  .pr-36 {
    padding-right: 12px;
  }
  .pr-38 {
    padding-right: 12px;
  }
  .pr-40 {
    padding-right: 12px;
  }
  .pr-42 {
    padding-right: 14px;
  }
  .pr-44 {
    padding-right: 14px;
  }
  .pr-46 {
    padding-right: 16px;
  }
  .pr-48 {
    padding-right: 16px;
  }
  .pr-50 {
    padding-right: 18px;
  }
  .pr-60 {
    padding-right: 18px;
  }
  .pr-70 {
    padding-right: 20px;
  }
  .pr-80 {
    padding-right: 22px;
  }
  .pr-90 {
    padding-right: 26px;
  }
  .pr-100 {
    padding-right: 30px;
  }
}
/*animate补充动画*/
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}
@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}
@keyframes fadeOutRightSmall {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
}
.fadeOutRightSmall {
  animation-name: fadeOutRightSmall;
}
@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}
@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}
.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
.scaleIn {
  animation-name: scaleIn;
}
#ad-dialog {
  z-index: 10001;
}
#ad-dialog .dialog_content {
  width: 32%;
}
#ad-dialog .dialog_content .range {
  position: relative;
}
#ad-dialog .dialog_content .range:after {
  content: attr(data-note);
  position: absolute;
  left: 0;
  color: #aeaeae;
  padding-top: 6px;
  top: 100%;
}
#ad-dialog .input-text p {
  color: #c74444;
  text-align: left;
}
#ad-dialog h2 {
  color: #303234;
  font-size: 26px;
  font-weight: bold;
}
#ad-dialog h2 > small {
  font-size: 14px;
  color: #303234;
  display: block;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
}
#ad-dialog input[type=submit] {
  background-color: #e6e6e6;
  border: none;
  color: #aeaeae;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 3px;
  padding: 12px 0;
  pointer-events: none;
}
#ad-dialog input[type=submit].yan-ok {
  background-color: #0f218b;
  color: #fff;
  pointer-events: auto;
}
#ad-dialog input[type=submit] + span {
  display: inline-block;
  width: 100%;
  text-align: left;
  color: #c1c1c1;
}
#ad-dialog .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #c1c1c1;
  font-size: 22px;
}
#ad-dialog .get-ma {
  display: inline-block;
  background-color: #0f218b;
  color: #fff;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
#ad-dialog .more-ad {
  padding: 20px 0;
}
#ad-dialog .more-ad > li {
  position: relative;
  padding: 12px 0;
}
#ad-dialog .more-ad > li .pic {
  position: absolute;
  width: 46%;
  height: calc(100% - 24px);
  top: 12px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#ad-dialog .more-ad > li .txt {
  width: 54%;
  margin-left: 46%;
}
#ad-dialog .more-ad > li .txt h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}
#ad-dialog .more-ad > li .txt > a {
  text-align: left;
  width: 100%;
  display: inline-block;
  font-size: 12px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#ad-dialog .more-ad > li .txt > a > i {
  display: inline-block;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  margin-left: 8px;
  color: #0f218b;
}
#ad-dialog .more-ad > li .txt > a:hover {
  color: #0f218b;
}
/*基础结构*/
#loading {
  position: fixed;
  width: 100%;
  height: 200vh;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 100;
}
#loading.on {
  opacity: 0;
  animation: fadeOut 4s ease-in-out;
}
#loading #loader {
  height: 100vh;
  position: relative;
  width: 100%;
  background-color: #0F218B;
}
#loading #loader .logo-water {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #0F218B;
  width: 180px;
  height: 50px;
  z-index: 8;
  opacity: 1;
}
#loading #loader .logo-water.on {
  opacity: 0;
  pointer-events: none;
  animation: fadeOut 2s ease-in-out;
}
#loading #loader .logo-water.on + .load-medio .load-scr {
  opacity: 1;
  pointer-events: auto;
}
#loading #loader .logo-water > img {
  position: absolute;
  right: 22px;
  z-index: 2;
  height: 27px;
  top: 4px;
  opacity: 0;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
}
#loading #loader .logo-water > img.on {
  opacity: 1;
  right: -1500px;
  top: -3000px;
  height: 5000px;
  transform-origin: 50% 70%;
  animation: water-go 1.2s cubic-bezier(1, -0.01, 0.43, 0.68);
}
#loading #loader .logo-water .load-mask {
  width: 180px;
  height: 50px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 1;
  background: url(../fonts/ad0f3186644a497e813aa1a082622915.svg);
  -webkit-mask-size: 100% 100%;
  background-position-y: -24px;
  background-position-x: -700px;
  animation: load-mask-go 3.8s ease-in-out;
}
@keyframes load-mask-go {
  0% {
    background-position-y: 24px;
    background-position-x: 0px;
  }
  100% {
    background-position-y: -24px;
    background-position-x: -700px;
  }
}
@keyframes water-go {
  0% {
    height: 27px;
    right: 22px;
    top: 4px;
  }
  100% {
    right: -1500px;
    height: 5000px;
    top: -3000px;
  }
}
#loading #loader .load-medio {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  width: 100%;
  height: 100%;
}
#loading #loader .load-medio #water-medio {
  width: 100%;
  height: 100%;
  display: none;
}
#loading #loader .load-medio .Twater {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: url(../images/water.gif) center;
  background-size: cover;
}
#loading #loader .load-medio #load-txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
}
#loading #loader .load-medio #load-txt img{display: block; margin: 0 auto; width: 30%;}
#loading #loader .load-medio #load-txt .logoName {
  height: 120px;
  text-align: center;
  display: none;
}
#loading #loader .load-medio #load-txt .logoName > label {
  display: inline-block;
  text-transform: uppercase;
  overflow: hidden;
  height: 120px;
  line-height: 120px;
  color: #fff;
  font-size: 30px;
  width: 80px;
  text-align: center;
  cursor: auto;
}
#loading #loader .load-medio #load-txt .logoName:nth-of-type(1) > label:nth-child(2) {
  color: #46bad5;
}
#loading #loader .load-medio #load-txt .logoName:nth-of-type(2) > label {
  font-family: word_light;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
#loading #loader .load-medio #load-txt .logoName.on {
  display: block;
}
#loading #loader .load-medio .load-scr {
  display: inline-block;
  width: 50px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10vh;
  padding-top: 32px;
  opacity: 0;
  z-index: 4;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition-delay: 1.6s;
}
#loading #loader .load-medio .load-scr:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 28px;
  border-radius: 50px;
  left: 14px;
  background-color: transparent;
  border: 1.5px solid #fff;
  top: -4px;
}
#loading #loader .load-medio .load-scr:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 7px;
  left: 22px;
  top: 7px;
  background-color: #ffffff;
  border-radius: 50px;
  z-index: 5;
  -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
  animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}
#loading .shape-wrap {
  position: relative;
  z-index: 10;
  margin: -5px 0 0 0;
}
#loading .shape-wrap .shape {
  height: 100vh;
  width: 100%;
  display: block;
  fill: #0F218B;
}
svg:not(:root) {
  overflow: hidden;
}
#sound {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: -100px;
  left: -100px;
}
@media screen and (max-width: 600px) {
  #sound {
    display: none;
  }
}
#bloc {
  position: relative;
  min-height: 100%;
  z-index: 15;
  overflow: hidden;
  opacity: 1;
  transition: all 3s ease-out;
  -webkit-transition: all 3s ease-out;
  -moz-transition: all 3s ease-out;
  -o-transition: all 3s ease-out;
  -ms-transition: all 3s ease-out;
}
#bloc #menu {
  position: fixed;
  width: 100%;
  z-index: 103;
  height: 300vh;
  top: 0;
  left: 0;
  transform: translateY(100vh);
  -webkit-transform: translateY(100vh);
  -moz-transform: translateY(100vh);
  -o-transform: translateY(100vh);
  -ms-transform: translateY(100vh);
  pointer-events: none;
}
#bloc #menu .nav-inner {
  width: 100%;
  pointer-events: auto;
  height: 100vh;
  background-color: #fff;
  position: relative;
  text-align: center;
}
#bloc #menu .nav-inner .mask {
  pointer-events: none;
  z-index: 3;
  opacity: 0.1;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
#bloc #menu .nav-inner .con {
  position: relative;
  height: 100%;
  width: 60%;
  z-index: 4;
}
#bloc #menu .nav-inner .con .nav-items {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 72%;
  display: none;
  flex-direction: column;
  justify-content: center;
}
#bloc #menu .nav-inner .con .nav-items > li {
  text-align: left;
  position: relative;
  margin: 0.1rem 0;
}
#bloc #menu .nav-inner .con .nav-items > li > a {
  display: inline-block;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  height: 0.6rem;
  line-height: 0.6rem;
}
#bloc #menu .nav-inner .con .nav-items > li .nav-down {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
}
#bloc #menu .nav-inner .con .nav-items > li .nav-down > li > a {
  white-space: nowrap;
  padding-left: 0.8rem;
  height: 0.6rem;
  line-height: 0.6rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc #menu .nav-inner .con .nav-items > li .nav-down > li > a:hover {
  color: #0f218b;
}
#bloc #menu .nav-inner .con .nav-items > li:hover > a {
  color: #0f218b;
}
#bloc #menu .nav-inner .con .nav-items > li:hover .nav-down {
  display: block;
}
#bloc #menu .shape-wrap {
  position: relative;
  height: 103vh;
  z-index: 10;
}
#bloc #menu .shape-wrap .shape1 {
  transform: scale(-1);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -o-transform: scale(-1);
  -ms-transform: scale(-1);
  fill: #000000;
}
#bloc #menu .shape-wrap .shape2 {
  fill: #000000;
}
#bloc #menu.on .nav-inner .con .nav-items {
  display: flex;
}
#bloc header {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 105;
  background:#fff;
  border-bottom: 1px solid #eee;
  height: 4.688vw;
  line-height: 4.688VW;
}
#bloc header.on .max-wid .logo {
  color: #000;
}
#bloc header.on1 .max-wid .logo {
  color: #000;
}
#bloc header.on1 .max-wid nav.pc-nav #nav-box .log-in > i {
  color: #000;
}
#bloc header.on1 .max-wid nav.pc-nav #nav-box .log-in .log-box a {
  color: #000;
}
#bloc header.on1 .max-wid nav.pc-nav #nav-box .go-menu svg path {
  stroke: #000!important;
}
#bloc header .max-wid {
  position: relative;
  height: 100%;
  /* pc端导航 */
  /* 手机端菜单 */
}
#bloc header .max-wid .logo {
  left: 0;
  opacity: 1;
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
  position: absolute;
  height: 4.688vw;
  background:#0f218b
}
#bloc header .max-wid .logo img{height:100%; padding:20px}
#bloc header .max-wid .logo.app {
  opacity: 1;
  height: 18px;
}
#bloc header .max-wid #language {
  position: absolute;
  left: 0;
  top: 150%;
}
#bloc header .max-wid #language > span {
  width: 20px;
  opacity: 0.5;
  color: #fff;
  text-align: center;
  height: 34px;
  line-height: 34px;
}
#bloc header .max-wid #language > a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  line-height: 34px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0.5;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid #language > a.on,
#bloc header .max-wid #language > a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
}
#bloc header .max-wid nav.pc-nav #nav-box {
  position: absolute;
  height: 100%;
  right: 0;
  z-index: 11111;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in {
  color: #fff;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > small,
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > a {
  color: #fff;
  margin: 0 12px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > small > i,
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > a > i {
  vertical-align: sub;
  margin-left: 4px;
  font-size: 14px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > small.user,
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > a.user {
  cursor: pointer;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > small.user:hover .user-down,
#bloc header .max-wid nav.pc-nav #nav-box .log-in > span > a.user:hover .user-down {
  visibility: visible;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > i.vip {
  color: #ff7171;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > i.vvip {
  color: #0f218b;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in > i.svip {
  color: #dcc28c;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .log-box {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .log-box.on {
  opacity: 0;
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -o-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo {
  position: relative;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo > a {
  position: relative;
  z-index: 5;
  display: inline-block;
  color: #444;
  font-size: 20px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo > a.search-show {
  pointer-events: auto;
  transition: opacity 0.3s ease-out 0.3s, transform 0.6s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo > a.search-close {
  pointer-events: none;
  opacity: 0;
  top: 0;
  position: absolute;
  right: 4px;
  transition: opacity 0.3s ease-out 0.2s;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box {
  position: absolute;
  width: 50px;
  height: 4.688vw;
  line-height: 4.688vw;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  text-align: left;
  opacity: 0;
  padding-left: 18px;
  background-color: #151515;
  transition: opacity 0.3s ease-out, width 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box > a {
  pointer-events: auto;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box > input {
  border: none;
  pointer-events: none;
  background-color: transparent;
  width: calc(100% - 60px);
  color: #fff;
  display: inline-block;
  height: 80px;
  line-height: 80px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box {
  background-color: #151515;
  padding: 20px 40px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > h5 {
  color: #fff;
  display: block;
  margin-bottom: 10px;
  height: 38px;
  line-height: 38px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > div {
  height: 38px;
  line-height: 38px;
  padding-left: 18px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > div > a {
  height: 38px;
  line-height: 38px;
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > div > a:after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #0f218b;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > div > a:hover {
  opacity: 1;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo .search-box .line-box > div > a:hover:after {
  width: 20px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo.on > a.search-show {
  pointer-events: none;
  opacity: 0;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo.on > a.search-close {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo.on .search-box {
  pointer-events: auto;
  opacity: 1;
  width: 500px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .searchGo.on .search-box .line-box {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition-delay: 0.3s;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .music-set > span {
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 0;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .music-set.on > span {
  height: 100%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down {
  position: absolute;
  width: 160px;
  top: 100%;
  border-radius: 8px;
  padding-top: 24px;
  right: -10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.19);
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  top: 8px;
  right: 24px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down > li {
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  background-color: #fff;
  padding: 0 15%;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down > li:nth-of-type(1) {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down > li:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down > li > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #333;
  border-bottom: 1px solid #eee;
  width: 100%;
}
#bloc header .max-wid nav.pc-nav #nav-box .log-in .user-down > li:hover {
  background-color: #e5eaea;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu {
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
  margin-left: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg#bur {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg#bur path {
  stroke: #fff;
  stroke-dasharray: 768px 300px;
  stroke-dashoffset: 0%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg#bur path.l1 {
  transition-delay: 0s;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg#bur path.l2 {
  transition-delay: 0.04s;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg#bur path.l3 {
  transition-delay: 0.08s;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg.x {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu svg.x path {
  stroke: #fff;
  stroke-width: 5px;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu:hover svg#bur path {
  stroke-dashoffset: -150%;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu:not(.on) svg#bur {
  opacity: 1;
  transition-delay: 0.2s;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu:not(.on) svg#bur path {
  animation: menu 2s ease-in-out infinite;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu.on svg#bur {
  pointer-events: none;
  opacity: 0;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu.on svg#bur path {
  stroke-dasharray: 768px 1200px;
  stroke-dashoffset: -150%;
}
#bloc header .max-wid nav.pc-nav #nav-box .go-menu.on svg.x {
  transition-delay: 0.3s;
  opacity: 1;
  transform: scale(2.4);
  -webkit-transform: scale(2.4);
  -moz-transform: scale(2.4);
  -o-transform: scale(2.4);
  -ms-transform: scale(2.4);
}
#bloc header .max-wid .app-log {
  position: absolute;
  z-index: 10;
  right: 56px;
  top: 0;
  color: #fff;
  height: 50px;
  line-height: 50px;
}
#bloc header .max-wid .app-log > span > small,
#bloc header .max-wid .app-log > span > a {
  color: #fff;
  margin: 0 12px;
}
#bloc header .max-wid .app-log > span > small > i,
#bloc header .max-wid .app-log > span > a > i {
  vertical-align: sub;
  margin-left: 4px;
  font-size: 14px;
}
#bloc header .max-wid .app-log > span > small.user,
#bloc header .max-wid .app-log > span > a.user {
  cursor: pointer;
}
#bloc header .max-wid .app-log > span > small.user:hover .user-down,
#bloc header .max-wid .app-log > span > a.user:hover .user-down {
  visibility: visible;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid .app-log > i.vip {
  color: #ff7171;
}
#bloc header .max-wid .app-log > i.vvip {
  color: #0f218b;
}
#bloc header .max-wid .app-log > i.svip {
  color: #dcc28c;
}
#bloc header .max-wid .app-log .log-box {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid .app-log .log-box.on {
  opacity: 0;
  transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -o-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
}
#bloc header .max-wid .app-log .searchGo {
  position: relative;
}
#bloc header .max-wid .app-log .searchGo > a {
  position: relative;
  z-index: 5;
  display: inline-block;
}
#bloc header .max-wid .app-log .searchGo > a.search-show {
  pointer-events: auto;
  transition: opacity 0.3s ease-out 0.3s, transform 0.6s ease-out;
}
#bloc header .max-wid .app-log .searchGo > a.search-close {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  right: 4px;
  transition: opacity 0.3s ease-out 0.2s;
}
#bloc header .max-wid .app-log .searchGo .search-box {
  position: absolute;
  width: 300px;
  height: 92px;
  line-height: 92px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  text-align: left;
  opacity: 0;
  padding-left: 18px;
  pointer-events: none;
  background-color: #000;
  transition: opacity 0.3s ease-out, width 0.3s ease-out;
}
#bloc header .max-wid .app-log .searchGo .search-box > a {
  pointer-events: none;
}
#bloc header .max-wid .app-log .searchGo .search-box > input {
  border: none;
  background-color: transparent;
  width: calc(100% - 60px);
  color: #fff;
  display: inline-block;
  height: 80px;
  line-height: 80px;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box {
  background-color: #000;
  padding: 20px 40px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > h5 {
  color: #fff;
  display: block;
  margin-bottom: 10px;
  height: 38px;
  line-height: 38px;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > div {
  height: 38px;
  line-height: 38px;
  padding-left: 18px;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > div > a {
  height: 38px;
  line-height: 38px;
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > div > a:after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #0f218b;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > div > a:hover {
  opacity: 1;
}
#bloc header .max-wid .app-log .searchGo .search-box .line-box > div > a:hover:after {
  width: 20px;
}
#bloc header .max-wid .app-log .searchGo.on > a.search-show {
  pointer-events: none;
  opacity: 0;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}
#bloc header .max-wid .app-log .searchGo.on > a.search-close {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid .app-log .searchGo.on .search-box {
  pointer-events: auto;
  opacity: 1;
  width: 500px;
}
#bloc header .max-wid .app-log .searchGo.on .search-box .line-box {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition-delay: 0.3s;
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#bloc header .max-wid .app-log .music-set > span {
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 0;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid .app-log .music-set.on > span {
  height: 100%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
#bloc header .max-wid .app-log .user-down {
  position: absolute;
  width: 160px;
  top: 100%;
  border-radius: 8px;
  padding-top: 24px;
  right: -10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.19);
}
#bloc header .max-wid .app-log .user-down:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  top: 8px;
  right: 24px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
#bloc header .max-wid .app-log .user-down > li {
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  background-color: #fff;
  padding: 0 15%;
}
#bloc header .max-wid .app-log .user-down > li:nth-of-type(1) {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#bloc header .max-wid .app-log .user-down > li:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
#bloc header .max-wid .app-log .user-down > li > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #333;
  border-bottom: 1px solid #eee;
  width: 100%;
}
#bloc header .max-wid .app-log .user-down > li:hover {
  background-color: #e5eaea;
}
#bloc header .max-wid nav.app-nav {
  position: fixed;
  top: 0;
  right: 0;
  min-height: 50px;
  line-height: 50px;
  width: 100%;
  pointer-events: none;
}
#bloc header .max-wid nav.app-nav > ul {
  display: none;
  position: relative;
  top: 100%;
  right: 0;
  background: rgba(243, 243, 243, 0.48);
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: 50px;
  width: 100vw;
  max-height: calc(100vh - 50px);
  overflow: auto;
  pointer-events: auto;
}
#bloc header .max-wid nav.app-nav > ul > li {
  width: 90%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  line-height: 70px;
  margin: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}
#bloc header .max-wid nav.app-nav > ul > li > a {
  display: inline-block;
  width: 100%;
  color: #fff;
  height: 0.4rem;
  line-height: 0.4rem;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}
#bloc header .max-wid nav.app-nav > ul > li.child-Down > .child-nav {
  padding: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
}
#bloc header .max-wid nav.app-nav > ul > li.child-Down > .child-nav > li {
  width: 100%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  height: 0;
}
#bloc header .max-wid nav.app-nav > ul > li.child-Down > .child-nav > li > a {
  display: inline-block;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}
#bloc header .max-wid nav.app-nav > ul > li.child-Down > .child-nav.on > li {
  height: 40px;
}
#bloc header .max-wid nav.app-nav > ol {
  position: relative;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 70%;
  height: 100vh;
  margin-left: 30%;
  overflow: auto;
  padding: 60px 40px;
  pointer-events: none;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#bloc header .max-wid nav.app-nav > ol > li {
  width: 100%;
}
#bloc header .max-wid nav.app-nav > ol > li > a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}
#bloc header .max-wid nav.app-nav > ol > li > div {
  display: none;
}
#bloc header .max-wid nav.app-nav > ol > li > div > a {
  font-size: 14px;
  display: block;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
  height: 36px;
  line-height: 36px;
}
#bloc header .max-wid nav.app-nav > ol > li > div.on {
  display: block;
}
#bloc header .max-wid nav.app-nav > ol.on {
  pointer-events: auto;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
}
#bloc header .max-wid nav.app-nav .getAppNav {
  flex-direction: column;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  justify-content: space-between;
  margin-left: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  right: 7px;
  position: absolute;
  top: 5px;
}
#bloc header .max-wid nav.app-nav .getAppNav svg#bur {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#bloc header .max-wid nav.app-nav .getAppNav svg#bur path {
  stroke: #fff;
  stroke-dasharray: 768px 300px;
  stroke-dashoffset: 0%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.app-nav .getAppNav svg#bur path.l1 {
  transition-delay: 0s;
}
#bloc header .max-wid nav.app-nav .getAppNav svg#bur path.l2 {
  transition-delay: 0.04s;
}
#bloc header .max-wid nav.app-nav .getAppNav svg#bur path.l3 {
  transition-delay: 0.08s;
}
#bloc header .max-wid nav.app-nav .getAppNav svg.x {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc header .max-wid nav.app-nav .getAppNav svg.x path {
  stroke: #fff;
  stroke-width: 5px;
}
#bloc header .max-wid nav.app-nav .getAppNav.menuActive svg#bur {
  pointer-events: none;
}
#bloc header .max-wid nav.app-nav .getAppNav.menuActive svg#bur path {
  stroke-dasharray: 768px 1200px;
  stroke-dashoffset: -150%;
}
#bloc header .max-wid nav.app-nav .getAppNav.menuActive svg.x {
  transition-delay: 0.3s;
  opacity: 1;
  transform: scale(2.4);
  -webkit-transform: scale(2.4);
  -moz-transform: scale(2.4);
  -o-transform: scale(2.4);
  -ms-transform: scale(2.4);
}
#bloc .wrapper.on {
  pointer-events: none;
}
#bloc .wrapper #top {
  overflow: hidden;
}
#bloc .wrapper #top .banner {
  position: relative;
  margin-top: 4.688vw;
  padding-bottom: 100px;
  background: #f5f5f5;
}
#bloc .wrapper #top .banner > img {
  width: 100%;
  height: auto;
  animation: pulse 20s;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#bloc .wrapper #top .banner > img.go {
  animation: scale_go 3s cubic-bezier(0.34, 0.9, 1, 1);
}
#bloc .wrapper #top .banner > video {
  height: 450px;
}
#bloc .wrapper #top .banner .layout-tab {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
}
#bloc .wrapper #top .banner .layout-tab .cell {
  text-align: center;
}
#bloc .wrapper #top .banner .layout-tab .cell small {
  display: none;
  width: 100%;
  text-align: center;
  font-size: .34rem;
  color: #333;
  letter-spacing: 2px;
  opacity: 1;
  margin-bottom: 30px;
}
#bloc footer.foot {
  position: fixed;
  z-index: 101;
  width: 100%;
  height: 10vh;
  max-height: 110px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  #bloc footer.foot {
    position: relative;
    background-color: #000;
  }
}
#bloc footer.foot .fMain {
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 5;
}
#bloc footer.foot .fMain span {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.foot .fMain .foot-nav {
  color: #fff;
  font-size: 12px;
  position: relative;
}
#bloc footer.foot .fMain .foot-nav > a,
#bloc footer.foot .fMain .foot-nav > em {
  font-size: 12px;
  opacity: 0.5;
  color: #fff;
  margin: 0 0.1rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.foot .fMain .foot-nav > a.wx,
#bloc footer.foot .fMain .foot-nav > em.wx {
  font-size: 16px;
}
#bloc footer.foot .fMain .foot-nav > a.wx:hover + .wei-pop,
#bloc footer.foot .fMain .foot-nav > em.wx:hover + .wei-pop {
  visibility: visible;
  opacity: 1;
  bottom: 150%;
}
#bloc footer.foot .fMain .foot-nav > span.wei-pop {
  position: absolute;
  bottom: 200%;
  right: calc(-0.8rem + 30px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.foot .fMain .foot-nav > span.wei-pop > img {
  height: 1.4rem;
}
#bloc footer.foot .fMain .foot-nav > span.wei-pop:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: #fff transparent transparent transparent;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: auto;
}
#bloc footer.foot .node {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  height: 100%;
  top: 0;
  z-index: 2;
}
#bloc footer.foot .node .precess {
  position: absolute;
  top: -1px;
  height: 1px;
  opacity: 0;
  width: calc(100%/3);
  background-color: #fff;
  left: 0;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  display: none;
}
#bloc footer.foot .node .direction {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 40px;
  pointer-events: auto;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
#bloc footer.foot .node .direction.up {
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
}
#bloc footer.foot .node .direction > i {
  display: block;
  font-size: 12px;
  height: 8px;
  line-height: 8px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  opacity: 0.2;
}
#bloc footer.foot .node .direction > i:nth-of-type(1) {
  animation: fadeIn1 1.2s ease-in-out alternate infinite;
  animation-delay: 0s;
}
#bloc footer.foot .node .direction > i:nth-of-type(2) {
  animation: fadeIn1 1.2s ease-in-out alternate infinite;
  animation-delay: 0.3s;
}
#bloc footer.foot .node .direction > i:nth-of-type(3) {
  animation: fadeIn1 1.2s ease-in-out alternate infinite;
  animation-delay: 0.6s;
}
#bloc footer.foot .node.on {
  border-top: 1px solid rgba(255, 255, 255, 0);
}
#bloc footer.foot .node.on .precess {
  display: block;
}
#bloc footer.foot.on .fMain > span {
  color: #000;
}
#bloc footer.foot.on .node .precess {
  background-color: #000;
}
#bloc footer.foot.on .node .direction > i {
  color: #000;
}
#bloc footer.foot.on1 .fMain > span {
  color: #000;
}
#bloc footer.foot.on1 .fMain .foot-nav > a {
  color: #000000;
}
#bloc footer.foot.on1 .fMain .foot-nav > em {
  color: #000000;
}
#bloc footer.foot.on1 .node .precess {
  background-color: #000;
}
#bloc footer.foot.on1 .node .direction > i {
  color: #000;
}
#bloc footer.cl {
  background-color: #0f218b;
  position: relative;
  z-index: 100;
}
#bloc footer.cl .fMain {
  width: 90%;
  max-width: 1600px;
  padding: 80px 0 50px;
  margin: auto;
  height: 50px;
  overflow: visible;
  box-sizing: content-box;
  z-index: 10;
}
#bloc footer.cl .fMain .fl {
  font-size: 12px;
  color: #fff;
  height: 30px;
  line-height: 30px;
}
#bloc footer.cl .fMain .fr {
  position: relative;
  font-size: 12px;
  color: #fff;
  height: 30px;
  line-height: 30px;
}
#bloc footer.cl .fMain .fr > a {
  font-size: 12px;
  color: #fff;
  padding: 0 8px;
}
#bloc footer.cl .fMain .fr > a.weixin {
  font-size: 20px;
  vertical-align: middle;
}
#bloc footer.cl .fMain .fr > a.weixin:hover + .wei-pop {
  visibility: visible;
  opacity: 1;
  bottom: 150%;
}
#bloc footer.cl .fMain .fr .wei-pop {
  position: absolute;
  bottom: 200%;
  right: calc(-0.8rem + 18px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.cl .fMain .fr .wei-pop > img {
  height: 1.6rem;
}
#bloc footer.cl .fMain .fr .wei-pop:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: #fff transparent transparent transparent;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: auto;
}
#bloc footer.cl .toTop {
  position: absolute;
  color: #0f218b;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#bloc footer.cl .toTop > svg {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.cl .toTop > svg path {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#bloc footer.cl .toTop:hover > svg {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
}
#bloc footer.cl .toTop:hover > svg #svg-bg {
  fill: #0f218b;
}
#bloc footer.cl .toTop:hover > svg #svg-arrow {
  fill: #fff;
}
/*页面结构*/
#home .word {
  font-family: word;
}
#home .row {
  height: 100vh;
  background-color: #fff;
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
}
#home .row.on {
  z-index: 4;
  opacity: 1;
}
#home .row.navInPrev {
  pointer-events: none;
  opacity: 1;
  -webkit-animation: slideInHalfFromTop 0.7s forwards ease-in-out;
  animation: slideInHalfFromTop 0.7s forwards ease-in-out;
}
#home .row.navOutPrev {
  pointer-events: none;
  opacity: 1;
  -webkit-animation: slideOutBottom 0.7s forwards ease-in-out;
  animation: slideOutBottom 0.7s forwards ease-in-out;
}
#home .row.navInNext {
  pointer-events: none;
  opacity: 1;
  z-index: 100;
  -webkit-animation: slideInFromBottom 0.7s forwards ease-in-out;
  animation: slideInFromBottom 0.7s forwards ease-in-out;
}
#home .row.navOutNext {
  pointer-events: none;
  opacity: 1;
  -webkit-animation: slideOutHalfTop 0.7s forwards ease-in-out;
  animation: slideOutHalfTop 0.7s forwards ease-in-out;
}
#home #top {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  min-height: 610px;
}
#home #top .indexBanner {
  position: relative;
  width: 100%;
  height: 100%;
}
#home #top .indexBanner .banner-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
#home #top .indexBanner .banner-box .slide-wrapper {
  opacity: 0;
}
#home #top .indexBanner .banner-box canvas {
  position: absolute;
  z-index: 10;
}
#home #top .indexBanner .banner-box:after {
  content: "";
  z-index: 20;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
#home #top .indexBanner #clock {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 30;
  width: 27vw;
  height: 27vw;
}
#home #top .indexBanner #clock > img {
  height: 100%;
  position: absolute;
  z-index: 3;
}
#home #top .indexBanner #clock .time-box {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
#home #top .indexBanner #clock .time-box > ul {
  width: 0;
  position: absolute;
}
#home #top .indexBanner #clock .time-box > ul.time-num {
  transform: scale(1.2);
  bottom: 55%;
  left: 50%;
  height: 50%;
}
#home #top .indexBanner #clock .time-box > ul.time-num > li > i {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #top .indexBanner #clock .time-box > ul.time-num > li.on > i {
  opacity: 1;
}
#home #top .indexBanner #clock .time-box > ul > li {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
#home #top .indexBanner #clock .time-box > ul > li i {
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(1) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(1) i {
  transform: translateX(-50%) rotate(-180deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(2) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(2) i {
  transform: translateX(-50%) rotate(-240deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(3) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(3) i {
  transform: translateX(-50%) rotate(-300deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(4) {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(4) i {
  transform: translateX(-50%) rotate(-360deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(5) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(5) i {
  transform: translateX(-50%) rotate(-60deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(6) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
#home #top .indexBanner #clock .time-box > ul > li:nth-of-type(6) i {
  transform: translateX(-50%) rotate(-120deg);
}
#home #top .indexBanner #clock .time-box > ul.time-cir {
  transform: scale(1.02);
  bottom: 50.4%;
  left: 50%;
  height: 50%;
}
#home #top .indexBanner #clock .time-box > ul.time-cir > li > i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  line-height: 10px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  opacity: 0.8;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-box > ul.time-cir > li > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    line-height: 6px;
    text-align: center;
  }
}
#home #top .indexBanner #clock .time-box > ul.time-cir > li > i > span {
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  line-height: 10px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  left: -1px;
  top: -1px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  text-indent: -2px;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-box > ul.time-cir > li > i > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    line-height: 8px;
    text-align: center;
  }
}
#home #top .indexBanner #clock .time-box > ul.time-cir > li.on {
  pointer-events: none;
}
#home #top .indexBanner #clock .time-box > ul.time-cir > li.on > i {
  opacity: 1;
  pointer-events: none;
}
#home #top .indexBanner #clock .time-box > ul.time-cir > li.on > i > span {
  transform: scale(2.8);
  opacity: 1;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-box > ul.time-cir > li.on > i > span {
    transform: scale(2);
  }
}
#home #top .indexBanner #clock .time-box .time-el {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#home #top .indexBanner #clock .time-box .time-el .fen {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 12%;
  transform-origin: 50% 76%;
  height: 50%;
  width: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.59, 0, 0.42, 0.99);
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-box .time-el .fen {
    width: 4px;
  }
}
#home #top .indexBanner #clock .time-box .time-el .fen.on {
  animation-name: gorotate;
}
#home #top .indexBanner #clock .time-box .time-el .shi {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 45%;
  transform-origin: 50% 12.5%;
  height: 40%;
  width: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: all 1.6s ease-in-out;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-box .time-el .shi {
    width: 5px;
  }
}
#home #top .indexBanner #clock .time-box .time-el .shi.on {
  transition-duration: 1s;
}
#home #top .indexBanner #clock .time-move {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  transform: translateY(-2px);
}
@media screen and (min-width: 600px) {
  #home #top .indexBanner #clock .time-move canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner #clock .time-move canvas {
    width: 100%;
  }
}
#home #top .indexBanner .msg-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
#home #top .indexBanner .msg-box > ul {
  position: relative;
  height: 72%;
}
#home #top .indexBanner .msg-box > ul > li {
  height: 100%;
  width: 100%;
  position: relative;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(1) {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 600px) {
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li {
  display: none;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li h3,
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li h5 {
  animation-duration: 1.5s;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li.on {
  display: block;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) {
    bottom: 0;
    width: 100%;
    text-align: center;
    left: 0;
    position: absolute;
  }
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li h3,
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(2) > ol > li h5 {
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) {
    right: 0;
    position: absolute;
    bottom: 0;
  }
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li {
  display: none;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li a {
  animation-duration: 1.5s;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li a i {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  display: inline-block;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li a:hover {
  color: #ffffff;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li a:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  color: #ffffff;
}
#home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) > ol > li.on {
  display: block;
}
@media screen and (max-width: 600px) {
  #home #top .indexBanner .msg-box > ul > li > div:nth-of-type(3) {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  #home #main .flex {
    align-content: flex-start;
    position: relative;
    height: auto;
  }
}
#home #main .flex .con {
  height: 72%;
}
@media screen and (max-width: 600px) {
  #home #main .flex .con {
    height: 50%;
  }
}
#home #main .flex .con .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  #home #main .flex .con .box {
    width: 100%;
    padding-left: 60px;
  }
}
#home #main .flex .con .box div:nth-of-type(1) {
  align-self: flex-end;
  position: relative;
  padding-top: 36px;
}
#home #main .flex .con .box div:nth-of-type(1) > ul.items li {
  display: flex;
  align-items: flex-start;
  position: relative;
  color: #3d3d3d;
  margin: 10px 0;
}
#home #main .flex .con .box div:nth-of-type(1) > ul.items li > b {
  white-space: nowrap;
}
#home #main .flex .con .box div:nth-of-type(1) > ul.items li > span {
  color: #3d3d3d;
}
#home #main .flex .con .box div:nth-of-type(1):after {
  content: "";
  position: absolute;
  height: calc(100% - 36px);
  top: 36px;
  width: 50px;
  border-right: 1px solid #9e9e9e;
  left: -90px;
  background: url(../images/intro.png) left bottom no-repeat;
  background-size: 26px auto;
}
@media screen and (max-width: 600px) {
  #home #main .flex .con .box div:nth-of-type(2) {
    display: none;
  }
}
#home #main .other {
  position: absolute;
  width: 35%;
  height: 100%;
  right: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  #home #main .other {
    width: 100%;
    bottom: 0;
    top: auto;
    position: relative;
    margin-top: 38px;
    padding-bottom: 50px;
  }
}
#home #main .other .pic {
  position: relative;
  width: 100%;
  height: 100%;
}
#home #main .other .pic:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
#home #main .other .pic video {
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}
#home #main .other .pic video.on {
  opacity: 1;
  pointer-events: auto;
}
#home #main .other .pic .play {
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #main .other .pic .play a:nth-of-type(1) {
  display: block;
  margin: 20px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #main .other .pic .play a:nth-of-type(1):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: url(../images/rotate.png) center no-repeat;
  background-size: 100%;
  animation: gorotate 3s linear infinite;
}
#home #main .other .pic .play.on {
  opacity: 0;
}
#home #main .other .pic .play.on a:nth-of-type(1) {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
#home #btm {
  display: flex;
  justify-content: center;
  align-content: center;
}
#home #btm .box {
  position: relative;
  width: 50%;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
#home #btm .box .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 3;
}
#home #btm .box .photo:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
#home #btm .box .photo > img {
  height: 100%;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
#home #btm .box .msg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  width: 50vw;
  text-align: center;
  flex-direction: column;
  height: 25%;
  cursor: pointer;
}
#home #btm .box .msg h3 {
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
#home #btm .box .msg .img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  bottom: 0;
  opacity: 0.3;
}
#home #btm .box.app {
  width: 100%;
  height: 100%;
}
#home #btm .box.app #component .itemwrap > li:after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: rgba(0, 0, 0, 0.1); */
}
#home #btm .box.app #component .Tcon {
  height: 80%;
}
#home #btm .box.app #component .Tcon .txtChange > li {
  top: auto;
  text-align: left;
}
#home #btm .box.app #component .Tcon .pageChange {
  justify-content: flex-start;
  bottom: 120px;
}
#home #btm .box.app #component .Tcon .pageChange > li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  line-height: 10px;
  text-align: center;
  margin-left: 0;
  margin-right: 20px;
}
#home #btm .left {
  left: 0;
  cursor: pointer;
}
#home #btm .left .msg {
  left: 0;
  right: auto;
}
#home #btm .left:after {
  content: "";
  position: absolute;
  z-index: 8;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
#home #btm .left:hover ,#home #btm .right:hover{color: #0f218b !important;}
@media screen and (min-width: 600px) {
  #home #btm .left:hover {
    width: 52%;
  }
  #home #btm .left:hover:after {
    opacity: 1;
  }
  #home #btm .left:hover .photo:after {
    opacity: 0;
  }
  #home #btm .left:hover .photo > img {
    transform: translateX(-2%);
    -webkit-transform: translateX(-2%);
    -moz-transform: translateX(-2%);
    -o-transform: translateX(-2%);
    -ms-transform: translateX(-2%);
  }
  #home #btm .left:hover .msg h3 {
    opacity: 1;
  }
  #home #btm .left:hover .msg .img {
    opacity: 1;
  }
}
#home #btm .right {
  right: 0;
  cursor: pointer;
}
#home #btm .right .msg {
  right: 0;
  left: auto;
}
#home #btm .right:after {
  content: "";
  position: absolute;
  z-index: 8;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}
@media screen and (min-width: 600px) {
  #home #btm .right:hover {
    width: 52%;
  }
  #home #btm .right:hover:after {
    opacity: 1;
  }
  #home #btm .right:hover .photo:after {
    opacity: 0;
  }
  #home #btm .right:hover .photo > img {
    transform: translateX(-2%);
    -webkit-transform: translateX(-2%);
    -moz-transform: translateX(-2%);
    -o-transform: translateX(-2%);
    -ms-transform: translateX(-2%);
  }
  #home #btm .right:hover .msg h3 {
    opacity: 1;
  }
  #home #btm .right:hover .msg .img {
    opacity: 1;
  }
}
#home #pop {
  position: fixed;
  width: 100%;
  z-index: 100;
  height: 300vh;
  top: 0;
  left: 0;
  transform: translateY(100vh);
  -webkit-transform: translateY(100vh);
  -moz-transform: translateY(100vh);
  -o-transform: translateY(100vh);
  -ms-transform: translateY(100vh);
  pointer-events: none;
}
#home #pop .nav-inner {
  width: 100%;
  pointer-events: auto;
  height: 100vh;
  background-color: #ffffff;
  position: relative;
  text-align: center;
}
#home #pop .nav-inner .other-pop {
  height: 100vh;
  background-color: #fff;
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}
#home #pop .nav-inner .other-pop.on {
  opacity: 1;
  pointer-events: auto;
}
#home #pop .nav-inner .other-pop .con {
  height: calc(100% - 105px - 10vh);
  position: relative;
}
#home #pop .nav-inner .other-pop .con .mid {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/bg5.png) bottom center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 600px) {
  #home #pop .nav-inner .other-pop .con .mid {
    background: url(../images/bg6.png) bottom center no-repeat;
    background-size: 100%;
  }
}
#home #pop .nav-inner .other-pop .con .mid .items {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  #home #pop .nav-inner .other-pop .con .mid .items .box {
    position: absolute;
    margin: auto;
    width: 56%;
    height: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    filter: blur(1px);
    transition: all 0.8s ease-out;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg {
    text-align: left;
    display: none;
    max-width: 50%;
    min-width: 30%;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg .next {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    line-height: 0.6rem;
    text-align: center;
    display: inline-block;
    border: 1px solid #0f218b;
    font-size: 25px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg .next:hover {
    background-color: #0f218b;
    color: #fff;
    border-color: #0f218b;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.on .msg{color: #0f218b;}
  #home #pop .nav-inner .other-pop .con .mid .items .box .pic {
    width: 50%;
    background-size: auto 78%;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.on {
    z-index: 10;
    filter: blur(0px);
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.on .msg {
    display: inline-block;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b1 {
    left: 22%;
    bottom: 60px;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b2 {
    left: 52%;
    bottom: calc(60px + 25%);
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    z-index: 3;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b3 {
    left: 28%;
    bottom: 60%;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    z-index: 2;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b4 {
    left: 0%;
    bottom: 60%;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    z-index: 2;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b5 {
    left: -25%;
    bottom: calc(60px + 25%);
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    z-index: 1;
  }
}
@media screen and (max-width: 600px) {
  #home #pop .nav-inner .other-pop .con .mid .items .box {
    position: absolute;
    margin: auto;
    width: 78%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    transition: all 0.8s ease-out;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg {
    text-align: left;
    position: absolute;
    top: 101%;
    left: 0;
    display: none;
    width: 100%;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg .next {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    line-height: 0.6rem;
    text-align: center;
    border: 1px solid #0f218b;
    font-size: 25px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    display: none;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .msg .next:hover {
    background-color: #0f218b;
    color: #fff;
    border-color: #0f218b;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box .pic {
    width: 100%;
    background-size: auto 75%;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.on {
    z-index: 10;
    filter: blur(0px);
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.on .msg {
    display: inline-block;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b1 {
    left: 0%;
    bottom: 150px;
    z-index: 4;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b2 {
    left: 52%;
    bottom: calc(150px + 12%);
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    z-index: 3;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b3 {
    left: 32%;
    bottom: 60%;
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    z-index: 2;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b4 {
    left: -2%;
    bottom: 60%;
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    z-index: 2;
  }
  #home #pop .nav-inner .other-pop .con .mid .items .box.b5 {
    left: -30%;
    bottom: calc(150px + 22%);
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    z-index: 1;
  }
}
#home #pop .nav-inner .other-pop .con .left {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 10;
}
#home #pop .nav-inner .other-pop .con .left > a {
  background-color: #3d3d3d;
  height: 60px;
  line-height: 60px;
  width: 1.5rem;
  padding: 0 0.3rem;
  justify-content: space-around;
  box-shadow: 0 25px 30px -6px rgba(61, 61, 61, 0.2);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #pop .nav-inner .other-pop .con .left > a > i {
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
@media screen and (min-width: 600px) {
  #home #pop .nav-inner .other-pop .con .left > a:hover {
    transform: translateX(-5px);
  }
  #home #pop .nav-inner .other-pop .con .left > a:hover > i {
    transform: translateX(-8px);
  }
}
#home #pop .nav-inner .other-pop .con .right {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 10;
}
#home #pop .nav-inner .other-pop .con .right .go {
  display: inline-block;
  position: relative;
  padding-right: 60px;
  text-align: right;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#home #pop .nav-inner .other-pop .con .right .go > i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  height: 45px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
@media screen and (min-width: 600px) {
  #home #pop .nav-inner .other-pop .con .right .go:hover {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -o-transform: translateX(5px);
    -ms-transform: translateX(5px);
  }
  #home #pop .nav-inner .other-pop .con .right .go:hover > i {
    transform: translateX(8px);
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    -o-transform: translateX(8px);
    -ms-transform: translateX(8px);
  }
}
#home #pop .shape-wrap {
  position: relative;
  height: 103vh;
  z-index: 10;
}
#home #pop .shape-wrap .shape1 {
  transform: scale(-1);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -o-transform: scale(-1);
  -ms-transform: scale(-1);
  fill: #ffffff;
}
#home #pop .shape-wrap .shape2 {
  fill: #ffffff;
}
#home #pop.on {
  pointer-events: auto;
}
#product {
  width: 100vw;
  height: 100vh;
  position: fixed;
}
#product .word {
  font-family: word;
}
#product #top {
  height: 100%;
  justify-content: flex-start;
  z-index: 5;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
#product #top .con {
  height: 60%;
  pointer-events: auto;
}
#product #top .con .tab {
  position: relative;
  display: inline-block;
}
#product #top .con .tab .tab-down {
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  display: inline-block;
  background-color: #0f218b;
}
#product #top .con .tab .tab-down > i {
  display: inline-block;
}
#product #top .con .tab .tab-down.on > i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
#product #top .con .tab .child_1 {
  position: absolute;
  text-align: right;
  left: 100%;
  display: none;
  top: 0;
  background-color: #0f218b;
  padding: 0.4rem 0 0.4rem 0.4rem;
  animation-duration: 0.6s;
}
#product #top .con .tab .child_1 > img {
  margin-right: 0.4rem;
}
#product #top .con .tab .child_1 > li {
  white-space: nowrap;
  margin: 0.1rem 0;
  height: 0.5rem;
  line-height: 0.5rem;
  min-width: 2rem;
  text-align: left;
  padding-right: 0.4rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#product #top .con .tab .child_1 > li > a {
  display: inline-block;
  width: 100%;
  opacity: 0.6;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#product #top .con .tab .child_1 > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
}
#product #top .con .tab .child_1 > li > ol {
  position: absolute;
  display: none;
  min-height: 100%;
  left: 100%;
  top: 0;
  background-color: #ffffff;
  padding: 0.4rem;
}
#product #top .con .tab .child_1 > li > ol > img {
  margin-right: 0.4rem;
}
#product #top .con .tab .child_1 > li > ol > li {
  white-space: nowrap;
  margin: 0.1rem 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  height: 0.5rem;
  line-height: 0.5rem;
  min-width: 1.6rem;
  text-align: left;
}
#product #top .con .tab .child_1 > li > ol > li:last-of-type > a {
  border: none;
}
#product #top .con .tab .child_1 > li > ol > li > a {
  display: inline-block;
  width: 100%;
  opacity: 0.6;
  color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  height: 0.5rem;
  line-height: 0.5rem;
}
#product #top .con .tab .child_1 > li > ol > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background-color: #0f218b;
  opacity: 0;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
}
#product #top .con .tab .child_1 > li > ol > li > a:hover {
  opacity: 1;
  color: #0f218b;
}
#product #top .con .tab .child_1 > li > ol > li > a:hover:after {
  width: 100%;
  opacity: 1;
}
#product #top .con .tab .child_1 > li > ol.on {
  display: block;
}
@media screen and (min-width: 600px) {
  #product #top .con .tab .child_1 > li:hover > a {
    opacity: 1;
  }
  #product #top .con .tab .child_1 > li:hover > a:after {
    width: calc(100% + 0.4rem);
    opacity: 1;
  }
  #product #top .con .tab .child_1 > li:hover > ol {
    display: block;
  }
}
#product #main {
  pointer-events: none;
  position: relative;
  z-index: 3;
}
#product #main .con {
  pointer-events: auto;
  padding: 16vh 0;
  padding-bottom: 20vh;
}
#product #main .con .list {
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  align-items: center;
  padding: 0.3rem 0;
  position: relative;
}
#product #main .con .list .left {
  position: relative;
  width: 50%;
  z-index: 5;
  pointer-events: auto;
}
#product #main .con .list .left .pic {
  background-size: auto 85%;
  position: relative;
  z-index: 5;
}
#product #main .con .list .left .mask {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: 2;
}
#product #main .con .list .right {
  position: relative;
  z-index: 9;
  width: 33%;
  pointer-events: auto;
}
#product #main .con .list .right .msg {
  left: -12%;
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
#product #main .con .list .right .num {
  opacity: 0.06;
}
#product #main .con .list .other {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
  width: 150%;
  background-color: rgba(0, 0, 0, 0.06);
}
#product #btm {
  height: 72%;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: 5;
}
#product #btm .con {
  pointer-events: auto;
}
#new #main .r1 {
  background: #fff;
}
#new #main .r1 .layout-rowMain {
  position: relative;
  overflow: hidden;
}
#new #main .r1 .layout-rowMain .layout-mid {
  overflow: hidden;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box {
  float: left;
  width: calc(100%/3);
  padding: 1% 2%;
  margin-bottom: 30px;
}
#home #new #main .r1 .layout-rowMain .layout-mid .new-box{margin-bottom: 0;}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo {
  box-shadow: 0px 0px 0px #0f218b;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-lab {
  position: absolute;
  right: 12px;
  top: 10px;
  height: 32px;
  display: inline-block;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-lab > img {
  margin: 0 3px;
  height: 100%;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-mask {
  width: 100%;
  height: 100%;
  padding: 6%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(12px, 12px);
  -webkit-transform: translate(12px, 12px);
  -moz-transform: translate(12px, 12px);
  -o-transform: translate(12px, 12px);
  -ms-transform: translate(12px, 12px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-mask .new-more {
  left: 6%;
  bottom: 26px;
  padding-bottom: 10px;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-mask .new-more:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box .photo .new-add {
  position: absolute;
  right: -20px;
  bottom: -12px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  background-color: #0f218b;
  color: #fff;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box:hover .photo {
  box-shadow: -25px -15px 0px #0f218b;
}
#new #main .r1 .layout-rowMain .layout-mid .new-box:hover .photo .new-mask {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  visibility: visible;
  opacity: 1;
}
#new #main .r1 .title {
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 100%;
}
#new #main .r1 .title .layout-tabBox {
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#new #main .r1 .title .layout-tabBox > ul {
  width: 50%;
  margin: auto;
}
#new #main .r1 .title .layout-tabBox > ul > li {
  color: #666;
  font-size: .16rem;
  text-align: center;
  height: 1rem;
  line-height: 1rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
  text-indent: -10px;
}
#new #main .r1 .title .layout-tabBox > ul > li > i {
  color: #666;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new #main .r1 .title .layout-tabBox > ul > li.on:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: #0f218b;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new #main .r1 .title .layout-tabBox > ul > li.on,
#new #main .r1 .title .layout-tabBox > ul > li:hover {
  color: #0f218b;
}
#new #main .r1 .title .layout-tabBox > ul > li.on > i,
#new #main .r1 .title .layout-tabBox > ul > li:hover > i {
  color: #0f218b;
}
#new #main .r1 .title .layout-tabBox > ul > li.on:after,
#new #main .r1 .title .layout-tabBox > ul > li:hover:after {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#new_detail #main .r1 {
  background:#fff;
}
#new_detail #main .r1 .layout-rowMain {
  position: relative;
}
#new_detail #main .r1 .layout-rowMain .title {
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 100%;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox {
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul {
  width: 50%;
  margin: auto;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li {
  color: #666;
  font-size: .16rem;
  text-align: center;
  height: 1rem;
  line-height: 1rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
  text-indent: -10px;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li > i {
  color: #666;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: #0f218b;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on,
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover {
  color: #0f218b;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on > i,
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover > i {
  color: #0f218b;
}
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on:after,
#new_detail #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover:after {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list {
  padding-right: 16%;
  margin-bottom: 60px;
  padding-left: 26px;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list h4 {
  position: relative;
  color: #999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list h4:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 26px;
  background-color: #0f218b;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  transform: translateX(-26px);
  -webkit-transform: translateX(-26px);
  -moz-transform: translateX(-26px);
  -o-transform: translateX(-26px);
  -ms-transform: translateX(-26px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list p {
  color: #666;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list:hover h4 {
  color: #0F218B;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list:hover h4:after {
  visibility: visible;
  opacity: 1;
  transform: translateX(-15px);
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl .new-list:hover p {
  color: #0f218b;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(1) {
  border-right: 1px solid #ddd;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) {
  position: relative;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg {
  width: 88%;
  margin: auto;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-title {
  text-align: center;
  border-bottom: 1px solid #ddd;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con {
  padding-top: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con > img {
  width: 90%;
  margin: 40px auto;
  display: block;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con p {
  width: 90%;
  margin: auto;
  display: block;
  font-size: .18rem !important;
  color: #333;
  line-height: 1.8 !important;
  margin-bottom: 15px !important;
  font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif !important;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con p strong{font-size: .2rem !important;}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con span {
  width: 90%;
  margin: auto;
  display: block;
  font-size: .18rem !important;
  color: #333;
  line-height: 1.8 !important;
  margin-bottom: 15px !important;
  font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif !important;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-con p > .little {
  width: 30%;
  display: inline-block;
  margin: 40px 1.5%;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss {
  padding-bottom: 80px;
  position: relative;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave {
  padding: 10px 5% 30px 5%;
  border-bottom: 1px solid #484848;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 {
  min-height: 100px;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .Tpic {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .Tpic > img {
  margin-bottom: 12px;
  border-radius: 50%;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .Tpic em.vip {
  color: #ff7171;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .Tpic em.vvip {
  color: #0f218b;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .Tpic em.svip {
  color: #dcc28c;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-leave .layout-box2 .txt {
  padding-left: 16%;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .new-discuss .new-more {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 24px;
  width: 80px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .get-leave textarea {
  background-color: #313131;
  width: 100%;
  min-height: 160px;
  padding: 20px;
  border: none;
  color: #fff;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-msg .get-leave input[type=submit] {
  width: 100%;
  background-color: #000;
  border: none;
  height: 60px;
  color: #fff;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-page {
  text-align: center;
  margin-top: 50px;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-page a {
  color: #000;
  display: inline-block;
  font-size: 18px;
}
#new_detail #main .r1 .layout-rowMain .layout-mid .fl:nth-child(2) .new-page a > i {
  font-size: 18px;
}
#new_detail #main .r1 .layout-rowMain a.return {
  position: fixed;
  bottom: 10vh;
  right: 30px;
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
#new_detail #main .r1 .layout-rowMain a.return:hover {
  background-color: #0f218b;
}
#pro #main .r1 {
  background: url(../images/pro-bg.jpg) center no-repeat;
  background-size: cover;
}
#pro #main .r1 .layout-rowMain {
  position: relative;
}
#pro #main .r1 .layout-rowMain .title {
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 100%;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox {
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul {
  width: 80%;
  margin: auto;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li {
  color: #626262;
  font-size: 16px;
  width: calc(100%/3);
  text-align: center;
  height: 1rem;
  line-height: 1rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
  text-indent: -10px;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li > i {
  color: #626262;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: #0f218b;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on,
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover {
  color: #0f218b;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on > i,
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover > i {
  color: #0f218b;
}
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li.on:after,
#pro #main .r1 .layout-rowMain .title .layout-tabBox > ul > li:hover:after {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title h5 {
  z-index: 5;
  display: inline-block;
  height: 80px;
  line-height: 80px;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title h5 > em {
  position: absolute;
  z-index: -1;
  opacity: 0.2;
  font-size: 80px;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 90%;
  text-align: center;
  letter-spacing: 5px;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30%;
  flex-wrap: wrap;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  opacity: 0.5;
  margin: 0 50px 0 30px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  cursor: pointer;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  line-height: 12px;
  text-align: center;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li:hover,
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li.on {
  color: #0f218b;
  opacity: 1;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li:hover:after,
#pro #main .r1 .layout-rowMain .layout-mid .pro-title .pro-type > li.on:after {
  background-color: #0f218b;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box {
  width: 25%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 40px 0 45px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box .pro-pic {
  height: 180px;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box .pro-pic:after {
  opacity: 0;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box .pic-name {
  line-height: inherit;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box .pic-name > em {
  opacity: 0.5;
  color: #fff;
  display: block;
  height: 24px;
  line-height: 24px;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box .pro-add {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -27px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  color: #fff;
  background-color: #0f218b;
  font-size: 32px;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  -webkit-transform: translateY(16px);
  -moz-transform: translateY(16px);
  -o-transform: translateY(16px);
  -ms-transform: translateY(16px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box:hover .pic-name {
  color: #0f218b;
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box:hover .pro-add {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#pro #main .r1 .layout-rowMain .layout-mid .pro-box:hover .pro-pic > img {
  animation: beat 0.5s cubic-bezier(0.03, 0.39, 0.57, 0.95) infinite alternate;
}
.members .bold-txt {
  color: #717f7f;
  display: inline-block;
}
.members .bold-txt > b {
  color: #333;
  margin-right: 5px;
  text-transform: uppercase;
}
.members #main {
  position: relative;
  min-height: 1vh;
}
.members #main .layout-title {
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 100%;
}
.members #main .layout-title .layout-tabBox {
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.members #main .layout-title .layout-tabBox > ul {
  width: 84%;
  margin: auto;
}
.members #main .layout-title .layout-tabBox > ul > li {
  color: #fff;
  font-size: 16px;
  width: calc(100%/4);
  text-align: center;
  height: 80px;
  line-height: 80px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
  text-indent: -10px;
}
.members #main .layout-title .layout-tabBox > ul > li > i {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.members #main .layout-title .layout-tabBox > ul > li:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: #0f218b;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.members #main .layout-title .layout-tabBox > ul > li.on,
.members #main .layout-title .layout-tabBox > ul > li:hover {
  color: #0f218b;
}
.members #main .layout-title .layout-tabBox > ul > li.on > i,
.members #main .layout-title .layout-tabBox > ul > li:hover > i {
  color: #0f218b;
}
.members #main .layout-title .layout-tabBox > ul > li.on:after,
.members #main .layout-title .layout-tabBox > ul > li:hover:after {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
.members #main .layout-row .layout-rowMain {
  position: relative;
  z-index: 15;
  padding: 60px 0;
}
.members #main .layout-row .layout-rowMain .title h3 > small {
  opacity: 0.7;
  display: block;
}
#members-home .r1 .layout-rowMain .layout-top > span {
  color: #717f7f;
  display: inline-block;
}
#members-home .r1 .layout-rowMain .layout-top > span > b {
  color: #333;
  margin-right: 5px;
}
#members-home .r1 .layout-rowMain .layout-mid .sign .btn {
  height: 48px;
  line-height: 48px;
  background-color: #0f218b;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 16px;
  width: 200px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
#members-home .r1 .layout-rowMain .layout-mid .sign .btn > i {
  vertical-align: bottom;
}
#members-home .r1 .layout-rowMain .layout-mid .sign .btn > span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  background-color: #f0f5f5;
  color: #6f6f6f;
}
#members-home .r1 .layout-rowMain .layout-mid .sign .btn.on {
  pointer-events: none;
}
#members-home .r1 .layout-rowMain .layout-mid .sign .btn.on > span {
  opacity: 1;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date {
  position: relative;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-prev {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  background-color: #f0f5f5;
  color: #6f6f6f;
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 4%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-prev:hover {
  background-color: #0f218b;
  color: #fff;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-next {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  background-color: #f0f5f5;
  color: #6f6f6f;
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 4%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-next:hover {
  background-color: #0f218b;
  color: #fff;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item {
  width: 76%;
  margin: auto;
  overflow: hidden;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 5;
  transition: opacity 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out;
  opacity: 0;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li {
  float: left;
  display: inline-block;
  margin: 0 20px;
  height: 200px;
  width: 100px;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week {
  height: 50%;
  width: 100%;
  line-height: 68px;
  display: block;
  position: relative;
  text-align: center;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day > em,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week > em {
  opacity: 0;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.is > b,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.is > b {
  color: #0f218b;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.is > em,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.is > em {
  opacity: 0;
  color: #0f218b;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.is > em.on,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.is > em.on {
  opacity: 1;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.dai > em,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.dai > em {
  opacity: 1;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.dai > em.on,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.dai > em.on {
  opacity: 0;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day.on,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week.on {
  background-color: #f1f7f7;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day > b,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week > b {
  display: inline-block;
  text-align: center;
  width: 100%;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day > em,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week > em {
  position: absolute;
  display: inline-block;
  bottom: 0px;
  padding-bottom: 24px;
  box-sizing: content-box;
  width: 100%;
  height: 20px;
  line-height: 20px;
  text-align: center;
  left: 0;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day > em.sign-dot:after,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week > em.sign-dot:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  line-height: 9px;
  text-align: center;
  background-color: #eee;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .day > em.sign-dot.on:after,
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time > li .week > em.sign-dot.on:after {
  background-color: #0f218b;
}
#members-home .r1 .layout-rowMain .layout-mid #sign-date .sign-item .sign-time:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e5eaea;
  left: 0;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto;
}
#members-home .r2 {
  background-color: #e5eaea;
}
#members-home .r2 .layout-rowMain .layout-top > span {
  color: #717f7f;
  display: inline-block;
}
#members-home .r2 .layout-rowMain .layout-top > span > b {
  color: #333;
  margin-right: 5px;
}
#members-home .r2 .layout-rowMain .layout-mid {
  background-color: #f4fafa;
}
#members-home .r2 .layout-rowMain .layout-mid .level {
  background-color: #f4fafa;
  width: 76%;
  height: 24px;
  line-height: 24px;
  margin: 80px auto;
}
#members-home .r2 .layout-rowMain .layout-mid .level > span {
  height: 24px;
  line-height: 24px;
  vertical-align: top;
  display: inline-block;
  color: #333;
  font-weight: bold;
  float: left;
}
#members-home .r2 .layout-rowMain .layout-mid .level > span.cur-level {
  width: 80px;
}
#members-home .r2 .layout-rowMain .layout-mid .level > span.next-level {
  width: 80px;
  text-align: right;
}
#members-home .r2 .layout-rowMain .layout-mid .level > span.next-level > i {
  color: #0f218b;
}
#members-home .r2 .layout-rowMain .layout-mid .level .level-range {
  display: inline-block;
  width: calc(100% - 160px);
  border-radius: 50px;
  background-color: #d7dfdf;
  position: relative;
}
#members-home .r2 .layout-rowMain .layout-mid .level .level-range > b {
  position: absolute;
  width: 80%;
  display: inline-block;
  float: left;
  height: 100%;
  border-radius: 50px;
  background: url(../images/range.png) center no-repeat;
  background-size: 100% 100%;
}
#members-home .r2 .layout-rowMain .layout-mid .level .level-range:before {
  content: attr(data-cur);
  position: absolute;
  top: 110%;
  font-size: 12px;
  left: 0;
  color: #333;
}
#members-home .r2 .layout-rowMain .layout-mid .level .level-range:after {
  content: attr(data-next);
  position: absolute;
  top: 110%;
  font-size: 12px;
  right: 0;
  color: #333;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power {
  background-color: #fff;
  padding: 80px 0;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .power-title {
  text-align: center;
  margin-bottom: 80px;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .power-title > span {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .power-title > span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #6f6f6f;
  left: 120%;
  top: 0;
  bottom: 0;
  margin: auto;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .power-title > span:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #6f6f6f;
  right: 120%;
  top: 0;
  bottom: 0;
  margin: auto;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item {
  width: 76%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li {
  text-align: center;
  width: 25%;
  padding: 0 20px;
  float: left;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li .power-icon {
  text-align: center;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li .power-icon > i {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  line-height: 0.9rem;
  background-color: #ddf9f9;
  text-align: center;
  color: #0f218b;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: auto;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li .power-icon > small {
  display: block;
  height: 36px;
  line-height: 36px;
  position: relative;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li .power-icon > small:after {
  content: attr(data-num);
  position: absolute;
  width: 100%;
  bottom: -60px;
  color: #e5eaea;
  left: 0;
  font-size: 28px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li p {
  color: #464646;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li p > small {
  color: #ababab;
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li:hover small:after {
  bottom: -50px;
  opacity: 0;
}
#members-home .r2 .layout-rowMain .layout-mid #my-power .powe-item > li:hover p {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#members-power .r1 .layout-mid .powe-item {
  width: 76%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#members-power .r1 .layout-mid .powe-item > li {
  text-align: center;
  width: 25%;
  padding: 0 20px;
  float: left;
}
#members-power .r1 .layout-mid .powe-item > li .power-icon {
  text-align: center;
}
#members-power .r1 .layout-mid .powe-item > li .power-icon > i {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  line-height: 0.9rem;
  background-color: #ddf9f9;
  text-align: center;
  color: #0f218b;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: auto;
}
#members-power .r1 .layout-mid .powe-item > li .power-icon > small {
  display: block;
  height: 36px;
  line-height: 36px;
  position: relative;
}
#members-power .r1 .layout-mid .powe-item > li:hover small:after {
  bottom: -50px;
  opacity: 0;
}
#members-power .r1 .layout-mid .power-title {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 80px;
}
#members-power .r1 .layout-mid .power-title > span {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
#members-power .r1 .layout-mid .power-title > span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #6f6f6f;
  left: 120%;
  top: 0;
  bottom: 0;
  margin: auto;
}
#members-power .r1 .layout-mid .power-title > span:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #6f6f6f;
  right: 120%;
  top: 0;
  bottom: 0;
  margin: auto;
}
#members-power .r1 .layout-mid .dep-item {
  max-width: 1198px;
  width: 100%;
  margin: auto;
  height: 200px;
  position: relative;
  background: url(../images/ke.png) center no-repeat;
}
#members-power .r1 .layout-mid .dep-item > li {
  height: 100px;
  width: calc(100%/7);
  float: left;
  text-align: center;
  position: relative;
  box-sizing: content-box;
}
#members-power .r1 .layout-mid .dep-item > li > small {
  color: #b7c2c2;
}
#members-power .r1 .layout-mid .dep-item > li:nth-of-type(2n+1) {
  padding-top: 140px;
}
#members-power .r1 .layout-mid .dep-item .ke {
  position: absolute;
  width: 1024px;
  left: -18px;
  right: 0;
  top: 42px;
  bottom: 0;
  margin: auto;
  height: 2px;
  background-color: #eee;
}
#members-power .r1 .layout-mid .dep-item .ke > b {
  position: absolute;
  height: 100%;
  background-color: #0f218b;
  top: 0;
  left: 0;
}
#members-power .r1 .layout-mid .dep-item .ke > b > i {
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  right: -16px;
  top: -16px;
  background-color: #0f218b;
}
#members-power .r2 {
  background-color: #2e2f2f;
}
#members-power .r2 .layout-mid .powe-item {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#members-power .r2 .layout-mid .powe-item > li {
  text-align: center;
  width: 25%;
  padding: 60px 32px 30px 32px;
  float: left;
  background-color: #fff;
}
#members-power .r2 .layout-mid .powe-item > li .power-icon {
  text-align: center;
}
#members-power .r2 .layout-mid .powe-item > li .power-icon > i {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  line-height: 0.9rem;
  background-color: #0f218b;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: auto;
}
#members-power .r2 .layout-mid .powe-item > li .power-icon > small {
  display: block;
  height: 36px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
}
#members-power .r2 .layout-mid .powe-item > li .power-icon > small:after {
  content: attr(data-num);
  position: absolute;
  width: 100%;
  top: 118%;
  font-weight: bold;
  color: #333;
  left: 0;
  font-size: 12px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  line-height: 20px;
}
#members-power .r2 .layout-mid .powe-item > li p {
  color: #6a6a6a;
  margin: auto;
  margin-top: 50px;
  opacity: 1;
  font-size: 12px;
  line-height: 200%;
  text-align: center;
  min-height: 100px;
  max-width: 240px;
}
#members-power .r3 {
  background: url(../images/power-bg.png) center no-repeat;
  background-size: cover;
}
#members-power .r3 .layout-mid {
  padding: 60px 0;
}
#members-power .r4 {
  background-color: #e5eaea;
}
#members-power .r4 .layout-mid .col1 {
  background: url(../images/vip.png) right center no-repeat #f7fbfb;
  overflow: hidden;
  padding: 60px 8%;
}
#members-power .r4 .layout-mid .col1 p {
  line-height: 200%;
}
#members-power .r4 .layout-mid .col2 {
  background-color: #fff;
}
#members-power .r4 .layout-mid .col2 .rule-list {
  padding: 60px 16%;
  border-bottom: 1px solid #eee;
}
#members-power .r4 .layout-mid .col2 .rule-list ul > li {
  position: relative;
  padding: 8px 0;
}
#members-power .r4 .layout-mid .col2 .rule-list ul > li > b {
  color: #cfd7d7;
  font-size: 24px;
  position: absolute;
  top: 4px;
  left: 20px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-power .r4 .layout-mid .col2 .rule-list ul > li > span {
  padding-left: 120px;
  display: inline-block;
  color: #888888;
  line-height: 200%;
  margin-bottom: 24px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-power .r4 .layout-mid .col2 .rule-list ul > li:hover > b {
  color: #8b9292;
}
#members-power .r4 .layout-mid .col2 .rule-list ul > li:hover > span {
  color: #0f218b;
}
#members-msg,
#members-adr {
  position: relative;
  z-index: 100;
}
#members-msg .r1,
#members-adr .r1 {
  background-color: #e5eaea;
}
#members-msg .r1 .layout-mid,
#members-adr .r1 .layout-mid {
  background-color: #fff;
  padding: 60px 0;
  overflow: visible;
}
#members-msg .r1 .layout-mid form .layout-inputRow,
#members-adr .r1 .layout-mid form .layout-inputRow {
  width: 70%;
  margin: 58px auto;
}
#members-msg .r1 .layout-mid form .layout-inputRow [type=submit],
#members-adr .r1 .layout-mid form .layout-inputRow [type=submit] {
  height: 48px;
  line-height: 48px;
  background-color: #0f218b;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 16px;
  width: 240px;
}
#members-msg .r1 .layout-mid form .layout-inputRow .title,
#members-adr .r1 .layout-mid form .layout-inputRow .title {
  font-size: inherit;
}
#members-msg .r1 .layout-mid form .layout-inputRow .title span,
#members-adr .r1 .layout-mid form .layout-inputRow .title span {
  font-size: 16px;
}
#members-msg .r1 .layout-mid form .layout-inputRow .city-picker-span,
#members-adr .r1 .layout-mid form .layout-inputRow .city-picker-span {
  width: 100% !important;
}
#members-download .r1 {
  background-color: #e5eaea;
}
#members-download .r1 .layout-mid {
  padding: 0 0 60px 0;
}
#members-download .r1 .layout-mid .down-type {
  text-align: right;
  margin-bottom: 60px;
}
#members-download .r1 .layout-mid .down-type .layout-inputRow {
  text-align: left;
  display: inline-block;
  width: 2rem;
}
#members-download .r1 .layout-mid .down-type .layout-inputRow input {
  background-color: transparent;
  border-color: #b5b5b5;
}
#members-download .r1 .layout-mid .down-type .layout-inputRow > i {
  position: absolute;
  color: #717f7f;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#members-download .r1 .layout-mid .down-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#members-download .r1 .layout-mid .down-item .down-box {
  width: 46%;
  padding: 0.2rem;
  background-color: #fff;
  margin: 28px 0;
}
#members-download .r1 .layout-mid .down-item .down-box .down-pic {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#members-download .r1 .layout-mid .down-item .down-box .down-pic:hover .look {
  opacity: 1;
}
#members-download .r1 .layout-mid .down-item .down-box .down-pic > img {
  width: 2.2rem;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-download .r1 .layout-mid .down-item .down-box .down-pic > img.go {
  animation: scale_go 3s cubic-bezier(0.34, 0.9, 1, 1);
  opacity: 1;
}
#members-download .r1 .layout-mid .down-item .down-box .down-pic .look {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  line-height: 120px;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  background-color: rgba(77, 193, 193, 0.9);
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt {
  width: calc(100% - 2.8rem);
  left: 2.6rem;
  height: 74%;
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt > small {
  color: #717f7f;
  display: block;
  height: 32px;
  line-height: 32px;
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt .down-apply {
  position: absolute;
  right: 0;
  bottom: 0;
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt .down-apply > a {
  display: inline-block;
  color: #717f7f;
  margin-left: 12px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt .down-apply > a > i {
  color: inherit;
  vertical-align: middle;
  margin-right: 6px;
}
#members-download .r1 .layout-mid .down-item .down-box .down-txt .down-apply > a:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  color: #333;
}
#members-core .r1 {
  background-color: #e5eaea;
}
#members-core .r1 .layout-mid {
  padding: 0 0 60px 0;
  background-color: #fff;
}
#members-core .r1 .layout-mid .my-score {
  background-color: #f4f8f8;
  padding: 60px 10%;
}
#members-core .r1 .layout-mid .my-score .bold-txt {
  color: #0f218b;
  font-weight: bold;
}
#members-core .r1 .layout-mid .my-score .go-score {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 0.42rem;
  line-height: 0.42rem;
  text-align: center;
  color: #6b7171;
  width: 1.6rem;
  right: 10%;
  border: 1px solid #d9e0e0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-core .r1 .layout-mid .my-score .go-score:hover {
  background-color: #e2e8e8;
}
#members-core .r1 .layout-mid .score-item {
  width: 80%;
  margin: auto;
}
#members-core .r1 .layout-mid .score-item > li {
  overflow: hidden;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
#members-core .r1 .layout-mid .score-item > li > span {
  display: inline-block;
  float: left;
  font-size: 16px;
  font-weight: bold;
}
#members-core .r1 .layout-mid .score-item > li > span:nth-child(2) {
  color: #b0b9b9;
}
#members-buy .r1 {
  background-color: #fff;
  padding: 60px 0;
}
#members-buy .r1 .layout-top {
  padding-bottom: 24px;
  text-align: center;
}
#members-buy .r1 .layout-top > small {
  display: inline-block;
  color: #717f7f;
}
#members-buy .r1 .layout-top:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #0f218b;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition-delay: 0.5s;
}
#members-buy .r1 .layout-top.go:after {
  width: 24px;
}
#members-buy .r1 .layout-mid {
  text-align: center;
}
#members-buy .r1 .layout-mid .my-score {
  font-size: 1.6rem;
  color: #e5eaea;
  text-align: center;
}
#members-buy .r1 .layout-mid .my-score:after {
  content: attr(data-note);
  position: absolute;
  font-size: 14px;
  color: #000;
  width: 100%;
  text-align: center;
  top: 58%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0;
  font-weight: bold;
}
#members-buy .r1 .layout-mid .go-score {
  display: inline-block;
  height: 0.42rem;
  line-height: 0.42rem;
  text-align: center;
  color: #6b7171;
  width: 1.6rem;
  right: 10%;
  border: 1px solid #d9e0e0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#members-buy .r1 .layout-mid .go-score:hover {
  background-color: #e2e8e8;
}
#members-buy .r2 {
  overflow: hidden;
}
#members-buy .r2 .fl,
#members-buy .r2 .fr {
  width: 50%;
  background-color: #f6f7f7;
  padding: 1rem 0 0.6rem 0;
  position: relative;
}
#members-buy .r2 .fl .pro-pic,
#members-buy .r2 .fr .pro-pic {
  height: 2.4rem;
}
#members-buy .r2 .fl .pro-pic:after,
#members-buy .r2 .fr .pro-pic:after {
  opacity: 0;
}
#members-buy .r2 .fl .pic-name,
#members-buy .r2 .fr .pic-name {
  color: #333;
}
#members-buy .r2 .fl .pro-score,
#members-buy .r2 .fr .pro-score {
  position: absolute;
  left: 10%;
  top: 10%;
  z-index: 30;
}
#members-buy .r2 .fl .pro-score:after,
#members-buy .r2 .fr .pro-score:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  background-color: #333;
  left: 0;
  top: -12px;
}
#members-buy .r3 #component .Tcon {
  height: 80%;
}
#members-buy .r3 #component .txtChange > li {
  height: 100%;
}
#members-buy .r3 #component .pageChange span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  line-height: 12px;
  text-align: center;
  display: inline-block;
  background-color: #fff;
}
#members-buy .r4 {
  padding: 60px 0;
  background-color: #e5eaea;
}
#members-buy .r4 .layout-top {
  padding-bottom: 24px;
  text-align: center;
}
#members-buy .r4 .layout-top > small {
  display: inline-block;
  color: #717f7f;
}
#members-buy .r4 .layout-top:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #0f218b;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition-delay: 0.5s;
}
#members-buy .r4 .layout-top.go:after {
  width: 24px;
}
#members-buy .r4 .layout-mid .buy-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
}
#members-buy .r4 .layout-mid .buy-item > li {
  position: relative;
  float: left;
  background-color: #fff;
  width: 3.5rem;
  padding: 32px;
  margin: 0.32rem 0;
}
#members-buy .r4 .layout-mid .buy-item > li .buy-list .buy-msg {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition-delay: 0.4s;
}
#members-buy .r4 .layout-mid .buy-item > li .buy-list .buy-pic {
  height: 3rem;
}
#members-buy .r4 .layout-mid .buy-item > li:hover .buy-list .buy-msg {
  opacity: 0;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transition-delay: 0s;
}
#members-buy .r4 .layout-mid .buy-item > li:hover .buy-mask {
  opacity: 1;
  transition-delay: 0s;
}
#members-buy .r4 .layout-mid .buy-item > li:hover .buy-mask .buy-msg {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#members-buy .r4 .layout-mid .buy-item > li:hover .buy-mask .go-buy {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#members-buy .r4 .layout-mid .buy-item > li .buy-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
#members-buy .r4 .layout-mid .buy-item > li .buy-mask .buy-msg {
  opacity: 0;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transition: all 0.5s ease-in-out 0.2s;
}
#members-buy .r4 .layout-mid .buy-item > li .buy-mask .go-buy {
  position: absolute;
  bottom: 54px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  height: 48px;
  line-height: 48px;
  background-color: #0f218b;
  color: #fff;
  text-align: center;
  border: none;
  font-size: 16px;
  width: 200px;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease-in-out 0.2s;
}
#members-goods .r1 {
  background-color: #e5eaea;
}
#members-goods .r1 .layout-mid {
  background-color: #fff;
  padding: 60px 0;
}
#members-goods .r1 .layout-mid .my-goods {
  width: 84%;
  margin: auto;
}
#members-goods .r1 .layout-mid .my-goods > li {
  width: 100%;
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}
#members-goods .r1 .layout-mid .my-goods > li .goods-date {
  position: absolute;
  right: 0;
  top: 0;
  color: #8d8d8d;
}
#members-goods .r1 .layout-mid .my-goods > li .go-buy {
  display: inline-block;
  position: absolute;
  height: 36px;
  line-height: 36px;
  background-color: #0f218b;
  color: #fff;
  text-align: center;
  border: none;
  width: 120px;
  right: 0;
  bottom: 0;
}
#members-goods .r1 .layout-mid .my-goods > li .go-buy.ok {
  background-color: #bac2c2;
  color: #fff;
}
#pro_detail #top {
  height: 105px;
  background-color: #000;
}
#pro_detail #main a.return {
  position: fixed;
  bottom:40vh;
  right: 2%;
  display: inline-block;
  z-index: 14;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
#pro_detail #main a.return:hover {
  background-color: #0f218b;
}
#pro_detail #main .r1 {
  padding-top: 80px;
  position: relative;
  background-color: #1e1e1f;
}
#pro_detail #main .r1 .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../images/pbg.jpg) repeat;
}
#pro_detail #main .r1 .mask div:nth-of-type(1) {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background:#fff;
}
#pro_detail #main .r1 .layout-rowMain {
  z-index: 3;
}
#pro_detail #main .r1 .layout-rowMain .fr {
  padding-left: 8%;
}
#pro_detail #main .r1 .layout-rowMain .fr .goods-btm .layout-btn {
  padding: 12px 36px;
}
#pro_detail #main .r1 .layout-rowMain .fr .goods-btm .layout-btn:hover {
  background-color: #0f218b;
  border-color: #0f218b;
}
#pro_detail #main .r1 .goods-msg .goods-top {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
#pro_detail #main .r1 .goods-msg .goods-mid {
  padding: 30px 0;
  min-height: 340px;
  border-bottom: 1px solid #ddd;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li > a {
  display: block;
  color: #999;
  height: 36px;
  line-height: 36px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li > a:after {
  content: attr(data-cur);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  color: #fff;
  left: -30px;
  font-weight: bold;
  width: 20px;
  height: 30px;
  line-height: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li > p {
  color: #999;
  font-size: 12px;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li.on > a {
  color: #0f218b;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li.on > a:before {
  background-color: #0f218b;
  height: 0px;
}
#pro_detail #main .r1 .goods-msg .goods-mid > ul > li.on > a:after {
  background-color: #0f218b;
}
#pro_detail #main .r1 .goods-msg .goods-btm {
  padding-top: 46px;
}
#pro_detail #main .r1 .goods-pic .Tcon {
  width: 100%;
}
#pro_detail #main .r1 .goods-pic .pro-change {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #pro_detail #main .r1 .goods-pic .pro-change {
    width: 60px;
    right: auto;
    left: 0;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
  }
}
#pro_detail #main .r1 .goods-pic .pro-change > li {
  position: relative;
  display: inline-block;
  z-index: 5;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  width: 60px;
  height: 60px;
  line-height: 62px;
}
@media screen and (min-width: 600px) {
  #pro_detail #main .r1 .goods-pic .pro-change > li:first-of-type {
    margin-bottom: 30px;
  }
  #pro_detail #main .r1 .goods-pic .pro-change > li:last-of-type {
    margin-top: 30px;
  }
}
#pro_detail #main .r1 .goods-pic .pro-change > li > span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  line-height: 12px;
  text-align: center;
  background-color: #4e4e4e;
  position: relative;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  border: 3px solid transparent;
}
#pro_detail #main .r1 .goods-pic .pro-change > li > span > img {
  opacity: 0;
  height: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
@media screen and (min-width: 600px) {
  #pro_detail #main .r1 .goods-pic .pro-change > li.on > span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height: 56px;
    text-align: center;
    background-color: #fff;
    border: 3px solid #0f218b;
  }
  #pro_detail #main .r1 .goods-pic .pro-change > li.on > span > img {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  #pro_detail #main .r1 .goods-pic .pro-change > li.on > span {
    background-color: #0f218b;
  }
}
#pro_detail #main .r1 .goods-pic .pro-change:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: calc(100% - 60px);
  background-color: #4e4e4e;
}
#pro_detail #main .r2 {
  background: url("../images/pro-bg2.jpg") center no-repeat;
  background-size: cover;
}
#pro_detail #main .r2 h4 {
  text-align: center;
}
#pro_detail #main .r2 ul.pro-item {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
#pro_detail #main .r2 ul.pro-item > li {
  float: left;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r2 ul.pro-item > li .pro-photo {
  height: 700px;
  width: 100%;
  position: relative;
}
#pro_detail #main .r2 ul.pro-item > li .pro-photo > img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  bottom: 0;
  transform: translateY(20%);
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -o-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease 0.3s;
  opacity: 0;
  top: 0;
}
#pro_detail #main .r2 ul.pro-item > li .pro-photo .pro-show {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  border: 1px solid #929292;
}
#pro_detail #main .r2 ul.pro-item > li .pro-photo .pro-show:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 12px;
  background-color: #929292;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r2 ul.pro-item > li .pro-photo .pro-show:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #929292;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r2 ul.pro-item > li.on {
  width: 240%!important;
}
#pro_detail #main .r2 ul.pro-item > li.on .pro-photo > img {
  opacity: 1;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transition: opacity 0.3s ease-in-out 0.3s, transform 0.3s ease 0.3s;
}
#pro_detail #main .r2 ul.pro-item > li.on .pro-photo .pro-show {
  opacity: 0;
}
#pro_detail #main .r3 {
  background-color: #000;
}
#pro_detail #main .r3 .layout-rowMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#pro_detail #main .r3 .fl {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
#pro_detail #main .r3 .fl > span {
  display: block;
  margin-bottom: 120px;
}
#pro_detail #main .r3 .fr {
  position: relative;
}
#pro_detail #main .r3 .fr:after {
  content: "";
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 120%;
  bottom: -10px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
#pro_detail #main .r4 {
  background-color: #1a1a1a;
}
#pro_detail #main .r4 .pc {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#pro_detail #main .r4 .pc .fr {
  position: relative;
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
#pro_detail #main .r4 .fr {
  padding-left: 10%;
  height: 340px;
  max-width: 45%;
  right: 0;
  text-align: right;
}
#pro_detail #main .r4 .fr small {
  display: block;
}
#pro_detail #main .r4 .fr a {
  text-align: center;
  display: inline-block;
  color: #fff;
  margin-top: 16px;
  margin-left: 12px;
}
#pro_detail #main .r4 .fr a > img {
  margin-bottom: 10px;
}
#pro_detail #main .r4 .fl ul {
  overflow: hidden;
}
#pro_detail #main .r4 .fl ul > li {
  color: #999;
  float: left;
  width: 44%;
  height: 70px;
  line-height: 70px;
  border-bottom: 1px solid #4e4e4e;
  overflow: hidden;
}
#pro_detail #main .r4 .fl ul > li:nth-child(2n) {
  margin-left: 12%;
}
#pro_detail #main .r4 .fl ul.pro-note > li {
  position: relative;
}
#pro_detail #main .r4 .fl ul.pro-note > li > span {
  color: #999;
  display: inline-block;
  line-height: 20px;
  width: 84px;
  margin-right: 50px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
}
#pro_detail #main .r4 .fl ul.pro-note > li > small {
  display: inline-block;
  line-height: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  left: 94px;
  width: calc(100% - 94px);
}
#pro_detail #main .r4 .fl ul.pro-other {
  margin-top: 60px;
}
#pro_detail #main .r4 .fl ul.pro-other > li {
  background-color: #383838;
  border: none;
  position: relative;
}
#pro_detail #main .r4 .fl ul.pro-other > li > a {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 5;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r4 .fl ul.pro-other > li > a > img {
  vertical-align: sub;
  margin: 0 20px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#pro_detail #main .r4 .fl ul.pro-other > li > a:hover {
  background-color: #0f218b;
  color: #fff;
}
#pro_detail #main .r4 .fl ul.pro-other > li > a:hover > img {
  opacity: 0;
}
#pro_detail #main .r4 .fl ul.pro-other > li > a:hover + i.iconfont {
  color: #fff;
  z-index: 10;
}
#pro_detail #main .r4 .fl ul.pro-other > li > i {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  right: 20px;
}
#pro_detail #btm {
  background-color: #000;
}
#pro_detail #btm .pro-page {
  text-align: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#pro_detail #btm .pro-page a {
  color: #fff;
  display: inline-block;
  font-size: 18px;
}
#pro_detail #btm .pro-page a > i {
  font-size: 18px;
}
#join #main .layout-title {
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 100%;
}
#join #main .layout-title .layout-tabBox {
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#join #main .layout-title .layout-tabBox > ul {
  width: 84%;
  margin: auto;
}
#join #main .layout-title .layout-tabBox > ul > li {
  color: #626262;
  font-size: 16px;
  width: calc(100%/5);
  text-align: center;
  height: 1rem;
  line-height: 1rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
  text-indent: -10px;
}
#join #main .layout-title .layout-tabBox > ul > li > i {
  color: #626262;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .layout-title .layout-tabBox > ul > li:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: #0f218b;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .layout-title .layout-tabBox > ul > li.on,
#join #main .layout-title .layout-tabBox > ul > li:hover {
  color: #0f218b;
}
#join #main .layout-title .layout-tabBox > ul > li.on > i,
#join #main .layout-title .layout-tabBox > ul > li:hover > i {
  color: #0f218b;
}
#join #main .layout-title .layout-tabBox > ul > li.on:after,
#join #main .layout-title .layout-tabBox > ul > li:hover:after {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#join #main .layout-row .layout-rowMain {
  position: relative;
  z-index: 15;
}
#join #main .layout-row .layout-rowMain .title h3 > small {
  opacity: 0.7;
  display: block;
}
#join #main .r1 {
  background: url(../images/join-bg.jpg) top right no-repeat #f6f6f6;
  background-size: contain;
}
#join #main .r1 .layout-rowMain .layout-mid .fl h5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#join #main .r1 .layout-rowMain .layout-mid .fl p {
  line-height: 240%;
  opacity: 0.9;
}
#join #main .r1 .layout-rowMain.Tbg:after {
  content: "";
  position: absolute;
  width: 3000px;
  height: 100%;
  left: -1000px;
  top: 0;
  background-color: #333333;
  z-index: -1;
}
#join #main .r2 {
  background: url(../images/join-bg1.jpg) top right no-repeat #f6f6f6;
  background-size: contain;
}
#join #main .r2 .layout-rowMain {
  background: url(../images/txt-service.png) center no-repeat;
  background-size: 60%;
}
#join #main .r2 .layout-rowMain .layout-mid {
  height: 600px;
  position: relative;
  overflow: visible;
}
#join #main .r2 .layout-rowMain .layout-mid.pc:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3000px;
  left: -1000px;
  height: 2px;
  background-color: #cfcfcf;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart {
  height: 50%;
  padding-left: 60px;
  width: 24%;
  position: absolute;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con {
  position: absolute;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con > p {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  opacity: 0;
  visibility: hidden;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con > span > b {
  position: relative;
  display: block;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con > span > b:after {
  content: attr(data-txt);
  position: absolute;
  font-size: 24px;
  color: #0f218b;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  left: 0;
  top: 0;
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con .iconfont {
  display: inline-block;
  width: 34px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #6f6f6f;
  position: absolute;
  background-color: #f6f6f6;
  z-index: 3;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart .con:after {
  content: attr(data-num);
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: word;
  color: #0f218b;
  font-size: 40px;
  height: 55px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transition-delay: 0.2s;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart.heart-up {
  top: 0;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart.heart-down {
  bottom: 0;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart:hover .con > p {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart:hover .con > span > b:after {
  width: 50%;
}
#join #main .r2 .layout-rowMain .layout-mid.pc .heart:hover .con:after {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
}
#join #main .r2 .layout-rowMain .layout-mid.app {
  width: 100%;
  height: 680px;
}
#join #main .r2 .layout-rowMain .layout-mid.app:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  left: 0px;
  width: 2px;
  background-color: #cfcfcf;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart {
  height: 120px;
  padding-left: 30px;
  width: 100%;
  position: absolute;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con {
  position: absolute;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con > p {
  margin-top: 12px;
  opacity: 1;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con > span > b {
  position: relative;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con > span > b:after {
  content: attr(data-txt);
  position: absolute;
  font-size: 16px;
  color: #0f218b;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  left: 0;
  top: 0;
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con .iconfont {
  display: inline-block;
  width: 34px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #6f6f6f;
  position: absolute;
  background-color: #f6f6f6;
  z-index: 3;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -46px;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart .con:after {
  content: attr(data-num);
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: word;
  color: #0f218b;
  font-size: 40px;
  height: 55px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transition-delay: 0.2s;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart.heart-up {
  bottom: 0;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart.heart-down {
  bottom: 0;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart.heart-down p.gc {
  padding-bottom: 12px;
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart:hover .con > p {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
}
#join #main .r2 .layout-rowMain .layout-mid.app .heart:hover .con > span > b:after {
  width: 50%;
}
#join #main .r3 {
  background: url(../images/join-bg2.jpg) top right no-repeat #fcfcfc;
}
#join #main .r3 .layout-rowMain .layout-mid > h2 {
  padding-left: 8%;
}
#join #main .r3 .layout-rowMain .layout-mid .fl {
  padding-left: 8%;
}
#join #main .r3 .layout-rowMain .layout-mid .fl h5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#join #main .r3 .layout-rowMain .layout-mid .fl p {
  line-height: 240%;
  opacity: 0.9;
}
#join #main .r3 .layout-rowMain .layout-mid .process {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 105px;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list > span {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  line-height: 170px;
  text-align: center;
  border: 2px solid #222223;
  display: table;
  position: relative;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list > span > em {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 5;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list > span > b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  background-color: #0f218b;
  color: #fff;
  position: absolute;
  z-index: 6;
  top: 70%;
  left: 70%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list > span:before {
  content: "";
  width: 68%;
  height: 68%;
  border-radius: 50%;
  line-height: 68%;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  background-color: #262626;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list > span:after {
  content: "";
  width: 86%;
  height: 86%;
  border-radius: 50%;
  line-height: 86%;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  background-color: #1f1f20;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list:hover > span > b {
  transform: scale(1.2);
  left: 40%;
  background-color: #262626;
}
#join #main .r3 .layout-rowMain .layout-mid .process .process-list:hover > span:after {
  transform: scale(1.2);
  background-color: #0f218b;
}
#join #main .r3 .layout-rowMain.Tbg:after {
  content: "";
  position: absolute;
  width: 3000px;
  height: 100%;
  left: -1000px;
  top: 0;
  background-color: #1a1a1b;
  z-index: -1;
}
#join #main .r4 {
  background: url(../images/join-bg3.jpg) top right no-repeat #f6f6f6;
  background-size: cover;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box {
  overflow: hidden;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list {
  float: left;
  width: 50%;
  padding: 0 4%;
  height: 220px;
  margin: 28px 0;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell {
  background-color: #fff;
  padding: 0 12%;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell > h4 {
  position: relative;
  color: #333;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  z-index: 5;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell > h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1.5px;
  background-color: #0f218b;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell > p {
  opacity: 0.8;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  position: relative;
  z-index: 5;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell .c-mask {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0f218b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:after {
  content: attr(data-num);
  position: absolute;
  right: 4%;
  top: 5%;
  font-size: 46px;
  color: #eee;
  font-family: word;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  z-index: 6;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:hover .c-mask {
  visibility: visible;
  opacity: 1;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:hover h4 {
  color: #fff;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:hover h4:after {
  background-color: #fff;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:hover p {
  color: #fff;
}
#join #main .r4 .layout-rowMain .layout-mid .security-box .security-list .cell:hover:after {
  color: #43cbcc;
}
#join #main .r5 {
  height: 800px;
  position: relative;
}
#join #main .r5 #component {
  height: 800px;
  position: absolute;
  top: 0;
  left: 0;
}
#join #main .r5 #component nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 50px;
  width: 84%;
}
#join #main .r5 #component nav > a {
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#join #main .r5 #component nav > a:hover {
  background-color: rgba(40, 184, 185, 0.5);
}
#join #main .r5 #component .Tcon > small {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
}
#join #main .r5 #component .txtChange > li {
  text-align: left;
  font-size: 20px;
  height: 60px;
}
#repass #main .r1 .pass-box {
  padding: 0 8%;
  max-width: 920px;
  margin: auto;
}
#repass #main .r1 .pass-box .input-text p {
  color: #c74444;
  text-align: left;
}
#repass #main .r1 .pass-box h2 {
  color: #303234;
  font-size: 26px;
  font-weight: bold;
}
#repass #main .r1 .pass-box h2 > small {
  font-size: 14px;
  color: #303234;
  display: block;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
}
#repass #main .r1 .pass-box input[type=submit] {
  background-color: #e6e6e6;
  border: none;
  color: #aeaeae;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 3px;
  padding: 12px 0;
  pointer-events: none;
}
#repass #main .r1 .pass-box input[type=submit].yan-ok {
  background-color: #0f218b;
  color: #fff;
  pointer-events: auto;
}
#repass #main .r1 .pass-box input[type=submit] + span {
  display: inline-block;
  width: 100%;
  text-align: left;
  color: #c1c1c1;
}
#repass #main .r1 .pass-box .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #c1c1c1;
  font-size: 22px;
}
#repass #main .r1 .pass-box .get-ma {
  display: inline-block;
  background-color: #0f218b;
  color: #fff;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
#repass #main .r1 .pass-box .range {
  position: relative;
}
#repass #main .r1 .pass-box .range:after {
  content: attr(data-note);
  position: absolute;
  left: 0;
  color: #aeaeae;
  padding-top: 6px;
}
#nav-dialog {
  position: fixed;
  z-index: 1101;
  align-items: flex-start;
}
#nav-dialog .dialog_mask {
  background-color: rgba(55, 58, 71, 0.6);
}
#nav-dialog .dialog_content {
  width: 60%;
  max-width: 100%;
  height:4.688vw;
  max-height: 100%;
}
#nav-dialog .dialog_content .nav-item {
  width: 100%;
  margin: auto;
  padding-top: 0px;
  height: 4.688vw;
  line-height:4.688vw
}
#nav-dialog .dialog_content .nav-item.on {
  display: block;
}
#nav-dialog .dialog_content .nav-item > li {
  float: left;
  width: calc(100%/8);
      animation-delay: 0.4s!important;
      animation-duration: 0.4s!important;
}
#nav-dialog .dialog_content .nav-item > li > a {
  color: #444;
  display: inline-block;
  width: 100%;
  text-align: center;
  height: 100%;
  font-size: 18px;
  text-indent: -10px;
}
#nav-dialog .dialog_content .nav-item > li > a > i {
  margin-right: 4px;
  opacity: 0;
  pointer-events: none;
  display: inline-block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transform: translateY(-24px);
  -webkit-transform: translateY(-24px);
  -moz-transform: translateY(-24px);
  -o-transform: translateY(-24px);
  -ms-transform: translateY(-24px);
}
#nav-dialog .dialog_content .nav-item .ydj > ol {
  padding-top: 12px;
  padding-bottom:12px;
  border: 1px solid #f5f5f5;
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  -webkit-transform: translateX(12px);
  -moz-transform: translateX(12px);
  -o-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transition: all 0.4s;
}
#nav-dialog .dialog_content .nav-item > li > ol > li {
  height: 38px;
  line-height: 38px;
  transition: all 0.4s;
  animation-delay: 0s!important;
}
#nav-dialog .dialog_content .nav-item > li > ol > li > a {
  color: #444444;
  text-align: center;
  opacity: 1;
  font-size:15px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
#nav-dialog .dialog_content .nav-item > li > ol > li:hover > a {
  color: #0f218b;
  letter-spacing: 2px;
  opacity: 1;
}
#nav-dialog .dialog_content .nav-item > li.on > a {
  color: #0f218b;
}
#nav-dialog .dialog_content .nav-item > li:hover > a {
  color: #0f218b;
}
#nav-dialog .dialog_content .nav-item > li:hover > a > i {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
#nav-dialog .dialog_content .nav-item .ydj ol{
  display:none;
}
#nav-dialog .dialog_content .nav-item .ydj:hover ol {
  display:block;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  opacity: 1;
  background: #fff;
  margin-top:-2px;
  border-bottom:2px solid #0f218b;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1)
}
#log-dialog,
#re-dialog,
#look-dialog,
#repass-dialog {
  z-index: 10001;
}
#log-dialog .dialog_content,
#re-dialog .dialog_content,
#look-dialog .dialog_content,
#repass-dialog .dialog_content {
  width: 32%;
}
#log-dialog .dialog_content .range,
#re-dialog .dialog_content .range,
#look-dialog .dialog_content .range,
#repass-dialog .dialog_content .range {
  position: relative;
}
#log-dialog .dialog_content .range:after,
#re-dialog .dialog_content .range:after,
#look-dialog .dialog_content .range:after,
#repass-dialog .dialog_content .range:after {
  content: attr(data-note);
  position: absolute;
  left: 0;
  color: #aeaeae;
  padding-top: 6px;
  top: 100%;
}
#log-dialog .input-text p,
#re-dialog .input-text p,
#look-dialog .input-text p,
#repass-dialog .input-text p {
  color: #c74444;
  text-align: left;
}
#log-dialog h2,
#re-dialog h2,
#look-dialog h2,
#repass-dialog h2 {
  color: #303234;
  font-size: 26px;
  font-weight: bold;
}
#log-dialog h2 > small,
#re-dialog h2 > small,
#look-dialog h2 > small,
#repass-dialog h2 > small {
  font-size: 14px;
  color: #303234;
  display: block;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
}
#log-dialog input[type=submit],
#re-dialog input[type=submit],
#look-dialog input[type=submit],
#repass-dialog input[type=submit] {
  background-color: #e6e6e6;
  border: none;
  color: #aeaeae;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 3px;
  padding: 12px 0;
  pointer-events: none;
}
#log-dialog input[type=submit].yan-ok,
#re-dialog input[type=submit].yan-ok,
#look-dialog input[type=submit].yan-ok,
#repass-dialog input[type=submit].yan-ok {
  background-color: #0f218b;
  color: #fff;
  pointer-events: auto;
}
#log-dialog input[type=submit] + span,
#re-dialog input[type=submit] + span,
#look-dialog input[type=submit] + span,
#repass-dialog input[type=submit] + span {
  display: inline-block;
  width: 100%;
  text-align: left;
  color: #c1c1c1;
}
#log-dialog .close-btn,
#re-dialog .close-btn,
#look-dialog .close-btn,
#repass-dialog .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #c1c1c1;
  font-size: 22px;
}
#log-dialog .get-ma,
#re-dialog .get-ma,
#look-dialog .get-ma,
#repass-dialog .get-ma {
  display: inline-block;
  background-color: #0f218b;
  color: #fff;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.Txtblur1 {
  animation-duration: 1.2s!important;
  animation: Txtblur cubic-bezier(0.82, 0.01, 0.34, 1);
}
.Txtblur2 {
  animation-duration: 1s!important;
  animation: Txtblur cubic-bezier(0.82, 0.01, 0.34, 1);
}
.scaleIn {
  animation-duration: 0.8s!important;
  animation: scaleIn cubic-bezier(0.82, 0.01, 0.34, 1);
}
@keyframes Txtblur {
  0% {
    filter: blur(12px);
    opacity: 0;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}
@keyframes gorotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn1 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes menu {
  from {
    stroke-dashoffset: 0%;
  }
  to {
    stroke-dashoffset: -150%;
  }
}

.slide-item__image{text-align:center}
.videoList-box {
	padding: 2.167vw 0 0;
  overflow: hidden;
}
#home .default-box.big-box {
  width: 23vw;
  margin: 0 6.5vw 2.083vw 0;
}
.default-box.big-box {
  width: 23vw;
  margin: 0 6.247vw 3.2vw 0;
}
.default-box.big-box:nth-child(3n){margin-right: 0 !important;}
.default-box {
  float: left;
  position: relative;
  cursor: pointer;
  width: 18.49vw;
  margin: 0 0 .938vw 0;
}
#home .default-box.big-box .img-box {
  height: 12.26vw;
}
.default-box.big-box .img-box {
  height: 14.26vw;
}
.default-box .img-box {
  height: 10.625vw;
}
.default-box.big-box:hover .text.title{color: #0f218b;}
.default-box.big-box:hover .img-box{border:6px solid #0f218b}
.default-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 4px;
  border: none;
  vertical-align: middle;
}
.default-box.big-box .text.title {
  padding-top: .729vw;
  font-size: 1vw;
}
.default-box .text.title {
  color: #333;
  padding: .417vw 0 0;
  font-size: 1.042vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.default-box .text {
  text-align: left;
}
#home .default-box.big-box .play {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url(../images/play.png) no-repeat center 4.2vw;
  background-size: 2.969vw 2.969vw;
}
.default-box.big-box .play {
  position: absolute;
  left: 0;
  top: 3vh;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url(../images/play.png) no-repeat center 4.2vw;
  background-size: 2.969vw 2.969vw;
}
.clearfix {
  zoom: 1;
}
.z_wh {
  width: 100%;
  position: relative;
  height: calc(50vh - 4.688vw);
  top:4.688vw;
  background-attachment: fixed;
}

.z_wh .index_tit {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  margin: 0;
  z-index: 2;
}
.index_tit h3, .index_tit .h3 {
  font-size: .2rem;
  font-family: "en_l";
  color: #bbbbbb;
  text-transform: uppercase;
}
.z_wh .index_tit h4 {
  padding-bottom: 1vh;
  margin-bottom: 4vh;
  font-size: 2vw;
  color: #333;
}
.index_tit h4 {
  font-size: 18px;
  display: inline-block;
  padding-bottom: 25px;
  border-bottom: 2px solid #0f218b;
}
.z_wh .index_tit .desc {
  font-size: .2rem;
  color: #999;
}
.z_footer {
	background: #f4f4f4;
	padding-top: 0;
	padding-bottom: 0;
	border-top: 3px solid #0f218b;
	color: #aaaaaa;
}

.foot_top {
	padding: 0 0 3vw;
}

.foot_nav {
	float: left;
  width: 60%;
}

.foot_nav dl {
	display: inline-block;
  width: 24%;
	vertical-align: top;
}

.foot_nav dl dt {
	color: #333;
	margin-bottom: 35px;
}
.foot_nav dl dt a{color:#333;font-size: .2rem;}
.foot_nav dl dt a:hover{color: #0f218b;}
.foot_nav dd a {
	display: block;
	line-height: 2;
	color: #666;
  font-size: 0.16rem;
}
.foot_nav dl:nth-child(4) dd a{width: 50%; float: left;}
.foot_nav dd a:hover {
	color: #0f218b;
}

.foot_fr {
	float: right;
}

.foot_dz {
	float: left;
	text-align: right;
	border-right: 1px solid #ddd;
	padding-right: 2vw;
	margin-right: 2vw;
}
.foot_dz .tel {
  text-align: right;
  font-weight: 700;
  font-size: 2.083vw;
  color: #0f218b;
  padding-top: 15px;
  padding-right: 15px;
  background: url(../images/tel.png) no-repeat right 20%;
  background-size: .833vw .677vw;
}
.foot_dz .tel p{
  font-size: .2rem;
  color: #a2a2a2;
  margin-right: -15px;
  font-weight: normal;
  padding-bottom: 2.083vw;
}
.foot_dz h3 {
	color: #333;
  font-size: .18rem;
}

.foot_dz ul {
	margin: 30px 0;
	color: #666;
}

.foot_code {
	float: right;
	text-align: center;
}

.foot_code img {
	width: 136px;
	height: 136px;
	margin-bottom: 6px;
}
.foot_code h3{font-weight: normal; font-size: .18rem;}
#home .foot_copy{padding: 5vh 0;}
.foot_copy {
	border-top: 1px solid #ddd;
	padding: 5vh 0 0;
}

.foot_copy a {
	color: #aaa;
	float: right;
}
#home .p5vw {
  padding: 2.5vw 0;
  box-sizing: border-box;
  margin-top: 50vh;
}
.p5vw {
  padding: 2.5vw 0;
  box-sizing: border-box;
}
.bta{bottom: auto !important;}
.z_footer .clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.health{width: 100%; height: calc(100% - 4.688VW); display: block; overflow: hidden; margin:4.688vw 0 0;}
.health .fl{width: 50%; height: 100%; background: url(../images/szs.jpg) no-repeat center bottom; background-size: cover;}
.health .fr{width: 50%; height: 100%; background: #fff;}
.water-knowledge.small {
  padding-left: 5.99vw;
  padding-top: 24.5%;
}
.water-knowledge>span {
  display: block;
  font-size: 2vw;
  color: #333;
  font-weight: normal;
}
.water-knowledge.small p {
  padding-bottom: 12%;
  margin: 0;
  padding-top: 2.083vw;
  width: 70%;
  font-size: .9vw;
  line-height: 1.67;
  color: #666;
}
.linkMore {
  display: inline-block;
  border: 1px solid #7a7a7c;
  padding: 0 1.2vw;
  font-size: .8vw;
  line-height: 2.6vw;
  border-radius: 3px;
  text-align: center;
  vertical-align: middle;
  color: #666;
}
.linkMore:hover{background: #0F218B; color: #fff;}
#pagesize ul{display:-webkit-inline-box;}
#pagesize .active{background: #0f218b !important;}
#pro_detail{margin-top: 4.688vw;}

.searchbox {
  position: relative;
  z-index: 1;
  clear: both;
  width: 530px;
  height: 50px;
  background: #fff;
  margin: 0 auto 25px;
  border: 2px solid #0f218b;
}
.searchbox .import {
  width: 426px;
  height: 46px;
  padding-left: 20px;
  float: left;
  border: none;
  outline: none;
}
.searchbox .btn-search {
  position: absolute;
  right: 0;
  width: 100px;
  height: 46px;
  color: #fff;
  background-color: #0f218b;
  border: 0;
}
.aboutinfor span{display: block !important;line-height: 2 !important; font-size: .18rem !important;}
.aboutinfor p{line-height: 2 !important; font-size: .18rem !important; text-indent: 2em; text-align: justify;}
.aboutinfor p img{margin-left: -2em;max-width:100%}

.szlist table tr td:first-child{width: 30%;}
.szlist table tr td:nth-child(2){width: 50%;}
.szlist table tr td:nth-child(3){width: 20%;}
.szlist tr:first-child td{text-align: center; font-weight: bold; font-size: .2rem; padding-left: 0 !important;}
.szlist td{height: .5rem; font-size: .16rem; padding-left: .2rem; padding-right: .2rem;}
.szlist td a{font-size: .16rem;}
.szlist tr:nth-child(odd){background: #f5f5f5;}
.shuizhan .layout-tabBox > ul{width: 82% !important;}
.shuizhan .layout-tabBox ul.layout-part > li {
  width: calc(100%/12);
}

.events-list {
  padding: 10vh 0;
}
.list-cont{width: 1200px; margin: 0 auto;}
.events-list .dl {
  height: 166px;
}
.events-list .dl .dt {
  float: left;
  width: 330px;
  height: 166px;
  position: relative;
}
.events-list .dl .dt .ic {
  position: absolute;
  right: -22px;
  top: -1px;
  z-index: 50;
}
.events-list .dl .dt:before {
  content: "";
  display: block;
  width: 205px;
  height: 0;
  border-top: 1px solid #dae0e6;
  position: absolute;
  right: 0;
  top: 7px;
}
.events-list .dl .dt:after {
  content: "";
  display: block;
  width: 0;
  height: 166px;
  border-right: 1px solid #dae0e6;
  position: absolute;
  right: 0;
  top: 7px;
}
.events-list .dl .dt h5 {
  color: #0f218b;
  font: 48px/36px 'Rubik';
  margin-top: -10px;
}

.events-list .dl .dd {
  float: left;
  width: 870px;
  height: 166px;
  padding-left: 40px;
}
.events-list .dl .dd h3 {
  color: #808080;
  font-size: .16rem;
  margin-bottom: 15px;
  margin-top: -4px;
}
.events-list .dl .dd .cont {
  padding-left: 64px;
  min-height: 48px;
  background: url(../images/about2-events-list-ic2.png) no-repeat 0 1px;
}
.events-list .dl .dd .cont p {
  color: #4c4c4c;
}
.events-list .more {
  display: block;
  width: 55px;
  height: 55px;
  background: url(../images/about2-events-list-more.jpg) no-repeat 0 0;
  margin-left: 302px;
  margin-top: -30px;
  position: relative;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.events-list .more:hover {
  background: url(../images/about2-events-list-more.jpg) no-repeat 0 0;
}
@media screen and (max-width: 1199px) {
.events-list .dl .dt {
    width: 20%;
  }
.events-list .dl .dd {
    width: 80%;
    min-height: 166px;
    height: auto;
    padding-bottom: 60px;
  }
.events-list .dl .dt h5 {
    width: 90px;
    background-color: #FFF;
    font-size: 35px;
    position: relative;
    z-index: 99;
  }
.events-list .dl .dt:before {
    max-width: 100%;
  }
.events-list .dl .dt:after {
    display: none;
  }
.events-list .dl .dd {
    border-left: 1px solid #dae0e6;
  }
.events-list .more {
    margin-left: 30px;
  }
.events-list {
    position: relative;
  }
.events-list:after {
    content: "";
    display: block;
    clear: both;
  }
.events-list .dl {
    height: auto;
  }
.events-list .more {
    position: absolute;
    left: 20%;
    bottom: -25px;
    margin-left: -26px;
  }
}
@media screen and (max-width: 750px) {
.events-list {
    padding-top: 30px;
  }
.events-list .dl .dt h5 {
    width: 48px;
    font-size: 18px;
  }
.events-list .dl .dt {
    width: 23%;
  }
.events-list .dl .dd {
    width: 77%;
    padding-left: 30px;
  }
{
    background: none;
    padding-bottom: 80px;
  }
.events-list .more {
    left: 23%;
    zoom: 0.8;
  }
.events-list .dl .dd .cont {
    padding-left: 40px;
    background: url(../images/about2-events-list-ic2.png) no-repeat 0 5px;
    background-size: 30px auto;
  }
}

.lk a{display: block; float: left; width: 22%; margin: 2% 4% 2% 0;}
.lk a:nth-child(4n){margin-right: 0;}
.lk a p{text-align: center; line-height: 3;}
.lk a img{width: 100%;}

.culture{
  position: relative;
  width:100%;
  height: 750px;
  padding-top:90px;
}
.culture .bg{
  left: 0;
  bottom: 0;
  position: absolute;
}
#svg{
  position: absolute;
  width:320px;
  height: 320px;
  left:50%;
  top:50%;
  margin-left: -160px;
  margin-top:-160px;
  background: #25358e;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}
.acitve_cir{
  background: #0f218b;
  width: 320px;
  height: 320px;
  position: absolute;
  border-radius: 320px 0 0 0;
  left: -50%;
  top: -50%;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  transform-origin: right bottom;
}
.cir_part{
  position: absolute;
  left:50%;
  bottom: 50%;
}
.cir_part:hover{
  cursor: pointer;
}
#svg1{
  transform: rotateZ(60deg);
  -webkit-transform: rotateZ(60deg);
  transform-origin: left bottom;
  z-index: 1;
}
#svg2{
  transform: rotateZ(120deg);
  -webkit-transform: rotateZ(120deg);
  transform-origin: left bottom;
  z-index: 2;
}
#svg3{
  transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  transform-origin: left bottom;
  z-index: 3;
}
#svg4{
  transform: rotateZ(240deg);
  -webkit-transform: rotateZ(240deg);
  transform-origin: left bottom;
  z-index: 4;
}
#svg5{
  transform: rotateZ(300deg);
  -webkit-transform: rotateZ(300deg);
  transform-origin: left bottom;
  z-index: 5;
}
#svg6{
  transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  transform-origin: left bottom;
  z-index: 6;
}
#mid_cir{
  width:200px;
  height:200px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  z-index: 100;
}

.culture .fl span,.culture .fr span{
  font-size:26px;
  font-family:'Microsoft YaHei';
  font-weight:bold;
  color:rgba(17,68,134,1);
  line-height:36px;
}
.culture .fl i,.culture .fr i{
  font-size:26px;
  font-weight:400;
  color:rgba(17,68,134,1);
}
.culture .fl i{
  margin-right: 10px;
}
.culture .fr i{
  margin-left: 10px;
}
.culture .fr > div{
  text-align: right;
  position: relative;
}
.culture .fl p,.culture .fr p{
  font-size:18px;
  font-family:'Microsoft YaHei';
  font-weight:400;
  color:rgba(51,51,51,1);
  line-height:36px;
  height: 36px;
}
.line{
  width:390px;
  height: 1px;
  background: #cccccc;
  margin-top:15px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.line .line_blue{
  position: absolute;
  width:0;
  height: 1px;
  background: #114486;
  left: 0;
  top: 0;
  transition: width 1s ease,right 1s ease;
}
.right .line_blue{
  width:390px;
  left: unset;
  right: -390px;
}
.culture .fl > div:hover{
  cursor: pointer;
}
.culture .fl > div:nth-child(1)
{
  margin-left:120px;
}
.culture .box:nth-child(1){
  transform:translateX(-120px);
  -webkit-transform: translateX(-120px);
}
.culture .fl > div:nth-child(2),.culture .fr > div:nth-child(2){
  margin-top:130px;
}
.culture .fl > div:nth-child(3),.culture .fr > div:nth-child(3){
  margin-top: 120px;
}
.culture .fl > div:nth-child(3){
  margin-left: 120px;
}
.culture .fr > div:nth-child(3){
  transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
}
.culture .circle{
  width:7px;
  height: 7px;
  border-radius: 7px;
  position: absolute;
  right:0;
  top:-3.5px;
  background: #cccccc;
}
.culture .fr .circle{
  right:unset;
  left: 0;
}
.line_box{
  position: relative;
  width:390px;
}
.dashed{
  width:100px;
  height: 0;
  border-bottom: 1px dashed #cccccc;
  position: absolute;
  right: -100px;
  top:0;
}
.culture .fr .dashed{
  right:unset;
  left: -100px;
}
.dashed1{
  transform: translate(-20px,33px) rotateZ(45deg);
  -webkit-transform: translate(-20px,33px) rotateZ(45deg);
}
.dashed3{
  transform:translate(-14px,-39px) rotateZ(-45deg);
  -webkit-transform:translate(-14px,-39px) rotateZ(-45deg);
}
.dashed4{
  transform:translate(19px,33px) rotateZ(135deg);
  -webkit-transform:translate(19px,33px) rotateZ(135deg);
}
.dashed5{
  transform:translate(0,0) rotateZ(0deg);
  -webkit-transform:translate(0,0) rotateZ(0deg);
}
.dashed5 .dsd_blu{
  left: unset;
  right: 0;
}
.dashed6{
  transform:translate(19px,-34px) rotateZ(-135deg);
  -webkit-transform:translate(19px,-34px) rotateZ(-135deg);
}
.dsd_blu{
  position: absolute;
  height: 0;
  top:0;
  left: 0;
  width:0;
  border-bottom: 1px dashed rgba(17,68,134,1);
  transition: width 0.7s ease;
}
.culture .fl > div:hover .line_blue{
  width:390px;
}
.culture .fl > div:hover .circle,
.culture .fr > div:hover .circle{
  transition-delay:0.7s;
  background: #0f218b!important;
}
.culture .fl > div:hover .dsd_blu{
  transition-delay:0.7s;
  width:100px;
}
.culture .fr > div:hover .dsd_blu{
  transition-delay:0.7s;
  width:100px;
}
.culture .fr > div:hover{
  cursor: pointer;
}
.culture .fr > div:hover .line_blue{
  right:0;
}
.culture .text{
  transform: translateY(-197px);
  -webkit-transform: translateY(-197px);
  z-index: 101;
  position: relative;
  text-align: center;
}
.culture .text span{
  font-size:22px;
  font-family:'Microsoft YaHei';
  font-weight:bold;
  color:rgba(17,68,134,1);
  display: inline-block;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  position: relative;
}
.culture .text img{
  width: 50px;
  padding-bottom: 10px;
  display: inline-block;
}
#svg .iconfont{
  display: none;
}
.culture #svg .text p{
  display: none;
}
.container {
  width: 1278px!important;
  margin-left: auto;
  margin-right: auto;
}
.nonediv{display: none;}
.move0,.move1,.move2,.move3,.move4,.move5,.move6,.move7,.move8,.move9,.move10,.move11,.move12{
  opacity: 0;
}
.anm1,.anm2,.anm3,.anm4,.anm5,.anm6,.anm7,.anm8,.anm9,.anm10,
.anm11,.anm12,.anm13,.anm14{
  opacity: 0;
}
.textUp{
  animation:moveUp 1s ease;
  animation-fill-mode: both;
}
.textLeft7{
  animation: moveLeft7 0.7s ease;
  animation-fill-mode: both;
}
.textUpL{
  animation:moveUpL 1.5s ease;
  animation-fill-mode: both;
}
.textUp2{
  animation:moveUp 2s ease;
  animation-fill-mode: both;
}
.showBox{
  animation: showLoad 1.5s ease;
  animation-fill-mode: both;
}
.hideBox{
  animation: hideLoad 1.5s ease;
  animation-fill-mode: both;
}
.textDown{
  animation: moveDown 1s ease;
  animation-fill-mode: both;
}
.textLeft{
  animation: moveLeft 1.5s ease;
  animation-fill-mode: both;
}
.textRight{
  animation: moveRight 2s ease;
  animation-fill-mode: both;
}
.textLeftL{
  animation: moveLeftL 2s ease;
  animation-fill-mode: both;
}
.textLeftLL{
  animation: moveLeftLL 2s ease;
  animation-fill-mode: both;
}
.textLeftLS{
  animation: moveLeftL 1s ease;
  animation-fill-mode: both;
}
.textRightL{
  animation: moveRightL 2s ease;
  animation-fill-mode: both;
}
.textRightLS{
  animation: moveRightL 1s ease;
  animation-fill-mode: both;
}
.textShow{
  animation: opacityShow 1s ease;
  animation-fill-mode: both;
}
.scaleImg{
  animation: scaleImg 0.7s ease;
  animation-fill-mode: both;
}
@keyframes scaleImg{
  0%{opacity: 0;transform: scale(0.7)}
  100%{opacity:1;transform: scale(1)}
}
@-o-keyframes scaleImg{
  0%{opacity: 0;transform: scale(0.7)}
  100%{opacity:1;transform: scale(1)}
}
@-webkit-keyframes scaleImg{
  0%{opacity: 0;transform: scale(0.7)}
  100%{opacity:1;transform: scale(1)}
}
.delay1s{
  transition-delay: 1s;
  -moz-transition-delay: 1s; /* Firefox 4 */
  -webkit-transition-delay: 1s; /* Safari 鍜� Chrome */
  -o-transition-delay: 1s; /* Opera */
  animation-fill-mode: both;
}
.delay2s{
  transition-delay: 2s;
  -moz-transition-delay: 2s; /* Firefox 4 */
  -webkit-transition-delay: 2s; /* Safari 鍜� Chrome */
  -o-transition-delay: 2s; /* Opera */
  animation-fill-mode: both;
}
.delay3s{
  transition-delay: 3s;
  -moz-transition-delay: 3s; /* Firefox 4 */
  -webkit-transition-delay: 3s; /* Safari 鍜� Chrome */
  -o-transition-delay: 3s; /* Opera */
  animation-fill-mode: both;
}
.delay4s{
  transition-delay: 4s;
  -moz-transition-delay: 4s; /* Firefox 4 */
  -webkit-transition-delay: 4s; /* Safari 鍜� Chrome */
  -o-transition-delay: 4s; /* Opera */
  animation-fill-mode: both;
}
.delay5s{
  transition-delay: 5s;
  -moz-transition-delay: 5s; /* Firefox 4 */
  -webkit-transition-delay: 5s; /* Safari 鍜� Chrome */
  -o-transition-delay: 5s; /* Opera */
  animation-fill-mode: both;
}
.delay6s{
  transition-delay: 6s;
  -moz-transition-delay: 6s; /* Firefox 4 */
  -webkit-transition-delay: 6s; /* Safari 鍜� Chrome */
  -o-transition-delay: 6s; /* Opera */
  animation-fill-mode: both;
}
@keyframes enlargeImg{
  0%{transform: scale(1.1)}
  100%{transform: scale(1)}
}
@-o-keyframes enlargeImg{
  0%{transform: scale(1.1)}
  100%{transform: scale(1)}
}
@-moz-keyframes enlargeImg{
  0%{transform: scale(1.1)}
  100%{transform: scale(1)}
}
@-webkit-keyframes enlargeImg{
  0%{transform: scale(1.1)}
  100%{transform: scale(1)}
}
@keyframes moveUp{
  0% {transform: translateY(15px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-o-keyframes moveUp{
  0% {transform: translateY(15px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-moz-keyframes moveUp{
  0% {transform: translateY(15px);opacity: 0.1;}
  100% {transform: translateY(0vw);opacity: 1;}
}
@-webkit-keyframes moveUp{
  0% {transform: translateY(15px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@keyframes moveUpL{
  0% {transform: translateY(51px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-o-keyframes moveUpL{
  0% {transform: translateY(51px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-moz-keyframes moveUpL{
  0% {transform: translateY(51px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-webkit-keyframes moveUpL{
  0% {transform: translateY(51px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@keyframes moveDown{
  0% {transform: translateY(-50px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-o-keyframes moveDown{
  0% {transform: translateY(-50px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-moz-keyframes moveDown{
  0% {transform: translateY(-50px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}
@-webkit-keyframes moveDown{
  0% {transform: translateY(-50px);opacity: 0.1;}
  100% {transform: translateY(0px);opacity: 1;}
}

@keyframes opacityShow{
  0% {opacity: 0.1;}
  100% {opacity: 1;}
}
@-o-keyframes opacityShow{
  0% {opacity: 0.1;}
  100% {opacity: 1;}
}
@-moz-keyframes opacityShow{
  0% {opacity: 0.1;}
  100% {opacity: 1;}
}
@-webkit-keyframes opacityShow{
  0% {opacity: 0.1;}
  100% {opacity: 1;}
}

@keyframes moveLeft{
  0% {transform: translateX(15px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-o-keyframes moveLeft{
  0% {transform: translateX(15px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-moz-keyframes moveLeft{
  0% {transform: translateX(15px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}

@-webkit-keyframes moveLeft{
  0% {transform: translateX(15px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@keyframes moveLeft7{
  0% {transform: translateX(50px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-o-keyframes moveLeft7{
  0% {transform: translateX(50px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-moz-keyframes moveLeft7{
  0% {transform: translateX(50px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}

@-webkit-keyframes moveLeft7{
  0% {transform: translateX(50px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@keyframes moveLeftL{
  0% {transform: translateX(150px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-o-keyframes moveLeftL{
  0% {transform: translateX(150px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-moz-keyframes moveLeftL{
  0% {transform: translateX(150px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-webkit-keyframes moveLeftL{
  0% {transform: translateX(150px);opacity: 0.1;}
  100% {transform: translateX(0px);opacity: 1;}
}
@keyframes moveLeftLL{
  0% {transform: translateX(150px) scale(1);opacity: 0.1;}
  100% {transform: translateX(0px) scale(1.2);opacity: 1;}
}
@-o-keyframes moveLeftLL{
  0% {transform: translateX(150px) scale(1);opacity: 0.1;}
  100% {transform: translateX(0px) scale(1.2);opacity: 1;}
}
@-moz-keyframes moveLeftLL{
  0% {transform: translateX(150px) scale(1);opacity: 0.1;}
  100% {transform: translateX(0px) scale(1.2);opacity: 1;}
}
@-webkit-keyframes moveLeftLL{
  0% {transform: translateX(150px) scale(1);opacity: 0.1;}
  100% {transform: translateX(0px) scale(1.2);opacity: 1;}
}

@keyframes moveRight{
  0% {transform: translateX(-15px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-o-keyframes moveRight{
  0% {transform: translateX(-15px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-moz-keyframes moveRight{
  0% {transform: translateX(-15px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-webkit-keyframes moveRight{
  0% {transform: translateX(-15px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@keyframes moveRightL{
  0% {transform: translateX(-150px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-o-keyframes moveRightL{
  0% {transform: translateX(-150px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-moz-keyframes moveRightL{
  0% {transform: translateX(-150px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}
@-webkit-keyframes moveRightL{
  0% {transform: translateX(-150px);opacity: 0.1;}
  50% {opacity: 0.5;}
  100% {transform: translateX(0px);opacity: 1;}
}

@keyframes showLoad{
  0% {opacity: 0.3;}
  100% {opacity: 1;}
}
@-o-keyframes showLoad{
  0% {opacity: 0.3;}
  100% {opacity: 1;}
}
@-moz-keyframes showLoad{
  0% {opacity: 0.3;}
  100% {opacity: 1;}
}
@-webkit-keyframes showLoad{
  0% {opacity: 0.3;}
  100% {opacity: 1;}
}
@keyframes hideLoad{
  0% {opacity: 1;}
  100% {opacity: 0.1;}
}
@-o-keyframes hideLoad{
  0% {opacity: 1;}
  100% {opacity: 0.1;}
}
@-moz-keyframes hideLoad{
  0% {opacity: 1;}
  100% {opacity: 0.1;}
}
@-webkit-keyframes hideLoad{
  0% {opacity: 1;}
  100% {opacity: 0.1;}
}
@keyframes moveUpDown{
  0% {transform: translateY(0px);opacity: 0.1;}
  50% {transform: translateY(15px);opacity: 1;}
  100% {transform: translateY(0px);opacity: 0.1;}
}
@-o-keyframes moveUpDown{
  0% {transform: translateY(0px);opacity: 0.1;}
  50% {transform: translateY(15px);opacity: 1;}
  100% {transform: translateY(0px);opacity: 0.1;}
}
@-moz-keyframes moveUpDown{
  0% {transform: translateY(0px);opacity: 0.1;}
  50% {transform: translateY(15px);opacity: 1;}
  100% {transform: translateY(0px);opacity: 0.1;}
}
@-webkit-keyframes moveUpDown{
  0% {transform: translateY(0px);opacity: 0.1;}
  50% {transform: translateY(15px);opacity: 1;}
  100% {transform: translateY(0px);opacity: 0.1;}
}
.screen .bg{
  opacity: 0;
  left: 0;
  top:0;
  position: absolute;
  opacity: 0;
  display: none;
}
.screen .bg:nth-child(1){
  opacity: 1;
  display: block;
}

.lca01{ padding:50px 0; height:auto; width: 100%;}
.lca01 ul{ overflow:hidden;}
.lca01 ul li{ float:left; margin:0 5% 30px 0; background:#f7f7f7; border:1px solid #ebebeb; line-height:23px; height:auto; width:30%; text-align:center; color:#0e050a; font-size:16px; border-radius:3px; padding-bottom: 30px;}
.lca01 ul li.nom{ margin-right:0;}
.lca01 ul li:nth-child(3n){margin-right: 0;}
.lca01 ul li span{ display:block;}
.lca01 ul li img{ padding-top:35px;}
.lca01 ul li i{ display:block; font-size:18px; color:#555; padding-bottom:8px;}
.lca01 ul li em{ display:block; font-size:18px;}
.lca01 ul li em span{ font-size:25px; padding-top:5px;}
.lca01 ul li span a{ font-size:25px;}
.lca01 ul li.cur{ border:1px solid #0f218b; background:#0f218b; color: #fff;}
.lca02{ height:760px;}
.lca02 h3{ text-align:center; font-weight:normal; text-align:center; color:#0e050a; font-size:36px; height:120px; background:url(../images/c_h3.gif) no-repeat center 0; line-height:95px;}
.lca02 p img{ width:1200px; height:542px;}

.onlineshop{width: 100%; height: auto; display: block; overflow: hidden; margin: 30px auto;}
.onlineshop ul{overflow: hidden;}
.onlineshop ul li{float: left; width: 22%; margin-right: 4%;}
.onlineshop ul li:nth-child(4n){margin-right: 0;}
.onlineshop ul li img{max-width: 100%; border-radius: 6px;}
.onlineshop ul li p{text-align: center; font-size: .2rem; padding-top: 10px;}