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

/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
  margin: 0;
  padding: 0;
}

/** 常规样式设置 **/
a {
  background-color: transparent;
}

main {
  display: block;
}

img {
  vertical-align: top;
}

textarea {
  resize: none;
  overflow: auto;
}

/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
  font: 12px/1 "Microsoft YaHEI", "Arial";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
small {
  font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */

/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}

/** 重置文本格式元素 **/
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/** 重置表单元素 **/
legend {
  color: #333;
}

/* for ie6 */
fieldset,
img {
  border: 0;
}

/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  vertical-align: middle;
  font-size: 100%;
}

/* 使得表单元素在 ie 下能继承字体大小 */
button,
input {
  border: none;
  outline: none;
  /*清除移动端默认的表单样式*/
  -webkit-appearance: none;
}

/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 去掉number输入框右边点击上下的小三角 */
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/*placeholder 文字颜色设置*/
input::-moz-placeholder,
input::-ms-input-placeholder,
input::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea::-ms-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bbb;
}

/* 去掉select的默认样式 */
select {
  -webkit-appearance: none;
}

/* 如果有输入内容IE会给输入框右边加一个大大的X */
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/*透明度*/
.transparent {
  filter: alpha(opacity=70);
  -khtml-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/* 清除浮动 */
.clearfix:after,
.clearFix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.clearfix,
.clearFix {
  *zoom: 1;
}

/* 清除伪类样式 */
:focus {
  outline: none;
}

:link,
:visited {
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

/* common css */
.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.w {
  width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Microsoft YaHEI", "Arial";
  font-weight: 500;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
  font-weight: normal;
  line-height: 1;
  color: #acb0ba;
}

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

@font-face {
  font-family: "iconfont"; /* Project id 3116543 */
  src: url("../font/iconfont.woff2?t=1644917124052") format("woff2"),
    url("../font/iconfont.woff?t=1644917124052") format("woff"),
    url("../font/iconfont.ttf?t=1644917124052") format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*头部*/
.header {
  padding: 0 30px 0 48px;
  width: 100%;
  /*min-width: 1300px;*/
  height: 64px;
  background: rgba(0, 0, 0, 0.08);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.header .logo {
  margin-top: 12px;
  display: block;
  width: 89px;
  height: 40px;
  background: url("../img/logo_t.png") no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
  position: relative;
}

.header .nav {
  margin-left: -5px;
}

.header .item {
  position: relative;
  float: left;
  margin-left: 40px;
}

.header .item:hover ul {
  opacity: 1;
  display: block;
}

.header .item:hover &gt; a .iconfont {
  transform: rotate(180deg);
}

.header .item ul {
  opacity: 0;
  display: none;
  position: absolute;
  top: 64px;
  left: -32px;
  z-index: 999;
  padding: 10px 0;
  min-width: 128px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  transition: all 0.3s;
}

.header .item li:hover {
  background-color: rgba(1, 122, 255, 0.0525);
}

.header .item li:hover &gt; a {
  color: #0115ff;
}

.header .item li.on a {
  color: #0115ff;
  background-color: rgba(1, 122, 255, 0.0525);
}

.header .item li a {
  padding: 12px;
  display: block;
  font-size: 14px;
  color: #191a24;
  text-align: center;
}

.header .item &gt; a {
  font-size: 14px;
  color: #fff;
  line-height: 64px;
  transition: all 0.3s;
}

.header .item:hover &gt; a {
  color: #fff;
}

.header .item li .child {
  display: none;
  position: absolute;
  left: 128px;
  top: 0;
  z-index: 99;
  width: 128px;
  height: 100%;
  padding: 10px 0;
  background-color: #fff;
}

.header .item li.on .child {
  display: block;
}

.header .item li:hover .child {
  display: block;
  opacity: 1;
}

.header .item li .child:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #f5f5f5;
}

.header .item li .child a {
  display: block;
  padding: 12px;
  font-size: 14px;
  color: #191a24;
  text-align: center;
  background-color: #fff;
}

.header .item li .child a:hover {
  color: #0115ff;
  background-color: rgba(1, 122, 255, 0.0525);
}

/*
.header .item:hover .liwai {
    display: block;
}

.header .liwai {
    display: none;
    position: absolute;
    left: 128px;
    top: 64px;
    z-index: 99;
    width: 128px;
    background-color: #fff;
}

.header .child {
    display: none;
    padding: 10px 0;
    background-color: #fff;
    width: 100%;
    height: 235px;
}

.header .child.show {
    display: block;
} */

.header .item.on &gt; a {
  color: #fff;
}

.header .search {
  position: relative;
  padding: 0 18px;
  width: 200px;
  height: 64px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 64px;
}

.header .search input {
  margin-left: 9px;
  display: block;
  float: left;
  width: 130px;
  height: 100%;
  color: #fff;
  font-size: 14px;
  background-color: transparent;
  vertical-align: middle;
}

.header .search input::-webkit-input-placeholder {
  color: #fff;
}

.header .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.header .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.header .search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.header .right {
  font-size: 14px;
  line-height: 64px;
}

.header .name {
  /* color: #017aff; */
  margin-right: 12px;
  font-size: 14px;
  color: #fff;
  line-height: 64px;
  transition: all 0.3s;
}

.header .login_out a{
  color: #fff;
}

.header .line {
  margin: 0 16px;
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #eaeaea;
  vertical-align: -2px;
}

.header .member a{
  color: #fff;
}

.header .user {
  display:block;
}
.header .user .name,.header .user a {
  color: #017aff!important;
}
.header .login a {
  margin-left: 12px;
  color: #fff;
  transition: all 0.3s;
}

.header .login a:hover {
  color: #fff;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.04);
}

.header.fixed .logo {
  background-image: url("../img/logo.png");
}

.header.fixed .item &gt; a {
  color: #191a24;
}

.header.fixed .item:hover &gt; a {
  color: #017aff;
}

.header.fixed .item.on &gt; a {
  color: #017aff;
}

.header.fixed .search {
  background-color: #f7f8fa;
  color: #ccc;
}

.header.fixed .search input {
  color: #333;
}

.header.fixed .search input::-webkit-input-placeholder {
  color: #98a3b7;
}

.header.fixed .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #98a3b7;
}

.header.fixed .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #98a3b7;
}

.header.fixed .search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #98a3b7;
}

.header.white {
  border-bottom: 1px solid #f2f3f5;
  background-color: #fff;
}

.header.white .logo {
  background-image: url("../img/logo.png");
}

.header.white .item &gt; a {
  color: #191a24;
}

.header.white .item &gt; a .iconfont {
  display: inline-block;
  margin-left: 5px;
  transition: all 0.3s;
}

.header.white .item:hover &gt; a {
  color: #017aff;
}

.header.white .item.on &gt; a {
  color: #017aff;
}

.header.white .search {
  background-color: #f7f8fa;
  color: #ccc;
}

.header.white .search input {
  color: #333;
}

.header.white .search input::-webkit-input-placeholder {
  color: #98a3b7;
}

.header.white .search input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #98a3b7;
}

.header.white .search input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #98a3b7;
}

.header.white .search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #98a3b7;
}

.header.white .name {
  /* color: #017aff; */
  margin-right: 12px;
  font-size: 14px;
  color: #98a3b7;
  line-height: 64px;
  transition: all 0.3s;
}

.header.white .login_out {
  color: #98a3b7;
}
.header.white .login_out a:hover {
  color: #017aff;
}

.header.white .line {
  margin: 0 16px;
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #98a3b7;
  vertical-align: -2px;
}

.header.white .member {
  color: #98a3b7;
}
.header.white .member a:hover {
  color: #017aff;
}

.header.white .user {
  display:block;
}

.header.white .login a {
  margin-left: 12px;
  color: #98a3b7;
  transition: all 0.3s;
}

.header.white .login a:hover {
  color: #017aff;
}

/*尾部*/
.footer {
  width: 100%;
  padding: 30px 0;
  background: #393c4a;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.footer .item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .item h2 {
  margin-bottom: 7px;
  font-size: 14px;
  color: #fff;
  line-height: 14px;
}

.footer ul {
  margin-left: -12px;
}

.footer li {
  float: left;
  margin: 13px 12px 0;
}

.footer li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 16px;
  transition: all 0.3s;
}

.footer li:hover a {
  color: #fff;
}

.footer .text {
  padding-top: 20px;
}

.footer .text p {
  margin-bottom: 8px;
  font-size: 12px;
  color: #949494;
  line-height: 22px;
}

.footer .text img {
  margin: 0 5px;
  width: 22px;
  height: 22px;
  vertical-align: -6px;
}

.footer .text a {
  color: #949494;
  transition: all 0.3s;
}

.footer .text a:hover {
  color: #fff;
}

/*右边栏*/
.right_fix {
  position: fixed;
  bottom: 210px;
  right: 10px;
  min-height: 205px;
}

.right_fix .item {
  position: relative;
  margin-top: 8px;
  padding: 10px 0;
  width: 44px;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  color: #191a24;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
}

.right_fix .iconfont {
  font-size: 24px;
}

.right_fix .concat p {
  margin-top: 8px;
  line-height: 20px;
}

.right_fix .item:hover {
  color: #fff;
  background-color: #017aff;
  box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.05);
}

.right_fix .item:hover .right {
  display: block;
  opacity: 1;
}

.right_fix .right {
  display: none;
  opacity: 0;
  position: absolute;
  right: 44px;
  top: 0;
  background-color: transparent;
  transition: all 0.3s;
}

.right_fix .right .n {
  margin-right: 10px;
  padding: 10px 0;
  background: #fdfdfd;
  box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.right_fix .li {
  width: 200px;
  padding: 12px 20px;
}

.right_fix .li .iconfont {
  margin-right: 14px;
  font-size: 18px;
  color: #191a24;
}

.right_fix .text {
  font-size: 14px;
  color: #191a24;
  line-height: 18px;
  text-align: left;
}

.right_fix .text a {
  display: block;
  margin-top: 8px;
  color: #017aff;
}

.right_fix .ewm {
  display: block;
  width: 130px;
}

.right_fix .follow .n {
  padding: 10px 10px 15px;
}

.right_fix .follow p {
  margin-top: 6px;
  font-size: 14px;
  color: #596178;
  line-height: 20px;
}

.return_top {
  display: none;
  transition: all 0.3s;
}

/*面包屑*/
.crumbs {
  padding: 24px 0;
  font-size: 14px;
}

.crumbs h1 {
  display: inline-block;
  color: #191a24;
}

.crumbs a,
.crumbs i {
  color: #98a3b7;
}

.crumbs a:hover {
  color: #017aff;
}

.search_list {
  display: none;
  position: absolute;
  top: 64px;
  right: 0;
  z-index: 111;
  width: 380px;
  height: 130px;
  background: #fff;
  box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.05);
}

.search_list .tit {
  padding: 16px 20px 11px;
  font-size: 12px;
  color: #999;
  line-height: 12px;
}

.search_list ul {
  padding: 0 15px;
}

.search_list li {
  float: left;
}

.search_list li a {
  display: block;
  margin: 5px;
  padding: 0 12px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  color: #8791ad;
  background: rgba(135, 145, 173, 0.06);
  border-radius: 2px;
  transition: all 0.3s;
}

.search_list li:hover a {
  background: #017aff;
  color: #fff;
}
#nologin {
  position: relative;
}
#nologin span,.nologin_tc{
  display: none;
  position: absolute;
  width: 406px;
  height: 250px;
  padding-top: 56px;
  padding-left: 30px;
  box-sizing: border-box;
  background: url(../img/login_bg.png) no-repeat bottom;
  background-size: contain;
  z-index: 99;
  top: 14px;
  left: -310px;
}
.nologin_tc {
  position: fixed;
  top: auto;
  left: auto;
  right: 0;
    bottom: 0;
    background: url(../img/login_bg2.png) no-repeat bottom;
  background-size: contain;
}
#nologin button,.nologin_tc button {
  display: block;
  width: 344px;
  height: 40px;
  margin-top: -4px;
  background: #087AFF;
  border-radius: 4px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.nologin_tc button {
  animation: mymove 1s infinite reverse;
  -webkit-animation: mymove 1s infinite reverse;
}
.nologin_tc i {
  width: 24px;
  height: 23px;
  background: url(../img/icon_close.png) no-repeat left;
  background-size: 24px;
  position: absolute;
  top: 33px;
  right: 8px;
  cursor: pointer;
}
#nologin h6,.nologin_tc h6 {
  color: #222;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
#nologin ul,.nologin_tc ul {
  margin-top: 20px;
  overflow: hidden;
}
#nologin ul li,.nologin_tc ul li {
  width: 188px;
  float: left;
  margin-bottom: 24px;
  text-indent: 26px;
  color: #222;
  font-size: 13px;
  line-height: 20px;
}
.dlys1 {
  background: url(../img/icon_1.png) no-repeat left;
  background-size: 20px;
}
.dlys2 {
  background: url(../img/icon_4.png) no-repeat left;
  background-size: 20px;
}
.dlys3 {
  background: url(../img/icon_2.png) no-repeat left;
  background-size: 20px;
}
.dlys4 {
  background: url(../img/icon_3.png) no-repeat left;
  background-size: 20px;
}
.nav_hot:after{
    content: '';
    position: absolute;
    background: url(../img/hot_icon.png);
    width: 21px;
    height: 13px;
    background-size: contain;
    top: 13px;
}

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

  50% {
      transform: scale(1.1);
  }
}

@-webkit-keyframes mymove {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.1);
  }
}
.huodong {
  display: none;
  position: fixed;
  right: 81px;
  bottom: 75px;
  cursor: pointer;
  z-index: 999;
}
.huodong img {
  width: 82px;
  cursor: pointer;
}
.huodong i{
  position: absolute;
  right: -26px;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(../img/rb_ad_close.png) no-repeat;
  background-size: contain;
  cursor: pointer;
}

.login_pop3 {
  position: relative;
  width: 927px;
  height: 440px;
  background: url("../img/p_bg.png") no-repeat;
  background-size: contain;
}
.login_pop3 a {
  position: absolute;
  width: 140px;
  height: 40px;
  bottom: 26px;
  left: 434px;
  cursor: pointer;
}
.dl_pop {
  background: transparent!important;
  box-shadow: none!important;
}
.login_pop3 span {
  position: absolute;
  width: 60px;
  height: 20px;
  bottom: 37px;
  left: 336px;
  cursor: pointer;
}</pre></body></html>