@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;
  cursor: url(../images/cursor_01.png), auto;
}

ul li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  background-color: transparent;
  cursor: url(../images/cursor_02.png), auto;
}

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;
}

.container {
  width: 1440px;
  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 {
  position: absolute;
  top: 25px;
  left: 35px;
  z-index: 100;
}

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

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

.login-box {
  display: inline-block;
  padding: 20px 0;
}

.login-box .btn-login {
  display: block;
  font-size: 21px;
  color: #d22639;
  letter-spacing: 2px;
  margin: 0 auto;
}

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

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

.login-box .login-info {
  color: #000;
}

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

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

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

.tit {
  position: absolute;
  left: -150px;
  top: 180px;
}

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

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

.tit.tit-02 {
  top: 200px;
}

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

.tit.tit-03 {
  top: 160px;
  left: -130px;
}

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

.top-link {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
}

.top-link a {
  float: left;
  width: 153px;
  height: 59px;
  font: 0/0 a;
}

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

.top-link a.item-01 {
  background: url(../images/btn_index.png) center center no-repeat;
}

.top-link a.item-02 {
  background: url(../images/btn_download.png) center center no-repeat;
}

.top-link.another a.item-01 {
  background: url(../images/btn_index_gray.png) center center no-repeat;
}

.top-link.another a.item-02 {
  background: url(../images/btn_download_gray.png) center center no-repeat;
}

.sect {
  position: relative;
  height: 1080px;
  overflow: hidden;
}

.sect .container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease .3s;
  transform: translate3d(0, 80px, 0);
  opacity: 0;
}

.sect.active .container {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}

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

.sect.sect-01 .vedio-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 600px;
  width: 296px;
  margin: 0 auto;
}

.sect.sect-01 .vedio-list li {
  margin: 0;
}

.sect.sect-01 .sg {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 954px;
  height: 412px;
  background: url(../images/sg.png) center center no-repeat;
  background-size: contain !important;
  font: 0/0 a;
}

.sect.sect-02 {
  background: url(../images/sect_02.jpg) top center no-repeat;
}

.sect.sect-02 .container {
  padding: 120px 0 0 150px;
}

.sect.sect-02 .people-num {
  position: relative;
  padding: 78px 110px 0 0;
  margin: 0 0 20px -30px;
  width: 560px;
  height: 177px;
  color: #0f0f0f;
  font-size: 18px;
  background: url(../images/bg_06.png) center center no-repeat;
  background-size: contain !important;
  z-index: 1;
  text-align: center;
}

.sect.sect-02 .people-num span {
  color: #ffc548;
  font-weight: 700;
  font-size: 50px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

.sect.sect-03 {
  background: url(../images/sect_02.jpg) top center no-repeat;
}

.sect.sect-03 .container {
  padding: 260px 0 0 150px;
}

.sect.sect-04 {
  background: url(../images/sect_03.jpg) top center no-repeat;
}

.sect.sect-04.special .container {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}

.sect.sect-04 .container {
  padding: 230px 0 0 150px;
}

.sect.sect-04 .over-foot {
  position: absolute;
  bottom: -2px;
  right: -240px;
  width: 1826px;
  height: 455px;
  background: url(../images/bg_11.png) center center no-repeat;
}

.sect-05,
.fp-tableCell {
  height: auto !important;
}

.role {
  position: absolute;
  top: 0;
  right: -240px;
  width: 1200px;
  height: 1080px;
  background-size: contain !important;
}

.role .name {
  position: absolute;
  top: 350px;
  right: 190px;
  width: 55px;
  height: 277px;
  font: 0/0 a;
}

.role.role-01 {
  background: url(../images/role_01.png) center center no-repeat;
}

.role.role-01 .name {
  background: url(../images/name_01.png) center center no-repeat;
}

.role.role-02 {
  background: url(../images/role_02.png) center center no-repeat;
}

.role.role-02 .name {
  top: 450px;
  background: url(../images/name_02.png) center center no-repeat;
}

.role.role-03 {
  width: 1300px;
  background: url(../images/role_03.png) center center no-repeat;
}

.role.role-03 .name {
  right: 180px;
  background: url(../images/name_03.png) center center no-repeat;
}

.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-public {
  text-align: center;
}

.modal.modal-public .gift-img img {
  width: 58px;
  height: 58px;
  margin: 23px;
}

.modal.modal-public .btn-address {
  display: block;
  width: 194px;
  height: 57px;
  margin: 0 auto;
  font: 0/0 a;
  background: url(../images/btn_address.png) center center no-repeat;
}

.modal.modal-public .btn-address:hover {
  filter: brightness(1.1);
}

.modal.modal-address .modal-body {
  height: 590px;
  margin-top: -295px;
  background: url(../images/modal_04.png) center center no-repeat;
}

.modal.modal-address .form {
  margin-top: 30px;
}

.modal.modal-address .form .group {
  overflow: hidden;
  margin-top: 15px;
}

.modal.modal-address .form .group .label {
  float: left;
  width: 80px;
  text-align: right;
  line-height: 34px;
  margin-right: 15px;
}

.modal.modal-address .form .group input,
.modal.modal-address .form .group textarea {
  height: 34px;
  line-height: 32px;
  width: 345px;
  border: 1px solid #595959;
  background: #ededed;
  padding: 0 10px;
  color: #3d2627;
}

.modal.modal-address .form .group textarea {
  padding: 10px;
  height: 100px;
  line-height: 20px;
}

.modal.modal-address .form .group > p {
  line-height: 34px;
  padding-left: 110px;
}

.modal.modal-address .btn-goupdate,
.modal.modal-address .btn-confirm,
.modal.modal-address .btn-goconfirm {
  display: inline-block;
  width: 194px;
  height: 57px;
  font: 0/0 a;
  background: url(../images/btn_confirm.png) center center no-repeat;
}

.modal.modal-address .btn-goupdate {
  background: url(../images/btn_update.png) center center no-repeat;
}

.modal.modal-record .modal-body {
  width: 632px;
  height: 502px;
  margin-left: -316px;
  margin-top: -251px;
  background: url(../images/modal_03.png) center center no-repeat;
}

.modal.modal-record .table-box {
  width: 521px;
  margin: 0 auto 30px;
  padding: 25px 50px;
}

.modal.modal-record .table-box .table-scoll {
  margin-top: 20px;
  height: 240px;
  overflow: auto;
}

.modal.modal-record .table-box table {
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: table;
}

.modal.modal-record .table-box table th, .modal.modal-record .table-box table td {
  width: 50%;
}

.modal.modal-record .table-box table th {
  height: 29px;
  line-height: 29px;
  font-size: 18px;
  background: url(../images/bg_09.png) center center no-repeat;
}

.modal.modal-record .table-box table td {
  height: 30px;
  font-size: 15px;
}

.modal.modal-rule .modal-body {
  width: 934px;
  height: 576px;
  margin-left: -467px;
  margin-top: -288px;
  background: url(../images/modal_02.png) center center no-repeat;
}

.modal.modal-vedio .modal-body {
  width: 930px;
  height: 600px;
  margin-left: -465px;
  margin-top: -300px;
  border: 1px solid #32346a;
  background: #fbfbfb;
}

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

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

.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -304px;
  margin-top: -192px;
  width: 608px;
  height: 384px;
  background: url(../images/modal_01.png) center center no-repeat;
  background-size: contain;
  animation: tc .5s;
  line-height: 26px;
  font-size: 16px;
}

.modal-body .modal-title {
  font-size: 28px;
  font-weight: normal;
  padding: 80px 55px 20px;
}

.modal-body .modal-cont {
  padding: 0 55px;
}

.modal-body .address-confirm .form {
  background: rgba(0, 0, 0, 0.14);
  padding: 20px;
}

.modal-body .address-confirm .form .group {
  margin-top: 0;
}

.modal-body .t-title {
  height: 47px;
  margin: 40px 0 20px;
  font: 0/0 a;
}

.modal-body .t-title.t-title-01 {
  background: url(../images/title_01.png) center center no-repeat;
}

.modal-body .t-title.t-title-02 {
  background: url(../images/title_02.png) center center no-repeat;
}

.modal-body .close {
  position: absolute;
  top: -10px;
  right: -60px;
  width: 60px;
  height: 60px;
  display: block;
  background: url(../images/btn_close.png) center center no-repeat;
  background-size: contain;
  -webkit-transition: transform .4s ease-in-out;
  -moz-transition: transform .4s ease-in-out;
  -ms-transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
}

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

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

.modal-body .cont-none {
  margin-top: 50px;
  font-size: 28px;
  color: #020202;
  text-align: center;
  letter-spacing: 2px;
}

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

.luck {
  position: relative;
  z-index: 1;
}

.luck > p {
  font-size: 17px;
  color: #f4b464;
  overflow: hidden;
  line-height: 41px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.luck > p a {
  float: right;
  display: inline-block;
  width: 121px;
  height: 41px;
  line-height: 39px;
  font-size: 17px;
  color: #f4b464;
  font-weight: 700;
  text-align: center;
  margin-left: 25px;
  background: url(../images/btn_04.png) center center no-repeat;
}

.luck > p a:hover {
  filter: brightness(1.1);
}

.luck .row {
  position: relative;
}

.luck .btn-modal {
  position: absolute;
  left: 340px;
  top: 10px;
}

.luck .btn-modal a {
  display: inline-block;
  width: 89px;
  height: 35px;
  line-height: 32px;
  background: url(../images/btnbg.png) center center no-repeat;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.luck .btn-modal a:hover {
  filter: brightness(1.2);
}

.award {
  float: left;
  position: relative;
  width: 619px;
  height: 429px;
}

.award li {
  position: absolute;
  width: 198px;
  height: 131px;
  padding: 23px 0 0;
  background: url(../images/bg_01.png) center center no-repeat;
  font-size: 16px;
  color: #040404;
  text-align: center;
}

.award li.active {
  color: #f5f5f5;
  background: url(../images/bg_01_active.png) center center no-repeat;
}

.award li.item-01 {
  top: 0;
  left: 0;
}

.award li.item-02 {
  top: 0;
  left: 209px;
}

.award li.item-03 {
  top: 0;
  left: 418px;
}

.award li.item-04 {
  top: 147px;
  left: 418px;
}

.award li.item-05 {
  top: 294px;
  left: 418px;
}

.award li.item-06 {
  top: 294px;
  left: 209px;
}

.award li.item-07 {
  top: 294px;
  left: 0;
}

.award li.item-08 {
  top: 147px;
  left: 0;
}

.award li .img {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border: 1px solid #9a9a9a;
  background: #d5d5d6;
  text-align: center;
}

.award li .img img {
  margin-top: 4px;
  width: 58px;
  height: 58px;
}

.award li p {
  margin-top: 8px;
}

.btn-begin {
  position: absolute;
  top: 147px;
  left: 209px;
  background: url(../images/bg_02.png) center center no-repeat;
  display: block;
  width: 198px;
  height: 131px;
  padding-top: 82px;
  text-align: center;
  font: 0/0 a;
}

.btn-begin span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  margin-top: 5px;
  color: #4c2713;
}

.btn-begin span i {
  font-style: normal;
}

.btn-begin:hover {
  filter: brightness(1.1);
}

.right-box {
  float: left;
  width: 389px;
  height: 432px;
  margin: -2px 0 0 5px;
  padding: 8px 17px 0 17px;
  background: url(../images/bg_04.png) center center no-repeat;
}

.right-box .right-tit {
  width: 217px;
  height: 72px;
  margin: -53px auto 15px;
  background: url(../images/bg_03.png) center center no-repeat;
  font: 0/0 a;
}

.right-box .table {
  width: 100%;
  height: auto;
  overflow: auto;
}

.right-box .table.only-th {
  height: auto;
}

.right-box .table thead {
  background: url(../images/bg_05.png) center center no-repeat;
}

.right-box .table thead tr th {
  width: 33.3333%;
}

.right-box .table th {
  color: #090909;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
}

.right-box .table tr td {
  font-size: 15px;
  color: #020202 !important;
}

.right-box .table tr td:first-child {
  background: none;
}

.table {
  width: 599px;
  height: 564px;
  margin: 0 auto;
}

.table table {
  width: 100%;
  display: table;
  text-align: center;
  color: #e2e2c7;
  font-size: 15vpx;
}

.table th {
  color: #e2e2c7;
  font-size: 18px;
  line-height: 36px;
}

.table th:nth-child(1) {
  width: 60px;
}

.table th:nth-child(2) {
  width: 165px;
}

.table th:nth-child(3) {
  width: 130px;
}

.table th:nth-child(4) {
  width: 165px;
}

.table td {
  line-height: 30px;
}

.table .name {
  display: block;
  height: 30px;
  overflow: hidden;
}

.table .num {
  color: #e2e2c7;
  font-size: 14px;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border: 1px solid #e2e2c7;
  border-radius: 50%;
}

.rule {
  padding: 0 80px 0 130px;
}

.rule li {
  position: relative;
}

.rule li:before {
  position: absolute;
  top: -5px;
  left: -60px;
  width: 43px;
  height: 45px;
  display: block;
  content: '';
}

.rule li:nth-child(1):before {
  background: url(../images/icon_01.png) center center no-repeat;
}

.rule li:nth-child(2):before {
  background: url(../images/icon_02.png) center center no-repeat;
}

.rule li:nth-child(3):before {
  background: url(../images/icon_03.png) center center no-repeat;
}

.rule .r-tit {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 5px 0;
}

.rule p {
  position: relative;
  font-size: 16px;
  line-height: 26px;
}

.rule p em {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 28px;
  line-height: 24px;
}

.text-red {
  color: #da2a2a !important;
}

.gift-box {
  font-size: 16px;
  color: #020202;
  margin: 15px 0;
}

.gift-box .gift-img {
  width: 102px;
  height: 105px;
  margin: 0 auto;
  background: url(../images/bg_07.png) center center no-repeat;
}

.down {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: inline-block;
  width: 338px;
  height: 82px;
  margin: 0 auto;
  background: url(../images/icon_scoll.png) center center no-repeat;
  background-size: contain !important;
  z-index: 100;
  font: 0/0 a;
  transition: all .3s;
  -moz-animation: mousetips 1s infinite linear;
  -webkit-animation: mousetips 1s infinite linear;
  -o-animation: mousetips 1s infinite linear;
  -ms-animation: mousetips 1s infinite linear;
  animation: mousetips 1s infinite linear;
}

.down.another {
  background: url(../images/icon_scoll_white.png) center center no-repeat;
}

.down.back {
  background: url(../images/icon_scoll_back.png) center center no-repeat;
}

@keyframes mousetips {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 15px;
  }
  100% {
    bottom: 10px;
  }
}

.limit-gift {
  position: relative;
  width: 882px;
  z-index: 1;
}

.limit-gift li {
  position: relative;
  float: left;
  width: 260px;
  height: 222px;
  margin: 0 17px;
  font: 0/0 a;
  background: url(../images/all_01.png) left top no-repeat;
}

.limit-gift li.limit-01 {
  background-position: 0 0;
}

.limit-gift li.limit-02 {
  background-position: -294px 0;
}

.limit-gift li.limit-03 {
  background-position: -588px 0;
}

.limit-gift li.limit-04 {
  background-position: 0 -222px;
}

.limit-gift li.limit-05 {
  background-position: -294px -222px;
}

.limit-gift li.limit-06 {
  background-position: -588px -222px;
}

.vedio-list {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  z-index: 1;
}

.vedio-list li {
  position: relative;
  float: left;
  text-align: center;
  margin: 0 10px;
  width: 296px;
  height: 150px;
}

.vedio-list li:nth-child(1) {
  background: url(../images/v_01.png) center center no-repeat;
}

.vedio-list li:nth-child(2) {
  background: url(../images/v_02.png) center center no-repeat;
}

.vedio-list li:nth-child(3) {
  background: url(../images/v_03.png) center center no-repeat;
}

.vedio-list li p {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 24px;
  font: 0/0 a;
}

.vedio-list li p.v-txt-01 {
  background: url(../images/txt_03.png) center center no-repeat;
}

.vedio-list li p.v-txt-02 {
  background: url(../images/txt_04.png) center center no-repeat;
}

.vedio-list li p.v-txt-03 {
  background: url(../images/txt_05.png) center center no-repeat;
}

.vedio-list li .vedio-box {
  height: 100%;
  display: block;
  background: url(../images/txt_01.png) center 90px no-repeat;
  font: 0/0 a;
}

.vedio-list li .vedio-box span {
  position: absolute;
  top: 40px;
  left: 15px;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 27px;
  height: 32px;
  background: url(../images/btn_vedio.png) center center no-repeat;
  -moz-animation: scalel 1s infinite linear;
  -webkit-animation: scalel 1s infinite linear;
  -o-animation: scalel 1s infinite linear;
  -ms-animation: scalel 1s infinite linear;
  animation: scalel 1s infinite linear;
}

.vedio-list li .vedio-box:hover {
  filter: brightness(1.4);
}

.vedio-list li .vedio-box:hover span {
  filter: brightness(2);
}

@keyframes scalel {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.txt-cont {
  position: relative;
  width: 948px;
  height: 229px;
  font: 0/0 a;
  background: url(../images/txt_06.png) center center no-repeat;
  z-index: 1;
}

.info {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 420px;
  height: 12px;
  background: url(../images/txt_07.png) center center no-repeat;
  z-index: 2;
  font: 0/0 a;
}

.info.another {
  background: url(../images/txt_07_white.png) center center no-repeat;
}

#scrollBox {
  height: 300px;
  width: 355px;
  margin: 15px auto 0;
  overflow: hidden;
}

#scrollBox #con1, #con2 {
  width: 100%;
  float: left;
}

#scrollBox li {
  text-align: center;
}

#scrollBox li span {
  float: left;
  width: 33.333%;
  color: #020202;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.float-link {
  position: fixed;
  top: 620px;
  left: 50px;
  display: block;
  width: 183px;
  height: 260px;
  background: url(../images/floatbg.png) no-repeat;
  background-size: contain !important;
  font: 0/0 a;
  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;
}

.float-link:hover {
  filter: brightness(1.1);
}

@keyframes gotop {
  0% {
    top: 615px;
  }
  100% {
    top: 620px;
  }
}

@media (max-width: 1440px) {
  .logo {
    top: 15px;
    left: 25px;
  }
  .logo a {
    width: 352px;
    height: 86px;
  }
  .sg {
    width: 726px !important;
    height: 301px !important;
  }
  .top-link {
    top: 10px;
    right: 0;
  }
  .down {
    width: 258px;
    height: 72px;
  }
  .sect-01 .vedio-list {
    top: 470px !important;
  }
  .sect-02 .container {
    padding: 60px 0 0 250px !important;
  }
  .sect-03 .container {
    padding: 180px 0 0 250px !important;
  }
  .sect-04 .container {
    padding: 200px 0 0 240px !important;
  }
  .people-num {
    width: 336px !important;
    height: 107px !important;
    font-size: 16px !important;
    padding: 48px 50px 0 0 !important;
    margin: 30px 0 0 -20px !important;
  }
  .people-num span {
    font-size: 30px !important;
  }
  .tit {
    left: 20px;
  }
  .tit h2 {
    width: 208px;
    height: 382px;
  }
  .tit.tit-03 {
    left: 40px;
  }
  .role {
    width: 910px;
    height: 820px;
    right: -125px;
  }
  .role.role-03 {
    width: 910px !important;
    height: 750px;
  }
  .float-link {
    left: 30px;
    top: 480px;
  }
  @keyframes gotop {
    0% {
      top: 475px;
    }
    100% {
      top: 480px;
    }
  }
}
