style.css 17.1 KB
Newer Older
A
afc163 已提交
1 2 3 4 5 6 7 8 9
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  height: 100%;
}
A
afc163 已提交
10 11 12 13
body {
  font-family: Consolas, "Microsoft Yahei", "tahoma", "arial", "\5b8b\4f53";
  line-height: 1.5;
  color: #999;
A
afc163 已提交
14
  font-size: 14px;
A
afc163 已提交
15
}
A
afc163 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
*,
*:after,
*:before {
  box-sizing: border-box;
}
html,
body,
ul,
li,
p {
  margin: 0;
  padding: 0;
}
img,
input {
  display: block;
}
ul,
li {
  list-style: none;
}
a {
A
afc163 已提交
38
  color: #6EB4E0;
A
afc163 已提交
39 40 41 42 43 44 45 46 47
  text-decoration: none;
  transition: color .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: color .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover {
  color: #6EB4E0;
}
header {
  width: 100%;
A
afc163 已提交
48
  background: #fff;
A
afc163 已提交
49
  overflow: hidden;
A
afc163 已提交
50
  border-bottom: 1px solid #eee;
A
afc163 已提交
51
  font-size: 16px;
A
afc163 已提交
52 53 54 55 56 57 58 59 60
}
.fn-alpha-in {
  opacity: 1 !important;
}
.fn-alpha-out {
  opacity: 0 !important;
}
.logo {
  float: left;
A
afc163 已提交
61
  width: 179px;
A
afc163 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  height: 46px;
  margin: 20px 30px;
  transition: margin .3s cubic-bezier(0.075, 0.82, 0.165, 1), width .3s cubic-bezier(0.075, 0.82, 0.165, 1), height .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: margin .3s cubic-bezier(0.075, 0.82, 0.165, 1), width .3s cubic-bezier(0.075, 0.82, 0.165, 1), height .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.search {
  float: left;
  height: 22px;
  padding: 0px 30px;
  margin: 32px auto;
  border-left: 1px solid #EBEDEE;
  position: relative;
}
.search input[type="text"] {
  border: transparent;
  outline: none;
  width: 100px;
  height: 22px;
  padding: 0 0 0 20px;
A
afc163 已提交
81
  color: #999;
A
afc163 已提交
82
  -webkit-transition: padding .3s cubic-bezier(0.075, 0.82, 0.165, 1);
A
afc163 已提交
83 84
  transition: padding .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  font-size: 14px;
A
afc163 已提交
85 86 87 88 89 90 91 92 93 94
}
.search input::-webkit-input-placeholder {
  color: #CADCE3;
}
.search input::-moz-placeholder {
  color: #CADCE3;
}
.search input:-ms-input-placeholder {
  color: #CADCE3;
}
A
afc163 已提交
95
.search input:focus {
A
afc163 已提交
96
  padding: 0 20px 0 0;
A
afc163 已提交
97
  width: 150px;
A
afc163 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
}
.search button {
  position: absolute;
  outline: none;
  background: transparent;
  border: transparent;
  top: 5px;
  width: 15px;
  height: 15px;
  padding: 0;
  left: 30px;
  cursor: pointer;
  transition: left .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: left .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.search button:before,
.search button:after {
  content: "";
  display: block;
}
.search button:before {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 2px solid #CADCE3;
  background: #ffffff;
  position: absolute;
  top: 0
}
.search button:after {
  width: 2px;
  height: 6px;
  background: #CADCE3;
  position: absolute;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 10px;
  top: 8px;
}
A
afc163 已提交
137 138 139
.search input:focus ~ button {
  left: 170px;
}
A
afc163 已提交
140 141 142 143 144 145 146 147 148 149 150 151
.nav {
  width: 30%;
  height: 87px;
  line-height: 87px;
  float: right;
  font-size: 0.875em;
  position: relative;
}
.nav ul li {
  float: left;
  width: 16.66%;
  text-align: center;
A
afc163 已提交
152
  border-top: 3px solid transparent;
A
afc163 已提交
153
}
A
afc163 已提交
154 155 156
.nav ul li.current {
  border-top: 3px solid #71B5DE;
}
A
afc163 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
.nav ul li a {
  color: #728AA3;
  width: 100%;
  height: 100%;
  display: block;
  transition: color .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: color .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav ul li a:hover,
.nav ul li .hover {
  color: #6EB4E0;
}
.nav .bar {
  width: 16.66%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: #6EB4E0;
  transition: left .3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: left .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-phone-icon {
  display: none;
}
/*banner*/

.main-box {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.perspective {
  vertical-align: top;
  position: relative;
  perspective: 4000px;
  -webkit-perspective: 4000px;
}
.main {
  overflow: hidden;
  position: relative;
  min-height: calc(100% - 217px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.785, 0.135, 0.15, 0.86), height .5s ease-out;
  transition: transform .6s cubic-bezier(0.785, 0.135, 0.15, 0.86), height .5s ease-out;
}
.banner-box {
  width: 100%;
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: inherit;
  animation: yTopMatrix .3s ease-out;
  -webkit-animation: yTopMatrix .3s ease-out;
}
.banner-box .banner-img {
A
afc163 已提交
217
  background: url("https://t.alipayobjects.com/images/T1URpfXeXtXXXXXXXX.jpg") center no-repeat;
A
afc163 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
  height: 1062px;
  width: 2185px;
  opacity: 0;
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.banner-box #bannerAnim,
.load-main-box {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  z-index: 2;
  background: #EBEDEE;
}
.load-main-box {
  top: 0;
  background: rgba(100, 100, 100, 0.15);
  animation: alphaTo .3s ease-out;
  -webkit-animation: alphaTo .3s ease-out;
}
.load-box {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}
.load-box em {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(0deg, transparent 50%, #6EB4E0 50%);
  margin: 10px;
  position: relative;
  float: left;
  animation: RotaeX 1.5s infinite linear;
  -webkit-animation: RotaeX 1.5s infinite linear;
}
.load-box em:before,
.load-box em:after {
  content: "";
  display: block;
}
.load-box em:before {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  margin: 3px auto;
  position: relative;
  z-index: 1;
  background: #ffffff;
}
.load-box em:after {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 0;
  background: linear-gradient(90deg, #6EB4E0, transparent);
}
.load-out {
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  animation: scaleOut .5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scaleOut .5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.banner-box #bannerAnim .banner-line-absolute {
  position: absolute;
}
/*footer*/

footer {
A
afc163 已提交
300 301
  clear: both;
  border-top: 1px solid #eee;
A
afc163 已提交
302
  font-size: 16px;
A
afc163 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
}
footer ul {
  overflow: hidden;
  min-height: 130px;
  margin: 0 2%;
}
footer ul li {
  float: left;
  width: 25%;
  padding: 1% 2%;
}
footer ul li>h2 {
  font-size: 1em;
  color: #5C6B77;
  margin: 10px auto;
  font-weight: normal;
}
footer ul li>h3,
footer h3 {
  font-size: 0.75em;
  color: #5C6B77;
  font-weight: normal;
}
A
afc163 已提交
326
footer > h3 {
A
afc163 已提交
327 328 329 330 331 332
  text-align: center;
  font-size: .75em;
  display: none;
  margin: auto;
  padding: 10px 0;
}
A
afc163 已提交
333
footer ul li > a {
A
afc163 已提交
334 335 336 337
  font-size: 0.75em;
  display: block;
  margin: 5px auto;
}
A
afc163 已提交
338
.aside-container {
A
afc163 已提交
339 340 341 342 343
  width: 240px;
  float: left;
  height: 100%;
  background: #F9F9F9;
  position: absolute;
A
afc163 已提交
344
  padding-top: 30px;
A
afc163 已提交
345
}
A
afc163 已提交
346 347 348 349

.aside-container li a {
  line-height: 44px;
  height: 44px;
A
afc163 已提交
350
  display: block;
A
afc163 已提交
351 352 353 354
  padding-left: 60px;
  font-size: 14px;
  color: #5C6B76;
  border-left: 3px solid transparent;
A
afc163 已提交
355
}
A
afc163 已提交
356 357 358

.aside-container li a:hover {
  color: #6EB4E0;
A
afc163 已提交
359
}
A
afc163 已提交
360 361 362 363 364

.aside-container li.current > a {
  background: #fff;
  border-left: 3px solid #71B5DE;
  color: #71B5DE;
A
afc163 已提交
365
}
A
afc163 已提交
366 367

.main-container {
A
afc163 已提交
368 369 370 371
  width: calc(100% - 240px);
  float: right;
  padding: 30px 40px;
  -webkit-animation: xRightMatrix .5s ease-out .5s backwards;
A
afc163 已提交
372
  animation: xRightMatrix .5s ease-out .5s backwards;
A
afc163 已提交
373 374 375
  height: 100%;
}

A
afc163 已提交
376 377 378 379 380 381 382
.main-container-center {
  margin: 0 auto;
  padding: 30px 0;
  width: calc(100% - 80px);
  height: 100%;
}

A
afc163 已提交
383 384 385 386 387 388 389
.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  color: #5C6B77;
A
afc163 已提交
390 391
}

A
afc163 已提交
392 393 394 395 396 397 398 399 400 401
.markdown pre {
  padding: 8px 15px;
  border-radius: 6px;
  border: 1px solid #e9e9e9;
}

.markdown p {
  margin: 1em 0;
}

A
afc163 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .nav {
    width: 40%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .nav,
  .search {
    display: none;
  }
  .logo {
    margin: 10px;
    width: 110px;
    height: auto;
  }
  .nav-phone-icon {
    display: block;
    width: 49px;
    height: 49px;
    float: right;
    cursor: pointer;
    background: #BEC4C8;
  }
  .nav-phone-icon:before,
  .nav-phone-icon:after {
    content: "";
    display: block;
    border-radius: 1px;
    width: 15px;
    height: 2px;
    background: #EBEDEE;
    margin: 20px 0 0 18px;
  }
  .nav-phone-icon:after {
    margin-top: 5px;
  }
  .main {
    height: calc(100% - 86px);
  }
  footer ul {
    display: none;
  }
  footer h3 {
    display: block;
  }
}
/*********动画区域**********/
/*动画延时*/

.delay-mode {
  animation-fill-mode: backwards !important;
  -webkit-animation-fill-mode: backwards !important;
}
.no-delay {
  animation-delay: 0s !important;
  -webkit-animation-delay: 0s !important;
  -moz-animation-delay: 0s !important;
  -o-animation-delay: 0s !important;
}
.from-rotate-scale-m {
  animation: mRotateScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: mRotateScale .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-rotate-scale-l {
  animation: lRotateScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: lRotateScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-scale-l {
  animation: lScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: lScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-scale-m {
  animation: mScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: mScale .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-x-left {
  animation: xLeft .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: xLeft .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-x-right {
  animation: xRight .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: xRight .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-y-top {
  animation: yTop .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: yTop .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.from-y-bottom {
  animation: yBottom .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-animation: yBottom .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.to-img-blur {
  opacity: 0;
  animation: toImgBlur .5s ease-out;
  -webkit-animation: toImgBlur .5s ease-out;
  -moz-animation: toImgBlur .5s ease-out;
  -o-animation: toImgBlur .5s ease-out;
  -ms-animation: toImgBlur .5s ease-out;
}
.from-img-blur {
  opacity: 1 !important;
  animation: fromImgBlur .5s ease-out;
  -webkit-animation: fromImgBlur .5s ease-out;
  -moz-animation: fromImgBlur .5s ease-out;
  -o-animation: fromImgBlur .5s ease-out;
  -ms-animation: fromImgBlur .5s ease-out;
}
.alpha-out {
  opacity: 0;
  animation: alphaOut .5s ease-out;
  -webkit-animation: alphaOut .5s ease-out;
}
@keyframes fromImgBlur {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
@-webkit-keyframes fromImgBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes fromImgBlur {
  0% {
    opacity: 0;
    -moz-filter: blur(15px);
  }
  100% {
    opacity: 1;
    -moz-filter: blur(0px);
  }
}
@-ms-keyframes fromImgBlur {
  0% {
    opacity: 0;
    -ms-filter: blur(15px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
  }
}
@-o-keyframes fromImgBlur {
  0% {
    opacity: 0;
    -o-filter: blur(15px);
  }
  100% {
    opacity: 1;
    -o-filter: blur(0px);
  }
}
@keyframes toImgBlur {
  0% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(15px);
  }
}
@-webkit-keyframes toImgBlur {
  0% {
    opacity: 1;
    -webkit-filter: blur(0px);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(15px);
  }
}
@-moz-keyframes toImgBlur {
  0% {
    opacity: 1;
    -moz-filter: blur(0px);
  }
  100% {
    opacity: 0;
    -moz-filter: blur(15px);
  }
}
@-ms-keyframes toImgBlur {
  0% {
    opacity: 1;
    -ms-filter: blur(0px);
  }
  100% {
    opacity: 0;
    -ms-filter: blur(15px);
  }
}
@-o-keyframes toImgBlur {
  0% {
    opacity: 1;
    -o-filter: blur(0px);
  }
  100% {
    opacity: 0;
    -o-filter: blur(15px);
  }
}
@keyframes yBottom {
  0% {
    opacity: 0;
    margin-top: 100px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}
@-webkit-keyframes yBottom {
  0% {
    opacity: 0;
    margin-top: 100px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}
@keyframes yTop {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}
@-webkit-keyframes yTop {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}
@keyframes xRight {
  0% {
    opacity: 0;
    margin-left: 100px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
@-webkit-keyframes xRight {
  0% {
    opacity: 0;
    margin-left: 100px;
  }
  100% {
    opacity: 1;
    margin-right: 0px;
  }
}
@keyframes xLeft {
  0% {
    opacity: 0;
    /*transform:translateX(-50px);*/
    
    margin-left: -100px;
  }
  100% {
    opacity: 1;
    /*transform: translateX(-50px);*/
    
    margin-left: 0px;
  }
}
@-webkit-keyframes xLeft {
  0% {
    opacity: 0;
    margin-left: -100px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes mScale {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes mScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes lScale {
  0% {
    opacity: 0;
    transform: scale(1.5, 1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes lScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mRotateScale {
  0% {
    opacity: 0;
    transform: rotate(90deg) scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes mRotateScale {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg) scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1, 1);
  }
}
@keyframes lRotateScale {
  0% {
    opacity: 0;
    transform: rotate(90deg) scale(1.5, 1.5);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes lRotateScale {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg) scale(1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1, 1);
  }
}
@keyframes RotaeX {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes RotaeX {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 0);
  }
}
@-webkit-keyframes scaleOut {
  0% {
    -webkit-transform: scale(1, 1);
    ;
  }
  100% {
    -webkit-transform: scale(0, 0);
    ;
  }
}
@keyframes yTopMatrix {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes yTopMatrix {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
}
@keyframes yBottomMatrix {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes yBottomMatrix {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
}
@keyframes xLeftMatrix {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes xLeftMatrix {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
}
@keyframes xRightMatrix {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes xRightMatrix {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
}
@keyframes mainOut {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(90deg);
  }
}
@-webkit-keyframes mainOut {
  0% {
    -webkit-transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(90deg);
  }
}
@keyframes alphaTo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes alphaTo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes alphaOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes alphaOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
A
afc163 已提交
934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954

/* 首页有动画 */
.index-page .nav {
  -webkit-animation: yTopMatrix .5s ease-out .5s backwards;
  animation: yTopMatrix .5s ease-out .5s backwards; 
}

.index-page footer {
  -webkit-animation: yBottomMatrix .5s ease-out .7s backwards;
  animation: yBottomMatrix .5s ease-out .7s backwards;
}

.index-page .logo {
  -webkit-animation: xLeftMatrix .5s ease-out;
  animation: xLeftMatrix .5s ease-out;
}

.index-page .search {
  -webkit-animation: xRightMatrix .5s ease-out .3s backwards;
  animation: xRightMatrix .5s ease-out .3s backwards;
}