@charset "UTF-8";
/* ==========================================================================
   Base
   ========================================================================== */

body,
input,
textarea,
select,
button {
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: ltr;
  text-align: left;
}

a {
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:active,
a:hover {
  outline: 0;
}
body {
  overflow-x: hidden;
  background: #fff;
}
body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form {
  margin: 0;
}
button,
fieldset {
  padding: 0;
  margin: 0;
}
ul,
ol {
  padding-left: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
em,
i {
  font-style: normal;
}
/* ==========================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C""\201D""\2018""\2019";
}
small {
  font-size: 100%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   html5
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
/* ==========================================================================
   Forms
   ========================================================================== */
button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
legend {
  display: none;
}
fieldset {
  border: 0 none;
}
/* imgArea */
.imgArea {
  float: left;
}
.imgArea img {
  width: 100%;
  height: 100%;
}
.txtArea {
  overflow: hidden;
  *zoom: 1;
}
.txtArea .desc {
  display: -webkit-box; /*  -webkit-line-clamp: 3; */
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
}
/* thumbnail */
.thumbnail-wrap {
  display: table;
  table-layout: fixed;
}
.thumbnail {
  display: table-cell;
  *display: block;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}
.thumbnail img {
  max-width: 100%;
  max-height: 100%;
  _width: 100%;
  _height: 100%;
  vertical-align: middle;
}
.thumbnail i {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
} /* ie6/7下可以使用此方法兼容 */
/* ==========================================================================
   Common
   ========================================================================== */
.fl {
  float: left;
}
.fr {
  float: right;
}
/* clearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  *zoom: 1;
}
.more-arr,
.bc-arr {
  font-family: simsun;
}

.asterisk {
  color: #f00;
  padding: 0 6px;
}
.tal {
  text-align: left !important;
}
.tac {
  text-align: center !important;
}
.tar {
  text-align: right !important;
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}

input[type="“text”"],
input[type="“button”"],
input[type="“submit”"],
input[type="“reset”"],
select,
textarea,
button {
  -webkit-appearance: none;
}
input: -webkit-autofill {
  -webkit-box-shadow: 0 0 0px 100px white inset;
}

.mainpic {
  position: relative;
  height: auto;
  overflow: hidden;
}
.mainpic .bgimg {
  width: 100%;
}
.mainpic .uppic {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  left: 0;
  top: 0;
}
.mainpic:hover .uppic {
  transform: scale(1.05);
}

.mainpic02 {
  position: relative;
  height: auto;
  overflow: hidden;
}
.mainpic02 .bgimg {
  width: 100%;
  height: 100%;
}
.mainpic02 .uppic {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*滚动动画的样式*/
.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;
}
/*animate补充动画*/
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
}
@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightSmall {
  animation-name: fadeInRightSmall;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
}
@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownSmall {
  animation-name: fadeInDownSmall;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
}
@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}
.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 30px, 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;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes bannerIn {
  0% {
    transform: translate3d(100%, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }
  50% {
    transform: translate3d(0, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }
  100% {
    transform: translate3d(0%, 0, 0) scale3d(1, 1, 1);
  }
}
@keyframes banner_in {
  0% {
    transform: translate3d(100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
  100% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }
}
@keyframes banner_out {
  0% {
    transform: translate3d(0, 0%, 0) scale3d(1, 1, 1);
  }
  50% {
    transform: translate3d(0, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }
  100% {
    transform: translate3d(-100%, 0, 0) scale3d(0.7, 0.7, 0.7);
  }
}
@keyframes banner_in_1 {
  0% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }
  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
  100% {
    transform: translate3d(-100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
}
@keyframes banner_out_1 {
  0% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }
  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
  100% {
    transform: translate3d(-100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
}
@keyframes loopCir {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}
@keyframes ani1 {
  0% {
    opacity: 0;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -o-transform: translateY(8px);
    -ms-transform: translateY(8px);
  }
  30% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
  }
  70% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
  }
}
@keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes fn1 {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translate3d(0%, 20px, 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}
.fn1 {
  animation-name: fn1;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.49, 0.54, 0.16, 1);
}
