<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 文字为主 */
/** 混合指令 **/
/* 带图片、标题的模块样式 */
@import '../css/normalize.css';
@import '../css/iconfont.css';
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #BCBCBC;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #707070;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  padding-top: 88px;
  font-size: 14px;
  font-family: "Microsoft YaHei", "微软雅黑";
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text; /* 允许用户鼠标在页面上选中文字图片等 */
  -webkit-tap-highlight-color: transparent; /* webkit是苹果浏览器引擎，tap点击，heightlight背景高亮，color颜色，颜色用值调节 */
  color: #999;
  background-color: #F5F5F5;
}

ul {
  list-style: none;
}

a {
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}

.py8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px2 {
  padding-left: 20px;
  padding-right: 20px;
}

.white {
  background-color: #fff;
}

.wh-cen {
  max-width: 1200px;
  margin: 0 auto;
}

/* 清除浮动 */
.clear-fix {
  zoom: 1;
}
.clear-fix::after {
  clear: both;
  content: "";
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ov {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ov2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /*（行数）*/
  -webkit-box-orient: vertical;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}

.flex-cen {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-ver {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.transition {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.img100 {
  width: 100%;
}

.max-width1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.max-width2 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.more-btn {
  margin-top: 60px;
  text-align: center;
}
.more-btn a {
  display: inline-block;
  width: 156px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid #666;
  color: #666;
  font-size: 18px;
}
.more-btn a:hover {
  opacity: 0.8;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.nav-addr {
  height: 50px;
  line-height: 50px;
  background-color: #F5F5F5;
}
.nav-addr &gt; div {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-addr &gt; div a, .nav-addr &gt; div span {
  font-size: 16px;
  color: #333;
}
.nav-addr &gt; div a:hover {
  color: #345AFF;
}
.nav-addr &gt; div span {
  margin: 0 5px;
}
.nav-addr &gt; div span:last-child {
  margin: 0;
}</pre></body></html>