@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-width: 1440px;
  font-size: 14px;
  font-family: 'Microsoft YaHei', 'PingFang SC', arial, helvetica, 'Microsoft Sans Serif', sans-serif;
}

ul li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}

a:hover, a:active {
  outline: none;
}

img {
  outline: none;
  border: 0;
  vertical-align: middle;
}

em {
  font-style: normal;
}

p {
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

iframe {
  border: none;
}

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

table td,
table th {
  padding: 0;
}

input {
  outline: none;
  line-height: normal;
}

/* chrome记住密码后的默认填充样式解决 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  border: 1px solid #ccc !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #eee;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #eee;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #eee;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #eee;
}

/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 10px;
  /*对垂直流动条有效*/
  height: 10px;
  /*对水平流动条有效*/
}

/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0;
}

/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: #1f473b;
}

.container {
  width: 1400px;
  margin: 0 auto;
}

.clearfix {
  zoom: 1;
  /*为IE6，7的兼容性设置*/
}

.clearfix:after {
  clear: both;
  /*清除浮动*/
}

.clearfix:after, .clearfix:before {
  content: '';
  /*加一段内容*/
  display: table;
  /*创建匿名的表格单元，触发bfc*/
}

.relative {
  position: relative;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.center-block {
  display: block;
  margin-right: auto;
}

.line-height {
  line-height: 1;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.logo a {
  display: block;
  width: 370px;
  height: 100px;
  margin: 0 auto;
  background: url(../images/logo.png) center center no-repeat;
  background-size: contain;
  font: 0/0 a;
}

.logo a:hover {
  filter: brightness(110%);
}

.login-box {
  font-size: 16px;
  text-align: center;
}

.login-box .btn-login {
  display: block;
  margin: 0 auto;
  font-weight: 700;
  font-family: '宋体';
  color: #e1284b;
  text-decoration: underline;
}

.login-box .btn-login:hover {
  color: #ff3a5e;
  text-decoration: underline;
}

.login-box .name {
  margin-right: 20px;
}

.login-box .login-info {
  color: #7a6db2;
}

.login-box .login-info a {
  color: #e1284b;
  margin-left: 10px;
}

.login-box .login-info a:hover {
  color: #ff3a5e;
  text-decoration: underline;
}

.login-box .login-info .area {
  display: inline-block;
  margin-right: 30px;
}

.sg {
  position: relative;
  width: 700px;
  height: 412px;
  background: url(../images/slog.png) center center no-repeat;
  background-size: contain;
}

.vd {
  position: absolute;
  top: 60px;
  right: 10px;
  display: block;
  width: 114px;
  height: 114px;
  margin: 0 auto;
  cursor: pointer;
}

.vd span {
  display: block;
  width: 114px;
  height: 114px;
  background: url(../images/vd_bg.png) center center no-repeat;
  background-size: contain;
  animation: rotation 8s infinite linear;
  -ms-animation: rotation 8s infinite linear;
  -moz-animation: rotation 8s infinite linear;
  -webkit-animation: rotation 8s infinite linear;
  -o-animation: rotation 8s infinite linear;
}

.vd i {
  position: absolute;
  top: 0;
  right: 0;
  left: 12px;
  bottom: 0;
  margin: auto;
  width: 34px;
  height: 37px;
  background: url(../images/sj.png) center center no-repeat;
}

.vd:hover span {
  filter: brightness(110%);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.tit {
  margin: 60px 0 30px;
  font-size: 20px;
  text-align: center;
}

.tit h2 {
  height: 117px;
  background-size: contain !important;
  font: 0/0 a;
}

.tit.tit-01 h2 {
  background: url(../images/tit_01.png) center center no-repeat;
}

.tit.tit-02 h2 {
  background: url(../images/tit_02.png) center center no-repeat;
}

.tit.tit-03 h2 {
  background: url(../images/tit_03.png) center center no-repeat;
}

.tit.tit-04 h2 {
  background: url(../images/tit_04.png) center center no-repeat;
}

.color-red {
  color: #d15361;
}

.top-link {
  position: fixed;
  top: 35px;
  right: 35px;
  z-index: 1000;
}

.top-link a {
  float: right;
  display: block;
  width: 185px;
  height: 51px;
  color: #247e5a;
  font: 0/0 a;
  background: url(../images/btn_01.png) center center no-repeat;
  background-size: contain;
}

.top-link a:hover {
  filter: brightness(120%);
}

.section {
  overflow: hidden;
}

.section .slide {
  width: 100%;
  background: url(../images/sect_02.jpg) center center no-repeat;
  overflow: hidden;
}

.section .slide .container {
  position: relative;
  height: 100%;
}

.section .slide.sect-01 {
  background: url(../images/sect_01.jpg) center center no-repeat;
}

.section .slide.sect-01 .container {
  width: 1300px;
  height: 100%;
}

.section .slide.sect-01 .sect-01-cont {
  float: left;
  width: 675px;
  margin-top: 80px;
}

.section .slide.sect-01 .label {
  display: block;
  position: absolute;
  bottom: 250px;
  right: 440px;
  width: 80px;
  height: 291px;
  background: url(../images/label.png) no-repeat;
  background-size: contain;
}

.section .slide.sect-03 .tab-content .name {
  position: absolute;
  right: -170px;
  top: 155px;
  width: 95px;
  height: 237px;
  background-size: contain !important;
}

.section .slide.sect-03 .tab-content .name.name-01 {
  background: url(../images/txt_01.png) top right no-repeat;
}

.section .slide.sect-03 .tab-content .name.name-02 {
  background: url(../images/txt_02.png) top right no-repeat;
}

.section .slide.sect-03 .tab-content .name.name-03 {
  background: url(../images/txt_03.png) top right no-repeat;
}

.section .slide.sect-03 .tab-content .name.name-04 {
  background: url(../images/txt_04.png) top right no-repeat;
}

.section .slide.sect-03 .tab-content .name.name-05 {
  background: url(../images/txt_05.png) top right no-repeat;
}

.section .slide.sect-04 .rule-cont {
  margin: 20px 0 10px;
}

.section .slide.sect-04 .rule-cont p {
  color: #304170;
  font-size: 14px;
}

.section .slide.sect-04 .rule-cont em {
  top: 2px;
  background: #e1284b;
}

.section .slide .sect-cont {
  position: relative;
  float: left;
  width: 862px;
  z-index: 10;
}

.section .slide .sect-cont .img {
  position: relative;
  width: 862px;
  height: 485px;
  margin: 0 auto;
}

.section .slide .sect-cont .img img {
  width: 100%;
}

.section .slide .sect-cont .img .bg {
  display: block;
  width: 882px;
  height: 505px;
  position: absolute;
  top: -10px;
  left: -10px;
  background: url(../images/bg_01.png) center center no-repeat;
  background-size: contain;
}

.section .slide .sect-cont .img .img-vd {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 88px;
  height: 88px;
  background: url(../images/vidio.png) center center no-repeat;
  transition: all 0.3s;
}

.section .slide .sect-cont .img .img-vd:hover {
  filter: brightness(110%);
  transform: scale(1.05);
}

.section .slide .sect-cont .txt {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #304170;
  margin: 20px 0;
  height: 48px;
  overflow: hidden;
}

.section .slide .sect-cont .txt:before {
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 42px;
  background: #304170;
  border-radius: 2px;
  content: '';
}

.section .slide .sect-cont .btn-buy {
  display: block;
  width: 398px;
  height: 82px;
  margin: 0 auto;
  background: url(../images/btn_04.png) center center no-repeat;
  background-size: contain;
  font: 0/0 a;
  transition: margin-top 0.3s;
}

.section .slide .sect-cont .btn-buy:hover {
  margin-top: -5px;
  filter: brightness(110%);
}

.section .slide .people {
  position: absolute;
  top: 0;
  right: -60px;
}

.section .slide .people.people-01 {
  width: 897px;
  height: 996px;
  background: url(../images/people_01.png) no-repeat;
}

.section .slide .people.people-02 {
  right: -280px;
  width: 976px;
  height: 1025px;
  background: url(../images/people_02.png) no-repeat;
}

.section .slide .people.people-03 {
  right: -260px;
  width: 1176px;
  height: 992px;
  background: url(../images/people_03.png) no-repeat;
}

.section .slide .text-center a {
  display: inline-block;
  width: 319px;
  height: 90px;
  font: 0/0 a;
  transition: margin-top 0.3s;
}

.section .slide .text-center a.btn-register {
  background: url(../images/btn_register.png) center center no-repeat;
}

.section .slide .text-center a.btn-download {
  margin-left: 40px;
  background: url(../images/btn_download.png) center center no-repeat;
}

.section .slide .text-center a:hover {
  filter: brightness(110%);
}

.controlArrow {
  width: 73px !important;
  height: 112px;
  border: none;
  background-size: contain !important;
  transition: all 0.3s;
}

.controlArrow.prev {
  left: 80px;
  background: url(../images/icon_left.png) no-repeat;
}

.controlArrow.prev:hover {
  left: 75px;
  background: url(../images/icon_left_h.png) no-repeat;
}

.controlArrow.next {
  right: 80px;
  background: url(../images/icon_right.png) no-repeat;
}

.controlArrow.next:hover {
  right: 75px;
  background: url(../images/icon_right_h.png) no-repeat;
}

.book-scroll {
  width: 704px;
  height: 278px;
  margin-top: -15px;
  text-align: center;
  background: url(../images/scroll_bg.png) center center no-repeat;
  overflow: hidden;
}

.book-scroll a {
  display: block;
  width: 204px;
  margin: 0 auto;
}

.book-scroll a:hover {
  filter: brightness(110%);
}

.book-scroll .btn-01 {
  height: 54px;
  margin: 57px auto 12px;
  background: url(../images/btn_02.png) no-repeat;
}

.book-scroll .btn-02 {
  height: 94px;
  background: url(../images/btn_03.png) no-repeat;
}

.nav-list-01 {
  position: absolute;
  top: 77px;
  right: 0;
  bottom: 0;
  width: 398px;
  height: 1079px;
  background: url(../images/tab_bg.png) center center no-repeat;
  background-size: contain;
}

.nav-list-01 li {
  width: 281px;
  height: 90px;
  background: url(../images/btn_05.png) center center no-repeat;
  background-size: contain;
  transition: background 0.1s;
}

.nav-list-01 li + li {
  margin-top: 85px;
}

.nav-list-01 li a {
  display: block;
  height: 90px;
  font: 0/0 a;
  background-size: contain !important;
}

.nav-list-01 li.active {
  background: url(../images/btn_05_h.png) center center no-repeat;
  background-size: contain;
}

.nav-list-01 li:hover {
  filter: brightness(120%);
}

.nav-list-01 li.item-01 a {
  background: url(../images/btn_txt_01.png) center center no-repeat;
}

.nav-list-01 li.item-02 a {
  background: url(../images/btn_txt_02.png) center center no-repeat;
}

.nav-list-01 li.item-02, .nav-list-01 li.item-04 {
  margin-left: 145px;
}

.nav-list-01 li.item-03 {
  margin-left: 185px;
}

.nav-list-01 li.item-03 a {
  background: url(../images/btn_txt_03.png) center center no-repeat;
}

.nav-list-01 li.item-04 a {
  background: url(../images/btn_txt_04.png) center center no-repeat;
}

.nav-list-01 li.item-05 a {
  background: url(../images/btn_txt_05.png) center center no-repeat;
}

.img-big {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  cursor: zoom-in;
  background: url(../images/big.png) center center no-repeat;
}

.img-big:hover {
  filter: brightness(110%);
  transform: scale(1.05);
}

.imgbig {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  z-index: 9999;
  animation: tc 0.5s;
}

.imgbig .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1440px;
  height: 810px;
  cursor: zoom-out;
}

.imgbig .img img {
  width: 100%;
}

.imgbig .close-01 {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 119px;
  height: 127px;
  background: url(../images/close_01.png) center center no-repeat;
}

.imgbig .close-01:hover {
  filter: brightness(110%);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.modal.modal-vd .modal-body {
  width: 1070px;
  height: 600px;
  margin-left: -535px;
  margin-top: -300px;
  border: 1px solid #e1284b;
  background: #fbfbfb;
}

.modal.modal-vd .modal-body .pop_video_box {
  width: 100%;
  height: 100%;
}

.modal.modal-vd .modal-body .pop_video_box .popMov {
  width: 100%;
  height: 100%;
}

.modal.modal-rule .modal-body {
  width: 770px;
  height: 490px;
  margin-left: -385px;
  margin-top: -245px;
  background: url(../images/modal_l.png) no-repeat;
}

.modal.modal-rule .modal-body .m-tit {
  background: url(../images/m_tit_01.png) center center no-repeat;
}

.modal.modal-rule .modal-body .m-cont {
  padding: 20px 70px;
}

.rule-cont p {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.9;
}

.rule-cont p em {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50px;
  background: #508ee2;
  color: #fff;
  font-style: normal;
  text-align: center;
}

.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -237.5px;
  margin-top: -170.5px;
  width: 475px;
  height: 341px;
  background: url(../images/modal.png) center center no-repeat;
  background-size: contain;
  animation: tc 0.5s;
}

.modal-body .m-tit {
  margin: 50px 0 0;
  height: 54px;
  background: url(../images/m_tit_02.png) center center no-repeat;
  font: 0/0 a;
}

.modal-body .m-cont {
  padding: 20px 50px;
  font-size: 18px;
  color: #5d5e5f;
  line-height: 1.6;
}

.modal-body .text-center {
  margin-top: 20px;
}

.modal-body .text-center a {
  display: inline-block;
  width: 175px;
  height: 49px;
  line-height: 49px;
  font-size: 20.5px;
  color: #fff;
}

.modal-body .text-center a + a {
  margin-left: 25px;
}

.modal-body .text-center a:hover {
  filter: brightness(110%);
}

.modal-body .text-center a.btn-red {
  background: url(../images/btn_06.png) no-repeat;
}

.modal-body .text-center a.btn-blue {
  background: url(../images/btn_07.png) no-repeat;
}

.modal-body .close {
  position: absolute;
  top: -2px;
  right: -76px;
  width: 39px;
  height: 39px;
  line-height: 39px;
  display: block;
  background: url(../images/close.png) center center no-repeat;
  background-size: contain;
}

.modal-body .close img {
  margin: 15px 0 0 15px;
  transition: all 0.3s;
}

.modal-body .close:hover {
  filter: brightness(115%);
}

.modal-body .close:hover img {
  transform: rotate(90deg);
}

@keyframes tc {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1440px) {
  .logo a {
    height: 80px;
  }
  .top-link {
    width: 1440px;
    left: 0;
  }
  .sg {
    height: 300px;
  }
  .section {
    height: 100% !important;
  }
  .section .slide .sect-cont {
    width: 734px;
    margin-left: 80px;
  }
  .section .slide .sect-cont .img {
    width: 711px;
    height: 400px;
  }
  .section .slide .sect-cont .img .bg {
    width: 734px;
    height: 420px;
  }
  .section .slide .sect-cont .txt {
    margin: 20px 15px;
  }
  .section .slide .sect-cont .btn-buy {
    height: 62px !important;
  }
  .section .slide .rule-cont {
    margin: 20px 15px 10px !important;
  }
  .section .slide .rule-cont p {
    line-height: 1.5;
  }
  .section .slide .tab-content .name {
    top: 105px !important;
    right: -120px !important;
    height: 167px !important;
  }
  .section .slide .text-center {
    margin-top: -20px;
  }
  .vd {
    top: 30px;
    right: 80px;
  }
  .vd .btn-vd {
    height: 100px;
  }
  .vd i {
    top: -13px;
  }
  .controlArrow {
    height: 90px;
  }
  .controlArrow.prev {
    left: 30px;
  }
  .controlArrow.prev:hover {
    left: 25px;
  }
  .controlArrow.next {
    right: 30px;
  }
  .controlArrow.next:hover {
    right: 25px;
  }
  .label {
    bottom: 0 !important;
  }
  .tit {
    margin: 50px 0 30px;
  }
  .tit h2 {
    height: 87px;
  }
  .nav-list-01 {
    top: 97px;
    right: 170px;
    height: 766px;
  }
  .nav-list-01 li {
    height: 70px;
  }
  .nav-list-01 li + li {
    margin-top: 55px;
  }
  .nav-list-01 li a {
    height: 70px;
  }
  .top-link {
    top: 20px;
    right: 10px;
  }
  .top-link a {
    height: 41px;
  }
  .imgbig .img {
    width: 1200px;
    height: 675px;
  }
  .float-btn {
    right: -30px !important;
    height: 260px !important;
  }
}

#snowflake {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.float-btn {
  position: fixed;
  bottom: 60px;
  right: 0;
  display: block;
  width: 269px;
  height: 306px;
  background: url(../images/christmas.png) no-repeat;
  background-size: contain;
  animation: gotop 1s infinite alternate linear;
  -ms-animation: gotop 1s infinite alternate linear;
  -moz-animation: gotop 1s infinite alternate linear;
  -webkit-animation: gotop 1s infinite alternate linear;
  -o-animation: gotop 1s infinite alternate linear;
  z-index: 100;
  font: 0/0 a;
}

.float-btn:hover {
  filter: brightness(105%);
}

@keyframes gotop {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: 65px;
  }
}

@-webkit-keyframes gotop {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: 65px;
  }
}

.btn-music {
  position: fixed;
  top: 30px;
  left: 30px;
  display: block;
  width: 25px;
  height: 25px;
  z-index: 1000;
}

.btn-music i {
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/btn_08.png) no-repeat;
}

.btn-music.on i {
  -moz-animation: rotate01 3s linear infinite;
  -webkit-animation: rotate01 3s linear infinite;
  -o-animation: rotate01 3s linear infinite;
  -ms-animation: rotate01 3s linear infinite;
  animation: rotate01 3s linear infinite;
}

@-webkit-keyframes rotate01 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate01 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes rotate01 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes rotate01 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate01 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
