<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*Css Document*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  font: inherit;
  overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
q,
dl,
dt,
dd,
fieldset,
form,
legend,
caption,
tbody,
tfoot,
thead,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background: transparent;
  outline: none;
}

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

img {
  border: 0;
  max-width: 100%;
  height: 100%;
  width: 100%;
  -ms-interpolation-mode: bicubic;
}

/*确保图片显示宽度不会超过父容器*/
img.inherit {
  max-width: inherit;
  *width: auto;
}

table,
tr,
td {
  max-width: 100%;
  width: auto\9;
}

.video embed,
.video object,
.video iframe {
  width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.pointer{
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  font-size: 1em;
}
#sm-nave ul{
  margin: 0;
  padding: 0;
}
.na-mask{
  position: fixed;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

*:before,
*:after,
.sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul.ul,
ul.list,
ul.grid {
  margin: 0;
  padding: 0;
}

/*需要清除掉默认样式的ul  自己加上class名   list  li 竖着跑   grid li 横着跑*/
dl dt,
dl dd,
ul li,
ol li {
  list-style: none;
}

dl.grid dt,
ul.grid li {
  float: left;
}

.opacity-9 {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.opacity-8 {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.opacity-7 {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.opacity-6 {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.opacity-5 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.opacity-4 {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.opacity-3 {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.opacity-2 {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.opacity-1 {
  opacity: 0.1;
  filter: alpha(opacity=10);
}

.img-gray {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}

.img-circle {
  border-radius: 50%;
}

.img-blur {
  filter: url(blur.svg#blur);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);
}

.en-font {
  font-family: Arial, Verdana, sans-serif;
}

.coverBg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.left,
.fl {
  float: left;
}

.right,
.fr {
  float: right;
}

.hidden,
.r-hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
  left: 0;
  top: 0;
}

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

.clearfix:after,
ul.grid:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}

/*如果有浮动，给浮动元素父级元素加上clearfix类即可清除浮动*/
.clearfix,
ul.grid {
  zoom: 1;
}

.transition {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.transition-delay {
  -webkit-transition: all 0.4s ease-in 0.4s;
  -moz-transition: all 0.4s ease-in 0.4s;
  -o-transition: all 0.4s ease 0.4s;
  -ms-transition: all 0.4s ease-in 0.4s;
  transition: all 0.4s ease-in 0.4s;
}

h1,
.h1 {
  font-size: 33px;
}

h2,
.h2 {
  font-size: 27px;
}

h3,
.h3 {
  font-size: 23px;
}

h4,
.h4 {
  font-size: 17px;
}

h5,
.h5 {
  font-size: 13px;
}

h6,
.h6 {
  font-size: 12px;
}

p {
  margin: 10px 0;
}

@font-face {
  font-family: lighterFont;
  src: url('../font/FZLTCXHJW.ttf');
}

/*-----------------------------*/

body {
  color: #333333;
  /*整站默认颜色*/
  font-size: 12px;
  /*整站默认字体大小*/
  line-height: 1.5;
  font-family: Microsoft YaHei, Arial, Verdana, sans-serif;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 555px;
  /*PC端，中间主体宽度*/
}

.reset {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-weight: normal;
}

a {
  color: #333333;
  /*整站a连接默认颜色*/
  text-decoration: none;
}

a:hover,
a:focus {
  color: #3399FF;
  /*整站a连接移入默认颜色*/
  text-decoration: none;
}


* {
  font-size: 15px;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: transparent;
  background-image: url('../imgs/download.png');
  background-position: right bottom;
  background-repeat: repeat-x;
  color: #fff;
}

.logo {
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.navigate,
.smal-navigate {
  float: right;
}

.navigate ul li {
  float: left;
  height: 100%;
  line-height: 83px;
}

.navigate ul li a {
  display: inline-block;
  padding: 0 14px;
  height: 100%;
}

.smal-navigate {
  padding-top: 20px;
  padding-bottom: 10px;
  display: none;
}

.smal-navigate li {
  width: 25px;
  margin-bottom: 3px;
  background: white;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}


.navigate ul li a:hover {
  color: #666;
}

#sm-nave {
  position: absolute;
  top: 58px;
  background: #333;
  width: 100%;
  display: none;
}

#sm-nave.chux,
.cha.chux {
  display: block;
}

.cha {
  width: 20px;
  height: 20px;
  display: none;
  margin-bottom: 10px;
}

.smal-navigate ul {
  display: block;
}

.smal-navigate ul.chux {
  display: none;
}

#sm-nave li {
  padding: 10px 14px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

#sm-nave li:last-child {
  border-bottom: 0;
}

/*遮罩*/
.banner {
  position: relative;
}

.mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

#lunb {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: -10;
}

/*主内容*/
main {
  width: 100%;
}

main .content {
  width: 100%;
  padding-top: 200px;
}


.telescrope {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #DB6F6A;
  background-image: url("../imgs/10christmas_lable_10.png");
  background-position: center center;
  background-size: cover;
}

.font {
  padding: 0 15px;
  color: white;
}

.font h4 {
  font-size: 55px;
  font-weight: 100;
  font-family: 'Roboto';
}

strong {
  font-weight: 700;
  font-size: 55px;
}

.font h2 {
  font-size: 17px;
}

.pic {
  margin-top: 50px;
}


.pic a {
  display: inline-block;
  margin: 0 8px 12px;
}


footer a:hover {
  text-decoration: none;
  color: #fff;
}

footer {
  background-color: #242424;
  padding: 17px 0;
}

footer .lastA a {
  padding: 0 10px;
  color: #888;
  border-right: 1px solid #888;
}

footer .lastA a.lastA-1 {
  border-right: none;
}

footer .lastA a:hover {
  color: #db6f6a;
}

/*响应式*/
@media screen and (max-width: 767px) {
  .navigate {
    display: none
  }

  .font h4 {
    font-size: 40px
  }

  .smal-navigate {
    display: block
  }

  /*#sixth ul li h4{max-width: }*/
  .full-content {
    width: 1200px;
    margin: 0 auto;
  }
}

/* 手机 */
@media screen and (max-width: 1200px) {
  #second .pho-one .le {
    width: 75%;
  }

  #sixth ul li {
    max-width: 455px;
  }

  .full-content {
    width: 100%;
  }
}


@font-face {
  font-family: 'Roboto';
  src: url('../Raleway-Thin.ttf');
}

.txt_center {
  text-align: center;
}

.cf {
  color: #fff;
}

.c9 {
  color: #999;
}

.c6 {
  color: #666;
}

.c92 {
  color: #929292;
}

.w50 {
  width: 50%;
}

.mtb70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.ptb70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.f12{
  font-size: 12px;
}

.f14 {
  font-size: 14px;
  margin-top: 20px;
}

.f18 {
  font-size: 18px;
}

.f24 {
  font-size: 24px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt10 {
  margin-top: 10px;
}

.flex {
  display: flex;
}

.flex_start {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
}

.flex_end {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}

.flex_center {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

.flex_around {
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
}

.flex_between {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

.flex_warp {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex_items {
  align-items: center;
}

.self_start {
  align-self: flex-start;
}

.self_center {
  align-self: center;
}

.self_end {
  align-self: flex-end;
}

.flex_column {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.flex_shrink {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.show {
  display: block;
}

.w100 {
  width: 100%;
}

.pos {
  position: relative;
}

.bold {
  font-weight: bold;
}</pre></body></html>