﻿@charset "UTF-8";
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 给body添加通用的样式 */
body {
  font-family: "MicrosoftYaHei", "PingFangSC-Regular", "PingFang SC", "Arial", "sans-serif";
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
  background-color: #fff;
  font-weight: 400;
}

html {
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  body {
    zoom: 0.9375;
  }
}

/*去除边框*/
fieldset,
img,
input,
button,
textarea {
  border: none;
  /*去除的蓝色小边框*/
  outline-style: none;
}

/*禁止表单域缩放*/
textarea {
  resize: none;
}

a {
  text-decoration: none;
  color: #404040;
  /* 移动端a标签点击会高亮，设置颜色为透明的 */
  -webkit-tap-highlight-color: transparent;
}

/* 图片自适应 */
img {
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

/* 把所有的标题的样式全部重置了 */
/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
} */
/* 字体图标  i:icon   bootstrap*/
em,
i {
  font-style: normal;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.center,
.model.large.center {
  width: 1280px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.f-d_c {
  flex-direction: column;
}

.j-c_c {
  justify-content: center;
}

.j-c_s-b {
  justify-content: space-between;
}

.a-i_c {
  align-items: center;
}

.flex_1 {
  flex: 1;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p_r {
  position: relative;
}

.p_a {
  position: absolute;
}

.ui-mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  z-index: 555;
}

.ui-mask.show {
  display: flex;
}

[v-cloak] {
  display: none;
}

.touch {
  cursor: pointer;
}

/* header */
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo a {
  display: flex;
  align-items: center;
}

header .logo .logo_name {
  height: 50px;
  margin-right: 30px;
}

header .logo .logo_name img {
  height: 100%;
}

header .logo .temp_logo {
  display: inline-block;
  position: relative;
}

header .logo .temp_logo img {
  height: 70px;
}

header .logo .temp_logo:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  height: 50px;
  width: 1px;
  background: #999;
}

header .search .search-form {
  display: flex;
  position: relative;
  width: 394px;
  /* width: 486px; */
  height: 36px;
  border-radius: 18px;
  border: 1px solid #dcdcdc;
}

header .search .search-form .index-select-type {
  width: 90px;
  height: 100%;
  border: 0;
  /* padding-left: 22px; */
  /* padding-bottom: 8px; */
  cursor: pointer;
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: #747474;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .search .search-form .index-select-type:after {
  width: 10px;
  height: 6px;
  content: "";
  margin-left: 4px;
  background: url(../images/search-arrow.svg) no-repeat;
  background-size: 10px 6px;
  pointer-events: none;
}

header .search .search-form .index-select-box {
  width: 124px;
  background: #ffffff;
  box-shadow: 0px 1px 5px 0px rgba(169, 169, 169, 0.45);
  border-radius: 3px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 104%;
  z-index: 333;
  background: #fff;
  display: none;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}

header .search .search-form .index-select-box span {
  display: block;
  box-sizing: border-box;
  width: 124px;
  padding: 8px 15px;
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: none;
  outline: none;
  /*很关键：将默认的select选择框样式清除*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

header .search .search-form .index-select-box span:hover {
  background: #f4f4f4;
}

header .search .search-form input.search-text {
  height: 100%;
  padding: 0 9px;
  font-size: 16px;
  color: #333;
  line-height: 34px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

header .search .search-form input.search-submit {
  width: 90px;
  height: 100%;
  background: #387ffc;
  border-radius: 0px 18px 18px 0px;
  /* background: url(../images/search-icon.png) center no-repeat #387FFC; */
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
}

/* header .search .search-form:after {
  position: absolute;
  width: 10px;
  height: 6px;
  content: '';
  left: 70px;
  top: 14px;
  background: url(../images/search-arrow.svg) no-repeat;
  background-size: 10px 6px;
  pointer-events: none;
  /* border-width: 4px;
  border-style: solid;
  border-color: #404040 transparent transparent transparent; 
} */
header .search .hot-search {
  height: 18px;
  font-size: 13px;
  color: #747474;
  line-height: 15px;
  margin-top: 6px;
  margin-left: 20px;
}

header .search .hot-search ul {
  display: flex;
}

header .search .hot-search ul li {
  margin-right: 14px;
  /* line-height: 10px; */
}

header .search .hot-search ul li a {
  color: #747474;
}

header .search .search-suggest {
  width: 100%;
  position: absolute;
  top: 35px;
  border: 1px solid #387ffc;
  background: #fff;
  z-index: 100;
  display: none;
}

header .search .search-suggest ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .search .search-suggest ul li {
  padding: 3px;
  font-size: 17px;
  line-height: 25px;
  cursor: pointer;
}

header .search .search-suggest ul li:hover {
  background-color: #e5e5e5;
}

header .search .search-suggest ul li a {
  display: block;
}

header .info {
  font-size: 12px;
  margin-left: 50px;
}

header .info dl {
  display: flex;
  align-items: center;
}

header .info dl dd {
  position: relative;
  /* padding-right: 10px; */
  margin-right: 33px;
  line-height: 40px;
  z-index: 444;
}

header .info dl dd .cicon {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}

header .info dl dd .ctext {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #747474;
  line-height: 17px;
}

header .info dl dd .service-box {
  position: absolute;
  background: #fff;
  width: 80px;
  height: 126px;
  padding: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 7px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50px;
  left: 50%;
  display: none;
  text-align: center;
}

header .info dl dd .service-box a {
  line-height: 30px;
}

header .info dl dd .service-box-show {
  display: block;
}

header .info dl dd .service-box-show:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

header .info dl .follow img {
  position: absolute;
  bottom: -126px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 126px;
}

header .info dl .follow .follow-box {
  display: none;
}

header .info dl .login {
  margin-right: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
}

header .info dl .login .avatar {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
}

header .info dl .login .logout-box {
  width: 240px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0px;
  display: none;
}

header .info dl .login .logout-box .top {
  height: 70px;
  background: url(../images/login-bg.png) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 30px 10px 0;
  font-size: 12px;
  line-height: 30px;
}

header .info dl .login .logout-box .top .logout {
  color: #fff;
  background: #7d99cc;
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
}

header .info dl .login .logout-box .icon {
  background-color: #fff;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .info dl .login .logout-box .icon ul {
  display: flex;
  justify-content: space-around;
}

header .info dl .login .logout-box .icon ul li {
  text-align: center;
}

header .info dl .login .logout-box .icon ul li a {
  color: #888;
}

header .info dl .login .logout-box .icon ul li .icon-item {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

header .info dl .login .logout-box .icon li:nth-child(1) .icon-item {
  background: url(../images/icon1.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(2) .icon-item {
  background: url(../images/icon5.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(3) .icon-item {
  background: url(../images/icon7.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(1):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(1):hover .icon-item {
  background: url(../images/icon2.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(2):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(2):hover .icon-item {
  background: url(../images/icon6.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(3):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(3):hover .icon-item {
  background: url(../images/icon8.png) no-repeat;
}

header .info dl .login .logged-box {
  width: 240px;
  height: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0px;
  overflow: hidden;
}

header .info dl .login .logged-box .top {
  height: 70px;
  background: url(../images/login-bg.png) no-repeat;
  background-size: cover;
  padding: 30px 10px 0;
  font-size: 16px;
  line-height: 30px;
}

header .info dl .login .logged-box .icon {
  background-color: #fff;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .info dl .login .logged-box .icon .notice {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 20px;
}

header .info dl .login .logged-box .icon ul {
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
}

header .info dl .login .logged-box .icon ul li {
  text-align: center;
}

header .info dl .login .logged-box .icon .icon-item {
  width: 35px;
  height: 35px;
  margin: 0 auto;
}

header .info dl .login .logged-box .icon li:nth-child(1) .icon-item {
  background: url(../images/wx1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(2) .icon-item {
  background: url(../images/dn1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(3) .icon-item {
  background: url(../images/qq1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(4) .icon-item {
  background: url(../images/sj1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(5) .icon-item {
  background: url(../images/wb1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(1):hover .icon-item {
  background: url(../images/wx2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(2):hover .icon-item {
  background: url(../images/dn2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(3):hover .icon-item {
  background: url(../images/qq2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(4):hover .icon-item {
  background: url(../images/sj2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(5):hover .icon-item {
  background: url(../images/wb2.png) no-repeat;
}

/* 新版登录右上角 */
header .info dl .login .infobox {
  display: flex;
  flex-direction: column;
  margin-left: 16px;
}

header .info dl .login .infobox .title {
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 9px;
}

header .info dl .login .infobox .title2 {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
}

header .info dl .login .infobox .nickname {
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 22px;
  margin-top: 4px;
}

header .info dl .login .infobox .btn {
  width: 56px;
  height: 25px;
  background: #649cf0;
  box-shadow: 0px 3px 5px 0px rgba(100, 156, 240, 0.23);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  margin-right: 6px;
}

header .info dl .login .infobox .gift {
  width: 104px;
  height: 27px;
}

header .info dl .login .loginbox1 {
  background: url(../images/login-header-box1.png) no-repeat 0 0/100% 100%;
  width: 280px;
  height: 308px;
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -150px;
  top: 100%;
  transform: translateY(-13px);
  padding: 48px 0;
}

header .info dl .login:hover .loginbox1 {
  display: flex;
}

header .info dl .login .loginbox1 .title {
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #707070;
  line-height: 20px;
}

header .info dl .login .loginbox1 .tips {
  width: 195px;
  padding: 20px 9px;
  margin-top: 16px;
  border-top: 1px dashed #e4e4e4;
  display: flex;
  flex-direction: column;
}

header .info dl .login .loginbox1 .tips .item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 22px;
}

header .info dl .login .loginbox1 .tips .item + .item {
  margin-top: 16px;
}

header .info dl .login .loginbox1 .tips .item img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

header .info dl .login .loginbox1 .btn {
  width: 188px;
  height: 40px;
  background: #387ffc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #ffffff;
}

header .info dl .login .loginbox2 {
  background: url(../images/login-header-box2.png) no-repeat 0 0/100% 100%;
  width: 444px;
  height: 431px;
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -239px;
  top: 100%;
  transform: translateY(-13px);
  padding: 24px 21px;
}

header .info dl .login:hover .loginbox2 {
  display: flex;
}

header .info dl .login .loginbox2 .user {
  padding: 24px 21px;
  border-bottom: 1px solid #dddddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .info dl .login .loginbox2 .user .avatar {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  margin-right: 16px;
}

header .info dl .login .loginbox2 .user .nickname {
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 8px;
}

header .info dl .login .loginbox2 .user .uid {
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  display: flex;
  align-items: center;
}

header .info dl .login .loginbox2 .user .uid img {
  width: 9px;
  height: 14px;
  margin-right: 10px;
}

header .info dl .login .loginbox2 .user .teacher {
  margin-left: 16px;
  flex-shrink: 0;
  width: 117px;
  height: 33px;
  background: #ffffff;
  box-shadow: 0 6px 6px 0 rgba(169, 169, 169, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #4182f6;
}

header .info dl .login .loginbox2 .icons {
  padding: 27px 31px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header .info dl .login .loginbox2 .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
}

header .info dl .login .loginbox2 .icons .icon img {
  width: 31px;
  height: 31px;
  margin-bottom: 9px;
}

header .info dl .login .loginbox2 .login-navs {
  display: flex;
  flex-direction: column;
  padding: 0 31px;
  margin-top: 16px;
  width: 100%;
}

header .info dl .login .loginbox2 .login-navs .login-nav {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  cursor: pointer;
}

header .info dl .login .loginbox2 .login-navs .login-nav + .login-nav {
  border-top: 1px dashed #dddddd;
}

header .info dl .login .loginbox2 .login-navs .login-nav span:last-child {
  color: #387ffc;
}

/* nav */
.nav.center {
  background: #387ffc;
  height: 46px;
  /* border-radius: 6px; */
  width: 100%;
}

.nav.center .nav-list {
  position: relative;
  display: flex;
  /* padding-left: 15px; */
  /* padding: 0 25px 0 40px; */
}

.nav.center .nav-item {
  /* padding: 0 25px; */
  flex: 1;
  height: 46px;
  font-size: 16px;
  color: #ffffff;
  /* position: relative; */
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  flex-shrink: 0;
}

.nav.center .nav-item:hover {
  background: #2262dd;
}

.nav.center .nav-item > a {
  display: block;
  color: #ffffff;
  line-height: 46px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.nav.center .nav-item .nav-options a {
  display: block;
  color: #ffffff;
  line-height: 46px;
  text-decoration: none;
}

.nav.center .nav-item .nav-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 137px;
  padding: 0;
  box-shadow: rgba(2, 2, 2, 0.1) 0 0 9px;
  z-index: 99;
  display: none;
}

.nav.center .nav-item ul {
  display: inline-block;
}

.nav.center .nav-item ul li {
  font-size: 15px;
  color: #333333;
  padding: 5px 0;
}

.nav.center .nav-item ul li a {
  line-height: 26px;
  color: #333;
}

.nav.center .nav-item.nav-menu > a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: solid 4px transparent;
  border-top: solid 4px #fff;
  border-right: solid 4px transparent;
  margin: 0 0 0 5px;
}

.nav.center .nav-item.nav-menu > a:hover:after {
  transform: rotate(180deg) translateY(50%);
}

.nav.center .nav-item.nav-menu2 {
  position: static;
}

.nav.center .nav-item.nav-menu2 .nav-box {
  width: auto;
  padding: 9px 20px 11px 32px;
  left: 0;
  transform: translateX(0);
}

.nav.center .nav-item.nav-menu2 .nav-box dl {
  line-height: 22px;
  text-align: left;
  padding-top: 10px;
  overflow: hidden;
}

.nav.center .nav-item.nav-menu2 .nav-box dt {
  float: left;
  width: 50px;
  padding-right: 7px;
  font-size: 16px;
  color: #333333;
  font-weight: 600;
}

.nav.center .nav-item.nav-menu2 .nav-box dd {
  float: left;
  max-width: 576px;
}

.nav.center .nav-item.nav-menu2 .nav-box dd i:last-child {
  display: none;
}

.nav.center .nav-item.nav-menu2 .nav-box a {
  float: left;
  font-size: 14px;
  color: #777777;
  height: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}

.nav.center .nav-item.nav-menu2 .nav-box a:hover {
  text-decoration: underline;
}

.nav.center .nav-item.nav-menu2 .nav-box i {
  float: left;
  width: 19px;
  height: 14px;
  position: relative;
  margin-bottom: 10px;
}

.nav.center .nav-item.nav-menu2 .nav-box i:before {
  content: "";
  position: absolute;
  background: #777777;
  width: 1px;
  height: 14px;
  top: 5px;
  left: 9px;
}

.nav.center .nav-item.nav-menu2 .nav-box.another-box dt {
  width: 80px;
}

.nav.center .active {
  background: rgba(0, 0, 0, 0.2);
}

.nav.center .show {
  display: block;
}

/* footer */
.footer {
  background: #f4f4f4;
  padding: 20px 0 32px;
  color: rgba(34, 34, 34, 0.6);
}

.footer a {
  font-size: 12px;
  color: rgba(34, 34, 34, 0.6);
}

.footer a:hover {
  color: rgba(34, 34, 34, 0.6);
  text-decoration: none;
}

.footer .friendship {
  border-bottom: 1px solid #eeeeee;
}

.footer .friendship .friend {
  position: relative;
  padding: 14px 60px 25px 12px;
}

.footer .friendship .friend ul {
  display: inline-block;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  max-height: 27px;
}

.footer .friendship .friend ul li {
  float: left;
  font-size: 12px;
  color: #666666;
  line-height: 24px;
  padding-right: 17px;
}

.footer .friendship .friend ul li a {
  color: #666666;
  text-decoration: none;
}

.footer .friendship .friend .friendship-toggle {
  position: absolute;
  font-size: 12px;
  cursor: pointer;
  color: #999;
  top: 17px;
  right: 0;
}

.footer .friendship .friend .friendship-toggle i {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../images/arrow_down2_eea7e54.png);
  /*background-image: url(//www.lgstatic.com/lg-www-fed/index/modules/friendlink/img/arrow_down2_eea7e54.png);*/
  background-repeat: no-repeat;
  background-position: 0 3px;
  background-size: 12px 6px;
}

.footer .friendship .active ul {
  overflow: hidden;
  max-height: 120px;
}

.footer .friendship .active .friendship-toggle i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.footer .footer-copy {
  text-align: center;
  margin: 20px 0 12px;
  font-size: 12px;
}

.footer .footer-bei {
  text-align: center;
}

.footer .footer-bei ul {
  display: flex;
  justify-content: center;
}

.footer .footer-bei ul li {
  margin: 0 6px;
  height: 37px;
  width: 97px;
}

.footer .footer-bei ul img {
  display: block;
  width: 100%;
  height: 100%;
}

.img-block {
  width: 100%;
  height: 100%;
  display: block;
}

/* 更多 */
.more a {
  font-size: 16px;
  color: #999;
  padding-right: 25px;
  position: relative;
  font-weight: normal;
}

.more a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19px;
  height: 16px;
  background: url(../images/index-more-grey.png) 0 0 no-repeat;
}

.more:hover a {
  color: #00c250;
  text-decoration: none;
}

.more:hover a:after {
  background: url(../images/index-more-green.png) 0 0 no-repeat;
}

.fixbox {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 333;
  bottom: 72px;
  right: 20px;
}

.fixbox-items {
  width: 50px;
  /* height: 54px; */
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixbox-items .item {
  width: 100%;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #747474;
  line-height: 17px;
  position: relative;
}

.fixbox-items .item .code {
  width: 150px;
  height: 150px;
  max-width: initial;
  background: #ffffff;
  box-shadow: 0px 0px 6px 0px #dfdfdf;
  border: 10px solid #fff;
  position: absolute;
  right: 51px;
  top: 50%;
  transform: translate(0, -50%);
  box-sizing: border-box;
  display: none;
}

.fixbox-newgift a {
  display: none;
  width: 260px;
  height: 281px;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translate(0, -10%);
  box-sizing: border-box;
}

.fixbox-newgift:hover a {
  display: block;
}

.fixbox-newgift .newgift-text1 {
  font-size: 16px;
  font-weight: bold;
  color: #f5302d;
  line-height: 22px;
  position: absolute;
  left: 50px;
  top: 178px;
}

.fixbox-newgift .newgift-text2 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  line-height: 22px;
  letter-spacing: 1px;
  text-shadow: 0px 2px 1px #ff7c14;
  position: absolute;
  left: 105px;
  top: 228px;
}

.fix-mini {
  width: 369px;
  height: 208px;
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translate(0, -50%);
  box-sizing: border-box;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 39px 0 30px;
}

.fix-app {
  width: 274px;
  height: 281px;
  position: absolute;
  right: 43px;
  top: 50%;
  transform: translate(0, -50%);
  display: none;
}

.fix-mini .mini-code {
  /* width: 126px; */
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}

.fixbox-items .fix-mini .mini-code img {
  width: 126px;
  height: 126px;
}

.fixbox-items .item .img {
  width: 26px;
  height: 26px;
}

.fixbox-items .item .img.hover {
  display: none;
}

.fixbox-items + .fixbox-items {
  margin-top: 12px;
}

.fixbox-items .item.hover:hover {
  color: #357bf6;
}

.fixbox-items .item.hover:hover .img {
  display: none;
}

.fixbox-items .item.hover:hover .img.hover,
.fixbox-items .item.hover:hover .code {
  display: block;
}

.fixbox-items .item.hover:hover .fix-mini,
.fixbox-items .item.hover:hover .fix-app {
  display: flex;
}

.fixbox-items .item.important {
  color: #fb560a;
}

.header-video {
  width: 106px;
  height: 32px;
  margin-top: 7px;
  vertical-align: top;
  margin: auto 10px auto 5px;
}

.nav-menu-btn {
  width: 18px;
  height: 14px;
}

.content-left {
  width: 960px;
}

.content-right {
  width: 300px;
}

.m-t_20 {
  margin-top: 20px;
}

.m-t_10 {
  margin-top: 10px;
}

.wordbox {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wordbox1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 改版 */
.model {
  display: flex;
  flex-direction: column;
}

.model-title {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  position: relative;
  line-height: 40px;
  flex-shrink: 0;
}

.model-title .ml-option {
  display: flex;
}

.model-title .ml-option h2 {
  display: inline-block;
  height: 40px;
  /* line-height: 40px; */
  padding: 0 20px;
  font-size: 18px;
  /* cursor: pointer; */
  font-weight: 700;
}

.model.large {
  width: 960px;
  /* min-height: 500px; */
  margin-bottom: 20px;
}

.model.large .model-title {
  height: 50px;
  line-height: 50px;
}

.model.large .model-title .ml-option h2 {
  height: 50px;
  font-size: 24px;
}

.model-title .ml-option h2.active {
  color: #317afc;
  position: relative;
}

.model-title .ml-option h2.active:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #317afc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.model-title .model-nav dl {
  display: flex;
  /* position: absolute;
  right: 0;
  top: 0; */
}

.teacher-box {
  width: 300px;
  height: 200px;
  background: #ffffff;
  border: 1px solid #c3d8ff;
  border-left: 2px solid #387ffc;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
  display: block;
}

.teacher-box:hover {
  text-decoration: none;
}

.teacher-infos {
  font-size: 14px;
  color: #333333;
  padding-bottom: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #eeeeee;
}

.teacher-infos .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
}

.teacher-infos span {
  color: #387ffc;
  /* margin: 0 8px; */
}

.teacher-infos .title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.teacher-infos .count {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.teacher-infos .count + .count {
  margin-left: 8px;
}

.teacher-infos .ask-btn {
  width: 74px;
  height: 22px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e63f53;
  font-size: 12px;
  color: #e63f53;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
}

.teacher-desc {
  height: 82px;
  font-size: 14px;
  color: #818181;
  line-height: 20px;
  margin-top: 8px;
}

.teacher-tags {
  display: flex;
  margin-top: 10px;
}

.teacher-tags a,
.teacher-tags span {
  padding: 2px 6px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #387ffc;
  font-size: 12px;
  color: #387ffc;
  line-height: 17px;
}

.teacher-tags a + a {
  margin-left: 10px;
}

.small .model-title .model-nav dl {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.model-title .model-nav {
  display: flex;
  position: relative;
}

.model-title .model-nav dl.active {
  max-width: 470px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #ffffff;
  z-index: 666;
}

.model-title .model-nav dl .nav-more ~ dd {
  display: none;
}

.model-title .model-nav dl.active .nav-more ~ dd {
  display: block;
}

.model-title .model-nav dl dd {
  padding: 0 10px;
  font-size: 14px;
  color: #818181;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.model.large .model-title .model-nav dl dd {
  font-size: 16px;
}

.model-title .model-nav dl dd a {
  color: #818181;
}

.small .model-title .model-nav dl dd a {
  font-size: 14px;
}

.model-title .model-nav dl dd a:hover {
  text-decoration: none;
}

/* .model-title .model-nav dl dd:nth-child(n+2):before {
  content: "";
  display: block;
  background: #d3d3d3;
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
} */
.model-content,
.model-content dl {
  width: 100%;
  /* height: 100%; */
}

.model-content dl {
  display: flex;
  flex-direction: column;
}

.model .model-content dl dt {
  margin-bottom: 10px;
  margin-top: 10px;
  height: 24px;
}

.model .model-content dl dt a {
  font-size: 18px;
  font-weight: 600;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model .model-content dl dt a:hover,
.model-imgbox span:hover {
  color: #387ffc;
}

.model .model-content dl dd {
  /* line-height: 32px; */
  /* margin: 16px 0; */
  /* height: 32px; */
  /* flex: 1; */
  height: 22px;
  line-height: 22px;
  /* display: flex;
  align-items: center; */
}

.model .model-content dl dd + dd {
  margin-top: 10px;
}

.model .model-content dl dd a {
  display: block;
  font-size: 16px;
  position: relative;
  /* padding-left: 12px; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .model dl dd a:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #bbb;
} */
.model .model-content dl dd:last-child {
  margin-bottom: 0;
}

li a:hover,
dd a:hover {
  color: #387ffc;
  text-decoration: underline;
}

.model.small {
  width: 470px;
  max-width: 100%;
  /* height: 100%; */
}

.model.small .model-title {
  height: 40px;
  line-height: 40px;
  border-bottom: none;
}

.model.small .model-title .ml-option h2 {
  height: 40px;
  font-size: 16px;
}

.model.small .model-title .ml-option h2.active:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #317afc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ad-bot {
  width: 960px;
  /* height: 90px; */
  overflow: hidden;
  margin-bottom: 20px;
}

.zhuanyewenda-box {
  width: 300px;
  height: 210px;
  border-radius: 6px;
  background: #e2e2e2;
  box-shadow: 0px 1px 9px 0px rgba(164, 173, 180, 0.2);
  overflow: hidden;
  margin-top: 10px;
}

.zhuanyewenda-box video,
.zhuanyewenda-box img {
  width: 300px;
  height: 170px;
  object-fit: cover;
}

.zhuanyewenda-box span {
  height: 40px;
  line-height: 40px;
  background: #fff;
  font-size: 16px;
  color: #333333;
  -webkit-line-clamp: 1;
  padding: 0 10px;
}

.topic-box {
  width: 300px;
  /* height: 196px; */
  border-radius: 6px;
  background: #e2e2e2;
  box-shadow: 0px 1px 9px 0px rgba(164, 173, 180, 0.2);
  overflow: hidden;
  margin-top: 10px;
}

.topic-box img {
  width: 300px;
  /* height: 150px; */
  object-fit: cover;
}

.topic-box span {
  height: 46px;
  line-height: 46px;
  background: #fff;
  font-size: 16px;
  color: #000000;
  -webkit-line-clamp: 1;
  padding: 0 12px;
}

.zhuanyewenda-play {
  height: 160px;
}

.model .model-content dl.zhuanyewenda-play dd a {
  display: flex;
  align-items: center;
  /* height: 32px; */
}

.zhuanyewenda-play span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.zhuanyewenda-play img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.zhuanyewenda-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.tags-list .zhuanyewenda-tags {
  margin-top: 0;
}

.zhuanyewenda-tags a {
  width: 93px;
  height: 26px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e0e4e8;
  float: left;
  margin-top: 10px;
  font-size: 12px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  display: block;
  line-height: 26px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.zhuanyewenda-tags a .wordbox {
  -webkit-line-clamp: 1;
}

.zhuanyewenda-tags a:hover {
  border: 1px solid #387ffc;
  color: #387ffc;
}

.swiper-container.bullet {
  padding-bottom: 20px;
}

.swiper-container.bullet .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.swiper-container.bullet .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  background: #000000;
  opacity: 0.2;
  border-radius: 2px;
}

/* .model-account .swiper-container.bullet .swiper-pagination-bullet {
  background: #ffffff;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  border-radius: 3px;
  opacity: 0.53;
} */
.swiper-container.bullet .swiper-pagination-bullet-active {
  background: #387ffc;
  opacity: 1;
}

/* .model-account .swiper-container.bullet .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
} */
.tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tools a {
  width: 100px;
  height: 82px;
  float: left;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #555555;
}

.tools a img {
  width: 52px;
  height: 52px;
}

.app-codes {
  padding: 0 33px;
  margin-top: 36px;
  height: 130px;
}

.app-codes .code {
  height: 100%;
  font-size: 14px;
  color: #387ffc;
  line-height: 18px;
  font-family: Arial-BoldMT, Arial;
  font-weight: normal;
  white-space: pre-line;
  text-align: center;
}

.app-codes .code .img {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  border: #c3d8ff 4px solid;
  box-sizing: border-box;
}

.model-zixun a {
  min-height: 70px;
  display: flex;
}

.model-zixun a + a {
  margin-top: 20px;
}

.model-zixun a .img {
  width: 125px;
  height: 70px;
  margin-right: 10px;
  flex-shrink: 0;
  position: relative;
  object-fit: contain;
}

.model-zixun a .img.video {
  width: 137px;
  height: 79px;
}

.model-zixun a .img.video::after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/icon-play2.png");
}

.model-zixun a .img img {
  width: 100%;
  height: 100%;
  display: block;
}

.model-zixun a .title {
  font-size: 14px;
  color: #555555;
  line-height: 20px;
}

.model-zixun a .desc {
  font-size: 12px;
  color: #7e7e7e;
  line-height: 17px;
}

.model-account {
  width: 300px;
  height: 514px;
  overflow: hidden;
  /* background: #ffffff; */
  /* border: 1px solid #e0e4e8; */
  background: url(../images/model-account-bg.png) no-repeat 0 0/100% 100%;
  padding-top: 70px;
}

.model-account.auto-fix,
.model-list.auto-fix,
.detail-share.auto-fix,
.asklist .model.mul .model-title.auto-fix,
.zuixin-nav-bar.auto-fix,
*.auto-fix {
  position: fixed;
  top: 0;
  z-index: 88;
}

.model-account .account-title {
  width: 300px;
  height: 70px;
  font-size: 16px;
  font-family: Arial-BoldMT, Arial;
  font-weight: normal;
  color: #ffffff;
  line-height: 18px;
  display: none;
}

.model-account-box {
  width: 288px;
  /* background: #ffffff; */
}

.model-account .box {
  width: 260px;
  padding: 16px 0;
  margin: 0 16px;
  border-bottom: 1px solid #eeeeee;
  height: 138px;
}

.model-account .box:last-child {
  border-bottom: none;
}

.model-account .box img {
  width: 86px;
  height: 86px;
  margin-right: 12px;
  flex-shrink: 0;
}

.model-account .box .title {
  font-size: 16px;
  color: #387ffc;
  line-height: 18px;
  font-weight: bold;
}

.model-account .box .desc {
  font-size: 14px;
  color: #555555;
  margin-top: 12px;
}

.model-account .box .desc span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.model-account .box .desc + .desc {
  margin-top: 0;
}

.model-account .box .desc .blue {
  color: #387ffc;
}

.list-nav {
  height: 60px;
}

.list-nav .list-nav-left {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 22px;
}

.list-nav .list-nav-left a {
  margin-right: 40px;
  color: #7f7f7f;
  position: relative;
}

.list-nav .list-nav-left a + span {
  color: #000000;
  margin-right: 40px;
  position: relative;
}

.list-nav .list-nav-left a + a::before,
.list-nav .list-nav-left a + span::before {
  content: ">";
  color: #7f7f7f;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.list-nav .list-nav-right {
  font-size: 14px;
  color: #7f7f7f;
  line-height: 20px;
}

.list-nav .list-nav-right span {
  margin: 0 20px;
}

.model-list-box {
  width: 130px;
  height: 100%;
  margin-right: 20px;
  flex-shrink: 0;
}

.model-list {
  width: 130px;
}

.model-list a,
.model-list .list-more {
  width: 130px;
  height: 60px;
  border-bottom: 1px solid #d7d7d7;
  font-size: 18px;
  color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.model-list a:hover,
.model-list .list-more:hover {
  background: #ececec;
}

.model-list a.back {
  width: 130px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 15px;
  margin-bottom: 14px;
  /* margin-top: 20px; */
  font-size: 14px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #387ffc;
  border: none;
}

.model-list a.active {
  background: #387ffc;
  border: none;
  color: #ffffff;
  font-weight: bold;
}

.model-list-sub {
  /* height: 60px; */
  border-bottom: 2px solid #387ffc;
  display: flex;
  font-size: 18px;
  padding-left: 30px;
  position: relative;
  box-sizing: content-box;
  padding-right: 90px;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 20px;
}

.model-list-sub::before {
  content: "》";
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  color: #387ffc;
  padding-left: 10px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}

.model-list-sub a {
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: #7f7f7f;
  cursor: pointer;
  flex-shrink: 0;
}

.model-list-sub .sublist-more {
  width: 90px;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.model-list-sub.nomore,
.model-list-sub.hasmore {
  height: 60px;
}

.model-list-sub.nomore .sublist-more {
  display: none;
}

.model-list-sub a:hover,
.model-list-sub .sublist-more:hover {
  background: #f1f9ff;
}

.model-list-sub.active {
  max-width: 100%;
  height: initial;
  /* flex-wrap: wrap; */
  background: #ffffff;
  z-index: 88;
}

/* .model-list-sub .sublist-more ~ a {
  display: none;
}

.model-list-sub.active .sublist-more ~ a {
  display: flex;
} */
.model-list-sub .sublist-more::before,
.model-list .list-more-btn::before {
  content: "更多";
}

.model-list-sub.active .sublist-more::before,
.model-list.active .list-more-btn::before {
  content: "收起";
}

.model-list-sub .sublist-more::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #222222;
  border-bottom: 2px solid #222222;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-left: 6px;
}

.model-list-sub.active .sublist-more::after {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  margin-top: 6px;
}

/* 考试指导左侧导航复写 */
.kszd-model.model-list {
  width: 130px;
  box-shadow: 0 6px 22px 0 rgba(169, 169, 169, 0.2);
}

.kszd-model .kszd-model-top {
  width: 130px;
  height: 60px;
  background: #387ffc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ffffff;
}

.kszd-model .kszd-model-top img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.kszd-model .kszd-model-bottom,
.kszd-model .kszd-model-bottom img {
  width: 130px;
  height: 215px;
  border-bottom: none;
  display: block;
}

.kszd-model.model-list .kszd-model-nav {
  width: 130px;
  height: 60px;
  background: #ffffff;
  border: none;
  font-size: 18px;
  color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.kszd-model.model-list .kszd-model-nav::after {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  bottom: 0;
  width: 98px;
  height: 1px;
  background: #f5f5f5;
}

.model-list .kszd-model-nav:hover {
  color: #387ffc;
}

.model-list .kszd-model-nav.active {
  background: rgba(56, 127, 252, 0.05);
  border-left: 3px solid #387ffc;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #387ffc;
}

.img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e9f4ff;
  width: 100%;
  height: 100%;
}

.img-item a {
  width: 100%;
  height: 100%;
}

.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.img-item img:hover {
  transform: scale(1.1);
}

.img-box .img-item {
  position: relative;
  /* display: block; */
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box .img-item img {
  width: 100%;
  height: initial;
}

.list-more-btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-more-box {
  width: 700px;
  height: initial;
  flex-wrap: wrap;
  background: #ffffff;
  z-index: 99;
  position: absolute;
  left: 130px;
  top: 0;
  box-shadow: 0px -1px 11px 0px rgba(186, 184, 184, 0.46);
  display: none;
  transform: translate(0, 0);
}

.list-more .list-more-box a {
  width: initial;
  height: initial;
  padding: 18px 30px;
  border: none;
}

.list-more:hover .list-more-box {
  display: flex;
}

.list-more .list-more-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #222222;
  border-bottom: 2px solid #222222;
  transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  margin-left: 6px;
}

.list-more:hover .list-more-btn::after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.nav.center .nav-item .nav-options {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  box-shadow: 0px -1px 11px 0px rgba(186, 184, 184, 0.46);
  z-index: 99;
  display: none;
  flex-wrap: wrap;
}

.nav.center .nav-item .nav-options.options1 a {
  padding: 12px 18px;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  display: flex;
  align-items: center;
}

.nav.center .nav-item .nav-options.options2 {
  justify-content: space-between;
}

.nav.center .nav-item .nav-options.options2 .option {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  padding-right: 20px;
}

.nav.center .nav-item .nav-options.options2 .option .title {
  padding: 20px 20px 17px;
  font-size: 20px;
  color: #333333;
  line-height: 28px;
  display: flex;
}

.nav.center .nav-item .nav-options.options2 .option .content a {
  padding-left: 20px;
  font-size: 14px;
  color: #333333;
  line-height: 16px;
}

.nav.center .nav-item .nav-options.options2 .option .content a + a,
.nav-item .nav-options.options2 .option .content .option-wrap a {
  margin-top: 16px;
}

.nav.center .nav-item .nav-options.options2 .option + .option .content {
  border-left: 1px solid #d7d7d7;
}

.nav.center .nav-item .nav-options.options2 .option.special {
  padding-bottom: 30px;
}

.nav.center .nav-item .nav-options.options2 .option.special2 {
  padding-top: 21px;
}

.nav.center .nav-item .nav-options.options2 .option .content .tag,
.nav.center .nav-item .nav-options.options3 .option .tag {
  width: 50px;
  padding: 4px 9px;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  background: #f2f2f2;
  border-radius: 1px;
  margin-left: 20px;
}

.nav.center .nav-item .nav-options.options2 .option .content a + .tag,
.nav.center .nav-item .nav-options.options3 .option a + .tag {
  margin-top: 5px;
}

.nav.center .nav-item .nav-options.options2 .option .content .option-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 420px;
  /* writing-mode: vertical-lr;
  display: inline-block; */
}

.option-wrap_w1 {
  width: 236px;
}

.option-wrap_2w {
  width: 150.48px;
}

/* .nav-item .nav-options.options2 .option .content .option-wrap * {
  writing-mode: initial;
} */
.nav.center .nav-item .nav-options.options3 {
  padding: 12px 0;
}

.nav.center .nav-item .nav-options.options3 .option {
  width: 50%;
}

.nav.center .nav-item .nav-options.options3 .option + .option {
  border-left: 1px #d7d7d7 solid;
}

.nav.center .nav-item .nav-options.options3 .option .option-wrap {
  padding: 0 20px;
  margin-left: -40px;
}

.nav.center .nav-item .nav-options.options3 .option-wrap a {
  display: flex;
  align-items: center;
  color: #333333;
  float: left;
  margin-top: 16px;
  margin-left: 40px;
  /* line-height: initial; */
  line-height: 23px;
}

.nav.center .nav-item .nav-options.options3 img {
  width: 43px;
  height: 18px;
}

.nav.center .nav-item .nav-options a:hover,
.nav.center .nav-item .nav-options .option a:hover,
.nav.center .nav-item .nav-options .option .content a:hover {
  color: #387ffc;
}

/* .model-list-sub dl{
  display: flex;
  overflow-x: scroll;
  padding-right: 90px;
}


.model-list-sub .sublist-more-box{
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0px 0px 4px rgb(0 0 0 / 35%);
  border-radius: 4px;
  flex-wrap: wrap;
  background: #ffffff;
  z-index: 666;
  display: none;
  padding-right: 90px;
}

.active .sublist-more-box{
  display: flex;
}

.model-list-sub .sublist-more{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 667;
} */
.material {
  background: #ebf7fe;
}

.material-top {
  width: 1280px;
  height: 420px;
  position: relative;
}

.material-top .bg {
  width: 1280px;
  height: 420px;
}

.material-top .material-logo {
  width: 150px;
  height: 52px;
  position: absolute;
  left: 30px;
  top: 20px;
}

.material-content {
  width: 1165px;
  /* height: 1151px; */
  background: linear-gradient(135deg, #cdedfe 0%, #9fd6fc 100%, #9ed6fc 100%);
  border-radius: 12px;
  margin: 40px 0;
  padding: 0 22px 22px;
}

.material-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.material-box {
  width: 550px;
  min-height: 160px;
  background: #ffffff;
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px;
  display: flex;
  cursor: pointer;
}

.material-box img {
  width: 140px;
  height: 140px;
  margin-right: 20px;
  flex-shrink: 0;
}

.material-box .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  font-weight: 600;
  color: #000000;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.material-box .desc {
  margin-top: 10px;
  font-size: 16px;
  color: #7f7f7f;
  line-height: 24px;
  white-space: pre-line;
}

.material-boxes .receive {
  font-size: 14px;
  color: #387ffc;
  line-height: 20px;
  flex-shrink: 0;
}

.material-showall {
  width: 100%;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: -20px;
  font-size: 18px;
  color: #387ffc;
  line-height: 25px;
}

.material-type {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.material-type select {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.material-type-arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #387ffc;
  border-bottom: 2px solid #387ffc;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-left: 6px;
}

.material-back {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ffffff;
  line-height: 28px;
}

.error-content {
  width: 960px;
  height: 220px;
  background: #f9f9f9;
}

.error-back {
  width: 300px;
  height: 50px;
  background: #387ffc;
  border-radius: 9px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 600;
  color: #ffffff;
  margin: 24px auto 0;
}

.error-list .model {
  width: 470px;
}

.error-list .model .detail-article-list a {
  width: 100%;
}

.model-title .ml-option h3 {
  font-size: 16px;
  color: #8c8c8c;
  line-height: 18px;
  display: inline-block;
  width: 90px;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  /* padding: 0 20px; */
  /* cursor: pointer; */
}

.model.mul .model-title .ml-option .active {
  color: #317afc;
  position: relative;
  background: #ebf2ff;
  cursor: initial;
}

.content-right .model.mul .model-title {
  border-bottom: 1px solid #eeeeee;
}

.content-right .model.mul .model-title .ml-option .active {
  background: none;
  border-bottom: 1px solid #317afc;
}

.ask-box {
  padding: 20px 0;
  height: 164px;
  box-sizing: border-box;
  display: block;
}

.ask-box + .ask-box {
  border-top: 1px solid #eeeeee;
}

.ask-box .title {
  font-size: 18px;
  color: #333333;
  line-height: 21px;
}

.ask-box .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ask-box .desc span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -moz-box-orient: vertical;
}

.ask-box .icon {
  width: 26px;
  height: 26px;
  margin-right: 7px;
  flex-shrink: 0;
}

.ask-box .desc {
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  height: 44px;
  margin-top: 15px;
}

.model.box2 .ask-box {
  padding: 20px 10px;
  height: 141px;
  box-sizing: border-box;
  display: block;
}

.model.box2 .ask-box:hover {
  background: rgba(49, 122, 252, 0.1);
}

.model.box2 .ask-box .title {
  font-size: 14px;
  color: #7f7f7f;
}

.model.box2 .ask-box .icon {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-top: 3px;
}

.ask-box .infos {
  margin-top: 15px;
  padding-left: 32px;
}

.ask-box .infos .head {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
}

.ask-box .infos .nickname {
  font-size: 14px;
  line-height: 16px;
  color: #333333;
  margin-right: 18px;
}

.ask-box .infos .info {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 16px;
}

.ask-box .infos .icon-view {
  width: 19px;
  height: 13px;
  margin-right: 5px;
}

.model-content.mul {
  display: none;
}

.model-content.mul.show {
  display: block;
}

.content-right .ask-box {
  height: 140px;
}

.error-content img {
  width: 247px;
  height: 142px;
}

.error-content span {
  margin-top: 6px;
  font-size: 24px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #616060;
  line-height: 33px;
}

.file-bg2 {
  width: 960px;
  height: 440px;
}

.material-title {
  margin-top: 10px;
  padding: 20px 0;
  font-size: 24px;
  font-family: Helvetica;
  color: #387ffc;
  line-height: 29px;
}

.material-detail-content {
  width: 1281px;
  /* height: 1256px; */
  background: #ebf7fe;
  padding: 0 26px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.material-detail .material-box {
  width: 396px;
}

.material-detail .zhuanyewenda-tags {
  margin-top: -10px;
}

.material-detail .material-box .desc {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #7f7f7f;
  line-height: 20px;
}

.material-download {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.material-download .download-img {
  width: 154px;
  height: 154px;
  margin-top: 81px;
}

.material-download .title {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  font-weight: 600;
  color: #000000;
  line-height: 25px;
  margin-top: 20px;
}

.material-download .download-btn {
  width: 300px;
  height: 50px;
  background: #387ffc;
  border-radius: 9px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 600;
  color: #ffffff;
  margin-top: 30px;
}

.material-download .icon-download {
  width: 31px;
  height: 19px;
  margin-right: 10px;
}

.material-dialog {
  width: 340px;
  height: 421px;
  padding: 0 50px;
  background: #ffffff;
  border-radius: 9px;
}

.material-dialog-top {
  height: 33px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: 33px;
  margin-top: 17px;
}

.material-dialog .code {
  width: 180px;
  height: 180px;
  margin-top: 45px;
}

.material-dialog .title {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  line-height: 22px;
  margin-top: 8px;
}

.material-dialog .desc {
  font-size: 12px;
  color: #7f7f7f;
  line-height: 17px;
  margin-top: 20px;
  white-space: pre-line;
  text-align: center;
}

.material-close {
  width: 36px;
  height: 36px;
  margin-top: 20px;
}

.icon-apptip {
  width: 67px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -22px);
  animation: moveapptip 4s infinite ease-in-out;
}

.icon-apptip2 {
  width: 67px;
  height: 26px;
  position: absolute;
  left: 40px;
  top: 0;
  transform: translate(0, -22px);
  animation: moveapptip2 4s infinite ease-in-out;
}

@keyframes moveapptip {
  0% {
    left: 0;
  }
  50% {
    left: 40px;
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes moveapptip2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    left: 40px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

.shakeMovie {
  /* 右侧悬浮领资料晃动,先注释 */
  /*animation: shake 1s infinite ease-in-out;*/
}

@keyframes shake {
  10% {
    transform: rotate(-20deg);
  }
  20% {
    transform: rotate(20deg);
  }
  30% {
    transform: rotate(-20deg);
  }
  40% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(0);
  }
}

.watermark img {
  max-width: 100%;
  height: auto;
}

.article-list {
  padding-bottom: 40px;
}

.w_100 {
  width: 100%;
}

.swiper-container.default {
  width: 100%;
}

.zhidao-boxes {
  /* overflow-x: scroll; */
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 430px;
  margin-left: -20px;
}

.zhidao-box {
  margin-top: 20px;
  margin-left: 20px;
  width: 225px;
  height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
}

.zhidao-box:hover {
  color: #317afc;
}

.zhidao-box img {
  width: 225px;
  height: 130px;
}

.zhidao-box span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 42.2px;
}

.nav-blue {
  font-size: 14px;
  color: #387ffc;
  line-height: 20px;
}

.zhidao-box2 {
  width: 225px;
  height: 130px;
  color: #ffffff;
  position: relative;
  display: block;
}

.zhidao-box2.big {
  font-size: 16px;
  line-height: 22px;
  width: 470px;
  height: 280px;
  background: #e2e2e2;
}

.zhidao-box2 img {
  width: 100%;
  height: 100%;
  display: block;
}

.zhidao-box2 span {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
  line-height: 32px;
  box-sizing: border-box;
}

.zhidao-box2.big span {
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
}

.zhidao-swiper {
  width: 470px;
  height: 300px;
  margin: 20px 20px 0 0;
}

.zhidao-boxes2 {
  width: 100%;
  height: 280px;
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.center.padding_b {
  padding-bottom: 40px;
}

/* 新版登录弹窗 */
.dialog-close {
  width: 36px;
  height: 36px;
  margin-top: 20px;
}

.dialog-index {
  min-width: 400px;
  min-height: 400px;
  background: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.dialog-header {
  width: 416px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  border-bottom: #f0f0f0 solid 1px;
  color: #387ffc;
}

.dialog-header img {
  width: 416px;
  /* height: 50px; */
}

.dialog-header-none {
  height: 36px;
}

.dialog-header-new {
  color: #fc5531;
  font-size: 23px;
  font-weight: 600;
  margin-top: -20px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 6px;
}

.dialog-header-new .icon {
  width: 34px;
  height: 34px;
  margin-right: 6px;
}

.dialog-header-sky {
  /* height: 51px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; */
    height: 80px;
    font-family: MicrosoftYaHei;
    color: #000000;
    line-height: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 25px;
    border-bottom: 1px solid #ebebeb;
}

.dialog-top {
  /* height: 60px; */
  font-size: 16px;
  font-family: MicrosoftYaHei;
  /* font-family: Arial-BoldMT, Arial; */
  font-weight: normal;
  line-height: 21px;
  position: relative;
  /* padding: 0 85px; */
  display: flex;
  justify-content: space-between;
  height: 34px;
  margin: 35px auto 0;
}

.dialog-top .scan-easy {
  transform: scale(0.9);
  position: absolute;
  top: -18px;
  left: 12px;
  background: #fef7f0;
  border-radius: 4px 4px;
  border: 1px solid #ffd5a6;
  font-size: 12px;
  font-weight: 400;
  color: #df760c;
  line-height: 20px;
  text-align: center;
  padding: 0 8px;
}

.dialog-top .scan-easy::after {
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  background: url("/static/cms/images/2s.png") no-repeat 50%;
  background-size: 100% 100%;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.dialog-index .touch {
  cursor: pointer;
}

.dialog-top .top-left {
  height: 34px;
  color: #929292;
  position: relative;
  flex: 1;
  cursor: pointer;
}

.dialog-top .top-left.active {
  color: #2f2f2f;
  font-weight: 600;
}

.dialog-top .top-left.active:after {
  position: absolute;
  width: 40px;
  height: 3px;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background-color: #387ffc;
  border-radius: 4px;
  bottom: -5px;
}

.dialog-close2 {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
  cursor: pointer;
}

.dialog-close2 img {
  width: 15px;
  height: 16px;
  display: block;
}

.dialog-close2:hover .img1,
.dialog-close2 .img2 {
  display: none;
}

.dialog-close2:hover .img2 {
  display: block;
}

.dialog-content {
  padding: 24px;
}

.dialog-text {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7f7f7f;
  line-height: 19px;
  margin-top: 20px;
}

.wechat-code {
  width: 180px;
  height: 180px;
  /* margin-top: 20px; */
}

.wechat-text {
  /* width: 220px; */
  height: 20px;
  font-size: 14px;
  font-family: ArialMT;
  color: #7f7f7f;
  line-height: 16px;
  margin-top: 10px;
  white-space: nowrap;
}

.wechat-refresh {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #387ffc;
  line-height: 20px;
  cursor: pointer;
}

.wechat-refresh img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.HIDE,
.HIDE.flex {
  display: none;
}

.dialog-input {
  display: flex;
  align-items: center;
  width: 360px;
  height: 44px;
  background: #f5f6f7;
  border-radius: 4px 4px;
}

.dialog-input .eyes-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  cursor: pointer;
  user-select: none;
}

.dialog-input .select-area {
  margin: 0 12px 0 12px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

.dialog-input .select-area:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: #222226 transparent transparent;
  position: absolute;
  top: 8px;
  right: -16px;
}

.dialog-input + .dialog-input {
  margin-top: 24px;
  background: #f5f6f7;
}

.dialog-input input {
  width: 100%;
  padding: 0 13px;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  background: #f5f6f7;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
  color: #999999;
}

.input-icon {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  flex-shrink: 0;
}

.dialog-settle {
  width: 100%;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  margin-top: 16px;
  flex-direction: row-reverse;
}

.dialog-bluebtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 40px;
  background: #387ffc;
  border-radius: 20px 20px;
  font-size: 16px;
  font-family: Arial-BoldMT, Arial;
  font-weight: normal;
  color: #ffffff;
  margin-top: 22px;
  cursor: pointer;
}

.dialog-textbtn {
  margin-top: 20px;
  font-size: 14px;
  color: #2f2f2f;
  line-height: 20px;
  cursor: pointer;
}

.dialog-verify {
  margin-top: 23px;
  width: 360px;
  background: #f5f6f7;
}

.dialog-verify .dialog-input {
  width: 197px;
}

.dialog-verify .input-verify {
  width: 109px;
  height: 44px;
  border-radius: 4px 4px;
  font-size: 14px;
  color: #222226;
  cursor: pointer;
}

.login-dialog-agreement {
  /* width: 260px; */
  white-space: nowrap;
  margin-top: 20px;
  font-size: 12px;
  color: #7f7f7f;
  line-height: 17px;
}

.login-dialog-agreement .gx_1 {
  vertical-align: middle;
  margin-right: 6px;
}

.login-dialog-agreement span {
  line-height: 12px;
}

.dialog-tips {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  /* justify-content: space-between; */
  width: 200px;
  padding: 20px 0 16px;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -98%);
  background: rgba(0, 4, 9, 0.6);
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  border-radius: 3px;
  pointer-events: none;
  white-space: pre-line;
  text-align: center;
  z-index: 14;
}

.dialog-tips img {
  margin-bottom: 16px;
}

.login-dialog-agreement .blue,
.blue {
  color: #387ffc;
}

.ad-gaodun-fix {
  width: 100%;
  height: 90px;
  background: #ffffff;
  box-shadow: 0px -7px 9px 0px rgba(169, 169, 169, 0.2);
  position: fixed;
  left: 0;
  bottom: -90px;
  z-index: 310;
  transition: 0.2s;
  pointer-events: none;
}

.ad-gaodun-fix .fix-content {
  width: 930px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.ad-gaodun-fix.show {
  bottom: 0;
  pointer-events: initial;
}

.ad-gaodun-fix .img {
  width: 53px;
  height: 53px;
  margin-right: 20px;
  flex-shrink: 0;
}

.ad-gaodun-fix .title {
  flex: 1;
  font-size: 18px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ad-gaodun-fix .download {
  flex-shrink: 0;
  width: 161px;
  height: 40px;
  background: #387ffc;
  border-radius: 20px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.ad-gaodun-fix .close {
  width: 40px;
  height: 40px;
  margin-left: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.ad-gaodun3 {
  width: 810px;
  height: 160px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 23px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ad-gaodun3 .ad-gaodun-img {
  width: 114px;
  height: 114px;
  margin-right: 20px;
  flex-shrink: 0;
}

.ad-gaodun3 .title {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #3c82fc;
  /* line-height: 19px; */
  overflow: hidden;
  /* white-space: nowrap; */
  /* display: block; */
  text-overflow: ellipsis;
  width: 430px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ad-gaodun3:hover .title,
.ad-gaodun3:hover .desc,
.ad-gaodun2:hover .title,
.ad-gaodun2:hover .desc,
.ad-gaodun1:hover .title,
.ad-gaodun1:hover .desc {
  text-decoration: underline;
}

.ad-gaodun3 .desc {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  margin-top: 13px;
  width: 430px;
}

.ad-gaodun3 .stars {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 17px;
  margin-top: 13px;
  display: flex;
  align-items: center;
}

.ad-gaodun3 .stars img {
  width: 126px;
  height: 18px;
}

.ad-gaodun3 .ad-gaodun-download {
  width: 186px;
  height: 68px;
  background: linear-gradient(180deg, #75a7ff 0%, #387ffc 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  font-family: Helvetica;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  flex-shrink: 0;
  transform: scale(0.9);
}

.ad-gaodun3 .ad-gaodun-download span + span {
  font-size: 14px;
  line-height: 17px;
  font-weight: normal;
}

.ad-gaodun3 .ad-gaodun-download img {
  width: 34px;
  height: 33px;
  margin-right: 10px;
}

.ad-gaodun2 {
  width: 300px;
  height: 219px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ad-gaodun2 .ad-gaodun-img {
  width: 65px;
  height: 65px;
}

.ad-gaodun2 .title {
  font-size: 14px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #3c82fc;
  /* line-height: 19px; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 179px;
  margin-left: 16px;
}

.ad-gaodun2 .desc {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  margin-top: 10px;
  width: 100%;
}

.ad-gaodun2 .stars {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 17px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  width: 100%;
}

.ad-gaodun2 .stars img {
  width: 112px;
  height: 16px;
}

.ad-gaodun2 .ad-gaodun-download {
  width: 260px;
  height: 41px;
  background: linear-gradient(180deg, #75a7ff 0%, #387ffc 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 23px;
  font-family: Helvetica;
  color: #ffffff;
  font-size: 14px;
  /* line-height: 17px; */
  font-weight: bold;
}

/* .ad-gaodun2 .ad-gaodun-download span + span {
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
} */
.ad-gaodun2 .ad-gaodun-download img {
  width: 19px;
  height: 18px;
  margin-right: 8px;
}

.ad-gaodun1 {
  width: 960px;
  height: 90px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ad-gaodun1 .ad-gaodun-img {
  width: 65px;
  height: 65px;
  margin-right: 20px;
}

.ad-gaodun1 .title {
  font-size: 14px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #3c82fc;
  line-height: 19px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
}

.ad-gaodun1 .desc {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  margin-top: 5px;
}

.ad-gaodun1 .stars {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 17px;
  margin-top: 6px;
  display: flex;
  align-items: center;
}

.ad-gaodun1 .stars img {
  width: 112px;
  height: 16px;
}

.ad-gaodun1 .ad-gaodun-download {
  width: 161px;
  height: 52px;
  background: linear-gradient(180deg, #75a7ff 0%, #387ffc 100%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  font-family: Helvetica;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
}

.ad-gaodun1 .ad-gaodun-download span + span {
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
}

.ad-gaodun1 .ad-gaodun-download img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}

.special-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
  margin-left: -20px;
}

.box-special {
  width: 470px;
  height: 320px;
  background: #ffffff;
  box-shadow: 0px 6px 11px 0px rgba(169, 169, 169, 0.2);
  border-radius: 4px;
  margin-top: 20px;
  margin-left: 20px;
  overflow: hidden;
}

.special-img {
  width: 470px;
  height: 260px;
}

.special-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 14px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  height: 60px;
  line-height: 60px;
}

.special-content.small {
  margin-left: -10px;
  margin-top: 0;
}

.special-content.small .box-special {
  width: 145px;
  height: 110px;
  margin-left: 10px;
  margin-top: 10px;
}

.special-content.small .special-img {
  width: 145px;
  height: 80px;
}

.special-content.small .special-text {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.module-banner {
  width: 300px;
  height: 130px;
  margin-top: 20px;
  display: block;
}

.module-banner img {
  width: 300px;
  height: 130px;
  object-fit: cover;
}

.model-video-list {
  margin-top: 20px;
  padding-left: 10px;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: -20px;
  width: 810px;
  height: 216px;
  position: relative;
}

#wrapper ul {
  position: absolute;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  /* width: 100%; */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

.model-video-list ul {
  display: flex;
  align-items: center;
}

.model-video-box {
  width: 300px;
  height: 196px;
  background: #ffffff;
  box-shadow: 0px 6px 7px 0px rgba(169, 169, 169, 0.2);
  border-radius: 12px;
  margin-right: 20px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}

.model-video-box .img {
  width: 300px;
  height: 150px;
  overflow: hidden;
  object-fit: cover;
}

.model-video-box .text {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  display: block;
}

.index.model-video-list {
  width: 960px;
  height: 180px;
}

.index.model-video-list .model-video-box,
.index.model-video-list .model-video-box .img {
  height: initial;
}

.dialog-account {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 340px;
}

.dialog-account .top img {
  width: 340px;
  height: 97px;
}

.dialog-account .top span {
  position: absolute;
  left: 50%;
  top: 21px;
  transform: translate(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: 33px;
}

.dialog-account .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 23px 20px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  background: #fff;
}

.dialog-account .content .code {
  width: 180px;
  height: 180px;
}

.dialog-account .content .title {
  font-size: 16px;
  font-weight: bold;
  color: #387ffc;
  line-height: 22px;
  margin-top: 20px;
}

.dialog-account .content .desc {
  font-size: 14px;
  color: #7f7f7f;
  line-height: 20px;
  margin-top: 20px;
}

.dialog-account .content .copy {
  padding: 0 6px;
  height: 22px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #387ffc;
  line-height: 22px;
  font-size: 12px;
  color: #387ffc;
  margin-left: 10px;
  cursor: pointer;
  vertical-align: middle;
}

.fagui-info {
  width: 810px;
  padding: 15px 0 20px;
  /* word-break: break-word; */
  border-bottom: 1px solid #d7d7d7;
  /* white-space: pre-wrap; */
  font-size: 18px;
  color: #333333;
  line-height: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fagui-info span {
  width: 50%;
}

.dialog-dmk {
  /* width: 3.46rem;
  height: 4.25rem;
  background: #FFFFFF;
  border-radius: 0.22rem; */
  width: 345px;
  height: 425px;
  display: flex;
  flex-direction: column;
}

.dialog-dmk .content {
  width: 346px;
  margin-top: 214px;
  height: 211px;
  /* border-radius: 0 0 22px 22px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-dmk .content .title {
  margin-top: 24px;
  font-size: 20px;
  color: #141516;
  line-height: 28px;
  white-space: pre-line;
  text-align: center;
}

.dialog-dmk .content .desc {
  margin-top: 12px;
  font-size: 16px;
  color: #a3a3a3;
  line-height: 20px;
}

.dialog-dmk .content .btn {
  width: 248px;
  height: 47px;
  background: #387ffc;
  border-radius: 45px;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.ad-full {
  width: 100%;
}

.zuixin-title {
  height: 55px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: bold;
  color: #000000;
  line-height: 25px;
  padding: 20px 0 10px;
}

.zuixin-title .tag {
  width: 48px;
  height: 22px;
  background: #387ffc;
  border-radius: 11px 11px 11px 0;
  margin-left: 10px;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: bold;
  color: #ffffff;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zuixin-content .items {
  display: flex;
  flex-wrap: wrap;
  width: 1130px;
  justify-content: space-between;
}

.zuixin-content .items a {
  width: 550px;
  height: 40px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 40px;
  position: relative;
}

.zuixin-content .items a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #818181;
  border-bottom: 2px solid #818181;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
}

.zuixin-content .items a:hover {
  color: #387ffc;
}

.zuixin-content .items a:hover::after {
  border-right: 2px solid #387ffc;
  border-bottom: 2px solid #387ffc;
}

.zuixin-left {
  width: 130px;
  /* margin-top: 20px; */
}

.zuixin-nav-bar {
  /* position: fixed;
  left: 50%;
  top: 297px; */
  /* transform: translate(-800px); */
  width: 130px;
  margin-top: 20px;
}

.zuixin-nav-bar a {
  width: 130px;
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #555555;
  cursor: pointer;
}

.zuixin-nav-bar a.active {
  border: none;
  background: #387ffc;
  color: #ffffff;
}

.ziliao-content {
  width: 961px;
  /* height: 1968px; */
  background: #ffffff;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  border-radius: 8px;
}

.ziliao-options {
  height: 75px;
  display: flex;
  padding: 0 20px;
  border-bottom: 1px solid #eeeeee;
}

.ziliao-options .option {
  padding: 30px 0 19px 0;
  margin-right: 60px;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ziliao-options .option.active {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  line-height: 24px;
  border-bottom: 2px solid #387ffc;
}

.ziliao-items {
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.ziliao-items .item {
  height: 90px;
  background: #ffffff;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ziliao-items .item:nth-child(2n) {
  background: #f9f9f9;
}

.ziliao-items .item .img {
  width: 42px;
  height: 46px;
  flex-shrink: 0;
  margin-right: 26px;
}

.ziliao-items .item .tag {
  padding: 0 8px;
  height: 19px;
  background: #ff8e00;
  border-radius: 9px 10px 10px 0px;
  line-height: 19px;
  margin-right: 10px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  flex-shrink: 0;
}

.ziliao-items .item .title {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ziliao-items .size,
.dialog-ziliao-code2 .size {
  /* width: 40px; */
  margin-right: 9px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 16px;
  margin-top: 10px;
}

.ziliao-items .count,
.dialog-ziliao-code2 .count {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 16px;
  margin-top: 10px;
}

.ziliao-items .btn {
  flex-shrink: 0;
  width: 91px;
  height: 38px;
  background: linear-gradient(270deg, #ff7711 0%, #fc974d 100%);
  box-shadow: 0px 6px 6px 0px #f9d3c3;
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  cursor: pointer;
  margin-left: 26px;
}

.ziliao-content .ziliao-none {
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #616060;
  line-height: 25px;
}

.ziliao-content .ziliao-none img {
  margin-bottom: 12px;
  width: 236px;
  height: 139px;
}

.ziliao-top {
  position: relative;
  width: 100%;
  height: 461px;
}

.ziliao-top .center2 {
  width: 1920px;
  height: 461px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.ziliao-top-bg {
  width: 1920px;
  height: 461px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ziliao-top-box {
  width: 1280px;
  height: 187px;
  background: #ffffff;
  box-shadow: 0 6px 22px 0 rgba(169, 169, 169, 0.2);
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 277px;
  transform: translate(-50%);
  overflow: hidden;
  padding: 20px;
}

.ziliao-top-box .title {
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 26px;
  display: flex;
  align-items: center;
}

.ziliao-top-box .icon {
  width: 22px;
  height: 23px;
  margin-right: 9px;
}

.ziliao-top-box .items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -53px;
}

.ziliao-top-box .items .item {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
  margin: 18px 0 0 53px;
  cursor: pointer;
}

.ziliao-top-box .items .item.active {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  cursor: initial;
}

.ziliao-content .page-list {
  margin: 0;
  padding: 30px 0;
  justify-content: center;
}

.zuixin-container {
  display: flex;
  justify-content: space-between;
}

.bkzn-model {
  background: #ffffff;
}

.bkzn-model-title {
  padding: 20px 20px 20px 10px;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 21px;
  position: relative;
}

.bkzn-model-title::before {
  content: "";
  display: block;
  width: 3px;
  height: 18px;
  background: #387ffc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.follow-tools {
  display: flex;
  flex-wrap: wrap;
}

.follow-tools a {
  width: 75px;
  height: 91px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 19px;
}

.follow-tools a img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.right-teacher {
  width: 300px;
  /* height: 338px; */
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-teacher .teacher-title {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 19px;
}

.right-teacher .items {
  width: 100%;
  margin-top: 21px;
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
}

.right-teacher .items .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.right-teacher .items .item .title {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 19px;
  flex: 1;
  margin-right: 23px;
}

.right-teacher .items .item .time {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 16px;
  flex-shrink: 0;
}

.right-teacher .code-box {
  width: 272px;
  height: 138px;
  background: url("../images/right-teacher-bg.png") no-repeat 0 0/100% 100%;
  padding: 14px 10px;
  display: flex;
}

.right-teacher .code-box .img {
  width: 110px;
  height: 110px;
  margin-right: 14px;
}

.right-teacher .code-box .title {
  margin-top: 7px;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  line-height: 21px;
}

.right-teacher .code-box .desc {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #666666;
  line-height: 19px;
  margin-top: 8px;
}

.header-bkzn-nav {
  /* margin-left: 25px; */
  padding-left: 25px;
  border-left: 1px solid #d7d7d7;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-bkzn-nav .value {
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  line-height: 26px;
  margin-right: 10px;
}

.header-bkzn-nav .navlist {
  position: relative;
}

.header-bkzn-nav .navlist .icon {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
}

.header-bkzn-nav .navlist .options {
  display: none;
  flex-direction: column;
  /* width: 216px; */
  /* height: 289px; */
  /* background: url('../images/acca/bkzn-navoptions.png') no-repeat 0 0/100% 100%; */
  position: absolute;
  right: -55.4px;
  top: 20px;
  /* padding: 22px 22px 36px; */
  z-index: 333;
  background: #ffffff;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.43);
  border-radius: 8px;
  margin-top: 20px;
}

.header-bkzn-nav:hover .navlist .options {
  display: flex;
}

.header-bkzn-nav .navlist .options .title {
  /* margin-top: 32px;
  margin-bottom: 31px; */
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #999999;
  line-height: 20px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background: url("../images/acca/bkzn-navoptions2.png") no-repeat 0 0/100% 100%;
  width: 172px;
  height: 71px;
  padding-top: 32px;
  margin-top: -20px;
  margin-bottom: 8px;
}

.header-bkzn-nav .navlist .options .option {
  width: 172px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #434343;
}

.header-bkzn-nav .navlist .options .option:hover {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #deeaff 100%);
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
}

.kszd-content {
  width: 810px;
  background: #ffffff;
  box-shadow: 0 6px 22px 0 rgba(169, 169, 169, 0.2);
  padding: 30px;
  font-size: 24px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 31px;
  margin-bottom: 60px;
}

.kszd-province {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 16px;
}

.kszd-province .point {
  width: 6px;
  height: 6px;
  background: #aaaaaa;
  border-radius: 50%;
  margin: 0 14px;
  cursor: pointer;
}

.kszd-province .province {
  color: #666666;
  cursor: pointer;
}

.kszd-province .arrow {
  width: 11px;
  height: 6px;
  margin-left: 10px;
  cursor: pointer;
}

.m-t_30 {
  margin-top: 30px;
}

.kszd-province .provinces {
  width: 360px;
  padding: 25px 0 23px 0;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translate(-14px, 0);
  display: none;
  cursor: initial;
  z-index: 444;
}

.kszd-province:hover .provinces {
  display: block;
}

.kszd-province .provinces .items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -24px 0 0 -6px;
}

.kszd-province .provinces .item {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 20px;
  margin: 24px 0 0 30px;
  cursor: pointer;
}

.kszd-province .provinces .item.active {
  color: #387ffc;
  cursor: initial;
}

.kszd-ziliao-model {
  width: 1280px;
  /* height: 132px; */
  border: 1px solid #e9e9e9;
  margin-top: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.kszd-ziliao-model .ziliao-model-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #000000;
  line-height: 24px;
  margin-bottom: 20px;
}

.kszd-ziliao-model .ziliao-model-title img {
  width: 26px;
  height: 16px;
  margin-right: 10px;
}

.kszd-ziliao-model .items {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 0 -65px;
}

.kszd-ziliao-model .items .item {
  display: flex;
  margin-top: 20px;
  width: 365px;
  margin-left: 65px;
}

.kszd-ziliao-model .items .item .num {
  width: 19px;
  height: 19px;
  background: #cccccc;
  border-radius: 50%;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.kszd-ziliao-model .items .item .options {
  /* width: 382px;
  height: 48px; */
  flex: 1;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #7f7f7f;
  /* height: 48px; */
}

.kszd-ziliao-model .items .item .options a {
  margin-right: 20px;
  color: #7f7f7f;
}

.kszd-ziliao-model .items .item .options a:hover {
  color: #387ffc;
}

.kszd-ziliao-model .items .item .options .title {
  margin-right: 0;
  color: #000000;
}

.kszd-list .article-list .box {
  width: initial;
}

.kszd-moduel-title {
  height: 66px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #387ffc;
  line-height: 24px;
  position: relative;
  margin-top: 19px;
  border-bottom: 1px solid #eeeeee;
}

.kszd-moduel-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 37px;
  height: 1px;
  background: #217dff;
}

.kszd-boxes {
  display: flex;
  flex-direction: column;
}

.kszd-boxes .box {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  font-family: MicrosoftYaHei;
  border-bottom: 1px solid #eeeeee;
}

.kszd-boxes .box:hover {
  background: #fafafa;
}

.kszd-boxes .box .title {
  font-size: 18px;
  color: #000000;
  line-height: 20px;
}

.kszd-boxes .box .desc {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 21px;
  margin-top: 17px;
  position: relative;
}

.kszd-boxes .box .desc .read {
  color: #387ffc;
}

.kszd-boxes .box .info {
  font-size: 16px;
  color: #999999;
  line-height: 18px;
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.kszd-boxes .box .info img {
  width: 12px;
  height: 14px;
  margin-right: 6px;
}

.acca-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #7f7f7f;
  line-height: 19px;
  margin-top: 18px;
}

.acca-news .news {
  display: flex;
  align-items: center;
  color: #387ffc;
}

.acca-news .news img {
  width: 17px;
  height: 14px;
  margin-right: 10px;
  /* 旧详情页标题上方喇叭,先屏蔽 */
  display: none;
}

.acca-news .news span {
  /* 旧详情页标题上方喇叭右侧文字,先屏蔽 */
  display: none;
}

.acca-news2 {
  height: 92px;
  background: #f5f8fe;
  display: flex;
  flex-direction: column;
  /* padding: 20px 16px; */
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 16px;
  margin-top: 20px;
  overflow: hidden;
}

.acca-news2 .news {
  padding: 0 16px;
  margin-top: 20px;
}

.acca-news2 .icon-play {
  width: 14px;
  height: 14px;
  margin-right: 14px;
}

.acca-news2 .icon-live {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.acca-news2 .blue {
  color: #387ffc;
}

.acca-news3 {
  width: 810px;
  height: 354px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.acca-news3 .acca-news-title {
  height: 65px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.acca-news3 .acca-news-title .img {
  width: 17px;
  height: 20px;
  margin-right: 10px;
}

.acca-news3 .acca-news-title .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ffffff;
}

.acca-news3 .acca-news-title .nav {
  width: 112px;
  height: 48px;
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  position: absolute;
  bottom: 0;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #474747;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acca-news3 .acca-news-title .nav.active {
  color: #387ffc;
  font-weight: bold;
}

.acca-news3 .acca-news-title .nav1 {
  /* left: 556px; */
  right: 142px;
}

.acca-news3 .acca-news-title .nav2 {
  /* left: 678px; */
  right: 20px;
}

.acca-news3 .item {
  flex: 1;
  padding: 20px;
  display: none;
  flex-direction: column;
}

.acca-news3 .item.active {
  display: flex;
}

.acca-news3 .item .title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}

.acca-news3 .item .box {
  margin-top: 20px;
  display: flex;
}

.acca-news3 .item .box .img {
  width: 233px;
  height: 160px;
  margin-right: 20px;
}

.acca-news3 .item .box .info {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #7f7f7f;
  line-height: 24px;
}

.acca-news3 .item .box .info .yellow {
  color: #e85307;
}

.acca-news3 .item .box .info .blue {
  color: #387ffc;
}

.acca-news3 .item .box .info2 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #474747;
}

.acca-news3 .item .box .info2 .btn {
  width: 110px;
  height: 44px;
  background: linear-gradient(83deg, #38a1fc 0%, #387ffc 100%);
  box-shadow: 0 5px 7px 0 rgba(56, 127, 252, 0.25);
  border-radius: 6px;
  margin-right: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acca-news3 .box2 {
  height: 43px;
  display: none;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #387ffc;
  padding-right: 12px;
}

.acca-news3 .box2 .img {
  width: 17px;
  height: 14px;
  margin-right: 10px;
}

.acca-news3 .box2 .btn {
  width: 93px;
  height: 27px;
  background: #ffffff;
  border: 1px solid #387ffc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #387ffc;
  margin-left: 20px;
  cursor: pointer;
}

.acca-news4 {
  width: 810px;
  /* height: 280px; */
  border: 1px solid #e9e9e9;
}

.acca-news4 th {
  height: 50px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #474747;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: initial;
}

.acca-news4 tr {
  display: flex;
}

.acca-news4 tr:first-child {
  border-bottom: 1px solid #e9e9e9;
}

.acca-news4 tr:nth-child(2n-1) {
  background: #f7f7f7;
}

.acca-news4 td {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
  line-height: 21px;
}

.acca-news4 tr th:nth-child(1),
.acca-news4 tr td:nth-child(1) {
  flex: 1;
}

.acca-news4 tr td:nth-child(1) {
  justify-content: flex-start;
}

.acca-news4 tr th:nth-child(2),
.acca-news4 tr td:nth-child(2) {
  width: 128px;
  flex-shrink: 0;
}

.acca-news4 tr th:nth-child(2) {
  justify-content: space-between;
}

.acca-news4 tr th:nth-child(2)::before,
.acca-news4 tr th:nth-child(2)::after {
  content: "|";
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #a0a0a0;
}

.acca-news4 tr th:nth-child(3),
.acca-news4 tr td:nth-child(3) {
  width: 190px;
  flex-shrink: 0;
}

.acca-news4 .btn {
  width: 113px;
  height: 27px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #d6d6d0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #555555;
}

.acca-news4 .btn img {
  width: 19px;
  height: 14px;
  margin-right: 10px;
}

.live-show {
  width: 371px;
  height: 484px;
  display: flex;
  flex-direction: column;
  padding: 290px 0 0 101px;
  position: relative;
  background: url("../images/dialog-liveshow.png") no-repeat 0 0/100% 100%;
}

.live-show .icon-close {
  position: absolute;
  top: -73px;
  left: 8px;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.live-show .icon-live {
  position: absolute;
  top: 321px;
  left: 62px;
  width: 21px;
  height: 21px;
}

.live-show .title {
  width: 225px;
  font-size: 22px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #fff6cb;
  line-height: 26px;
  letter-spacing: 1px;
}

.live-show .desc {
  /* width: 230px; */
  white-space: nowrap;
  height: 14px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  line-height: 14px;
  margin-top: 8px;
}

.live-show .status {
  width: 106px;
  height: 27px;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 8px;
}

.relevant-ziliao-list {
  display: flex;
  flex-direction: column;
}

.relevant-ziliao-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.relevant-ziliao-item:nth-child(2n) {
  background: #f9f9f9;
}

.relevant-ziliao-item .img {
  width: 54px;
  height: 54px;
  margin-right: 20px;
  flex-shrink: 0;
}

.relevant-ziliao-item .title {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
  line-height: 21px;
  display: flex;
  align-items: center;
}

.relevant-ziliao-item .title .tag {
  width: 39px;
  height: 19px;
  background: #ff8e00;
  border-radius: 9px 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  margin-right: 10px;
  flex-shrink: 0;
}

.relevant-ziliao-item .desc {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #6b6967;
  line-height: 17px;
  display: flex;
  align-items: center;
  margin-top: 9px;
}

.relevant-ziliao-item .star {
  width: 126px;
  height: 18px;
}

.relevant-ziliao-item .info {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 19px;
  margin-top: 10px;
}

.relevant-ziliao-item .btn {
  width: 91px;
  height: 38px;
  background: linear-gradient(270deg, #ff7711 0%, #fc974d 100%);
  box-shadow: 0px 6px 6px 0px #f9d3c3;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  flex-shrink: 0;
  margin-left: 20px;
  cursor: pointer;
}

.list-loadmore {
  width: 810px;
  height: 40px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #828282;
  margin-top: 20px;
  cursor: pointer;
}

.detail-content ul,
.detail-content li,
.detail-content ol {
  padding: revert;
  list-style: revert;
}

.detail-content ul,
.detail-content ol {
  margin-left: 9px;
}

.detail-content ul#mianze {
  padding: 0 !important;
  list-style: none !important;
}

.dialog-ziliao-code {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dialog-ziliao-code2 {
  width: 475px;
  height: 522px;
  background: url("../images/ziliao-code2-bg.png") no-repeat 0 0/100% 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-ziliao-code2 .ziliao-code2-content {
  width: 475px;
  height: 522px;
}

.ziliao-code-top {
  width: 340px;
  height: 138px;
}

.dialog-ziliao-code2 .ziliao-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 27px;
  right: 20px;
}

.dialog-ziliao-code2 .title {
  margin-top: 30px;
  height: 30px;
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
}

.dialog-ziliao-code2 .box {
  width: 427px;
  height: 103px;
  background: #ffffff;
  box-shadow: 0px 6px 22px 0px rgba(169, 169, 169, 0.2);
  border-radius: 8px;
  margin-top: 30px;
  padding: 16px 20px;
  display: flex;
}

.dialog-ziliao-code2 .box .icon {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 13px;
  flex-shrink: 0;
}

.dialog-ziliao-code2 .box .text1 {
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 21px;
}

.dialog-ziliao-code2 .box .text2 {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  line-height: 19px;
}

.dialog-ziliao-code2 .img {
  margin-top: 35px;
  width: 209px;
  height: 209px;
}

.dialog-ziliao-code2 .desc {
  margin-top: 34px;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #4d4d4d;
  line-height: 21px;
}

.dialog-ziliao-code .ziliao-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 0;
}

.ziliao-code-bottom {
  width: 340px;
  height: 315px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  padding: 24px 0 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ziliao-code-bottom .title {
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
}

.ziliao-code-bottom .desc {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #4d4d4d;
  line-height: 21px;
  margin-top: 9px;
}

.ziliao-code-bottom .img {
  width: 176px;
  height: 176px;
  margin-top: 26px;
}

.common-ziliao {
  width: 637px;
  height: 302px;
  background: url(../images/common-ziliao-bg.png) no-repeat 0 100%/195px 135px;
  background-color: #ffffff;
  box-shadow: 0px 4px 18px 0px rgba(117, 117, 117, 0.2);
  border-radius: 8px;
  padding: 0 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin: 38px auto;
}

.common-ziliao .top-title {
  padding-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: bold;
  color: #000000;
}

.common-ziliao .top-title .icon {
  width: 46px;
  height: 55px;
  margin-right: 13px;
}

.common-ziliao .list {
  margin: 9px 0 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

.common-ziliao .list .item {
  margin: 20px 0 0 20px;
  width: 181px;
  height: 41px;
  background: url(../images/common-ziliao-item.png) no-repeat 0 0/100% 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #5b5b5b;
}

.common-ziliao .list .item .icon {
  margin: 0 6px 0 11px;
  width: 16px;
  height: 18px;
  flex-shrink: 0;
}

.common-ziliao .btn {
  margin-top: 21px;
  width: 202px;
  height: 50px;
  background: #387ffc;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: bold;
  color: #ffffff;
}

.acca-news-ad3 + .model {
  margin-top: 20px;
}

.model .article-list {
  padding-bottom: 0;
}

.ziliao-right .new-m {
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin: 16px 0;
}

.ziliao-right .new-zixun {
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.ziliao-right .p16 {
  padding: 0 10px 19px 10px;
}

.ziliao-right .p16 .zhuanyewenda-box a {
  border-bottom: 1px solid #eee;
}

.ziliao-right .model-title .ml-option h2 {
  padding-left: 22px;
}

.ziliao-right .model-title .zd {
  position: relative;
}

.ziliao-right .model-title .zd ::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: #387ffc;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.ziliao-right .zhuanyewenda-box {
  box-shadow: none;
  width: 280px;
}

.ziliao-right .zhuanyewenda-tags a {
  height: 34px;
  line-height: 34px;
  font-size: 13px;
  width: 90px;
}

.ziliao-right .new-m .swiper-tags {
  width: 280px;
}

.ziliao-right .bkzn-model-title {
  font-size: 18px;
  padding-left: 12px;
}

.ziliao-right .bkzn-model-title::before {
  width: 4px;
  height: 20px;
}

.ziliao-right .model-zixun a {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.ziliao-right .model-zixun a:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}

.ziliao-right .down-model-title {
  font-size: 18px;
  padding: 20px 20px 20px 12px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 21px;
  position: relative;
}

.ziliao-right .down-model-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: #387ffc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ziliao-right .down-box {
  box-sizing: border-box;
  height: 118px;
  border-radius: 8px;
  background: #f2f7ff;
  padding: 4px 0;
  overflow: hidden;
}

.ziliao-right .down-list {
  display: flex;
  flex-direction: column;
  animation-name: scrollAnimation;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ziliao-right .down-list .down-item img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  margin-right: 5px;
}

.ziliao-right .down-list .down-item .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ziliao-right .down-list .down-item {
  width: 260px;
  height: 30px;
  opacity: 1;
  border-radius: 100px;
  background: white;
  align-items: center;
  color: #666666;
  font-size: 12px;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 5px auto;
  animation-name: flipAnimation;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ziliao-right .down-list .down-item:nth-child(1) {
  animation-delay: 0s;
}

.ziliao-right .down-list .down-item:nth-child(2) {
  animation-delay: 1s;
}

.ziliao-right .down-list .down-item:nth-child(3) {
  animation-delay: 2s;
}

.ziliao-right .down-list .down-item:nth-child(4) {
  animation-delay: 3s;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes flipAnimation {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(0.9);
  }
}

/* 添加更多 down-item 的样式和动画延迟时间 */
.ziliao-detail-top {
  height: 200px;
  box-sizing: border-box;
  background: #fafafa;
}

.ziliao-detail-top .top-content {
  padding-right: 14px;
  box-sizing: border-box;
}

.ziliao-detail-top .top-content .down_btn {
  cursor: pointer;
  width: 180px;
  height: 48px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 213px;
  background: linear-gradient(180deg, #387ffc 0%, #75a8ff 100%);
}

.ziliao-detail-top .top-content .down_btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  display: block;
}

.ziliao-detail-top .top-content .top_l_zl {
  width: 112px;
  height: 140px;
  opacity: 1;
  border-radius: 12px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 16px;
  flex-direction: column;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.ziliao-detail-top .top-content .top_l_zl img {
  width: 42px;
  height: 46px;
  margin-bottom: 8px;
}

.ziliao-detail-top .top-content .top_l_zl .jb {
  position: absolute;
  width: 50px;
  height: 24px;
  top: 0;
  left: 0;
}

.ziliao-detail-top .top-content .top_l_title {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
}

.ziliao-detail-top .top-content .top_l_tips {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin: 10px 0;
  width: 920px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ziliao-detail-top .top-content .top_l .tag_l span {
  margin-right: 8px;
  display: inline-block;
  padding: 1px 7px;
  font-size: 12px;
  color: #ff6e00;
  border-radius: 4px;
  background: white;
  border: 1px solid #ffdbbf;
}

.ziliao-detail-top .top-content .top_l_icon {
  margin: 6px 0 3px;
  font-size: 12px;
  color: #999999;
}

.ziliao-detail-top .top-content .top_l_icon .top_l_icon_v {
  margin-right: 16px;
}

.ziliao-detail-top .top-content .top_l_icon img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.ziliao-detail-top .top-content .top_l .star {
  font-size: 12px;
  color: #ff6e00;
}

.ziliao-detail-top .top-content .top_l .star img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.ziliao-detail .ct-wrapper {
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.ziliao-detail .ct-wrapper .ct-header {
  font-size: 18px;
  padding: 20px 20px 20px 12px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 21px;
  position: relative;
}

.ziliao-detail .ct-wrapper .ct-header::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: #387ffc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ziliao-detail .ct-wrapper .ct-body {
  border-top: 1px solid #eeeeee;
  box-sizing: border-box;
  padding: 24px 24px 39px 24px;
}

.ziliao-detail .ct-wrapper .ct-body .b-header {
  height: 286px;
  border-radius: 8px;
  background-image: url(/static/cms/images/zbg.png);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  margin-bottom: 30px;
}

.ziliao-detail .ct-wrapper .ct-body .b-header .ct-info {
  margin: 90px 0 0 153px;
}

.ziliao-detail .ct-wrapper .ct-body .b-header .ct-info .t1 {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  width: 281px;
}

.ziliao-detail .ct-wrapper .ct-body .b-header .ct-info .p1 {
  color: #999999;
  font-size: 14px;
  width: 331px;
  overflow: hidden;
  height: 60px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ziliao-detail .ct-wrapper .ct-body .ct-btn {
  margin-bottom: 30px;
}

.ziliao-detail .ct-wrapper .ct-body .ct-btn .down_btn {
  width: 180px;
  height: 48px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 213px;
  cursor: pointer;
  background: linear-gradient(180deg, #387ffc 0%, #75a8ff 100%);
}

.ziliao-detail .ct-wrapper .ct-body .ct-btn .down_btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  display: block;
}

.ziliao-detail .ct-wrapper .ct-body .ct-tp {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #e6373a;
}

.ziliao-detail .ct-list {
  margin-top: 18px;
}

.ziliao-detail .ct-list .mt-body {
  border-top: 1px solid #eeeeee;
  box-sizing: border-box;
  padding: 24px 24px 39px 24px;
}

.ziliao-detail .ct-list .mt-item {
  margin-bottom: 24px;
}

.ziliao-detail .ct-list .mt-item:nth-last-child(1) {
  margin-bottom: 0;
}

.ziliao-detail .ct-list .mt-item .down_btn {
  cursor: pointer;
  width: 140px;
  height: 44px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 213px;
  background: linear-gradient(180deg, #387ffc 0%, #75a8ff 100%);
}

.ziliao-detail .ct-list .mt-item .down_btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  display: block;
}

.ziliao-detail .ct-list .mt-item .top_l_zl {
  width: 112px;
  height: 140px;
  opacity: 1;
  border-radius: 12px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 16px;
  flex-direction: column;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.ziliao-detail .ct-list .mt-item .top_l_zl img {
  width: 42px;
  height: 46px;
  margin-bottom: 8px;
}

.ziliao-detail .ct-list .mt-item .top_l_zl .jb {
  position: absolute;
  width: 50px;
  height: 24px;
  top: 0;
  left: 0;
}

.ziliao-detail .ct-list .mt-item .top_l_title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}

.ziliao-detail .ct-list .mt-item .top_l_tips {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin: 10px 0;
  width: 600px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ziliao-detail .ct-list .mt-item .top_l .tag_l span {
  margin-right: 8px;
  display: inline-block;
  padding: 0px 7px;
  font-size: 12px;
  color: #ff6e00;
  border-radius: 4px;
  background: white;
  border: 1px solid #ffdbbf;
}

.ziliao-detail .ct-list .mt-item .top_l_icon {
  margin: 10px 0 3px;
  font-size: 12px;
  color: #999999;
}

.ziliao-detail .ct-list .mt-item .top_l_icon .top_l_icon_v {
  margin-right: 16px;
}

.ziliao-detail .ct-list .mt-item .top_l_icon img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.ziliao-detail .ct-list .mt-item .top_l .star {
  font-size: 12px;
  color: #ff6e00;
}

.ziliao-detail .ct-list .mt-item .top_l .star img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.logo .pro {
  position: relative;
  padding-left: 30px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.logo .pro:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 48px;
  opacity: 1;
  background: #cccccc;
  top: 50%;
  transform: translateY(-50%);
}

.logo .pro img {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  cursor: pointer;
}

.logo .pro .pro_wrapper {
  display: none;
  position: absolute;
  z-index: 2;
  width: 724px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  padding: 30px 28px 8px 28px;
  left: 0;
  top: 65px;
  font-size: 14px;
}

.logo .pro .pro_wrapper .pro-items {
  margin-bottom: 20px;
}

.logo .pro .pro_wrapper .pro-items:nth-last-child(1) {
  margin-bottom: 0;
}

.logo .pro .pro_wrapper .pro-items .sort {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-right: 12px;
  flex-shrink: 0;
}

.logo .pro .pro_wrapper .pro-items .sort-items {
  flex-wrap: wrap;
}

.logo .pro .pro_wrapper .pro-items .items {
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #fafafa;
  padding: 4px 8px;
  margin: 0 6px 8px 0;
  cursor: pointer;
  color: #666666;
}

.logo .pro .pro_wrapper .pro-items .items:hover {
  border: 1px solid #387ffc;
  background: white;
}

.logo .pro .pro_wrapper .pro-items .active {
  border: 1px solid #387ffc;
  background: white;
}

.ziliao-new .ziliao-items .item {
  padding-left: 0px;
  margin: 8px 0;
}

.ziliao-new .ziliao-items .item:nth-child(2n) {
  background: #fff;
}

.ziliao-new .ziliao-items .item .title {
  font-weight: 500;
  color: #333333;
}

.ziliao-new .ziliao-items .btn {
  background: linear-gradient(180deg, #387ffc 0%, #75a8ff 100%);
  box-shadow: none;
  width: 120px;
}

.ziliao-new .ziliao-items .btn img {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.ziliao-new .ziliao-items .size_img {
  margin-top: 10px;
}

.ziliao-new .ziliao-items .size_img img {
  margin-right: 2px;
  display: block;
}

.ziliao-new .ziliao-items .count_img {
  margin-top: 10px;
}

.ziliao-new .ziliao-items .count_img img {
  margin-right: 2px;
  display: block;
}

.ziliao-new .ziliao-items .size {
  margin-top: 0;
}

.ziliao-new .ziliao-items .count {
  margin-top: 0;
}

.ziliao-new .ziliao-items .item .img {
  margin-right: 0;
}

.ziliao-new .ziliao-items .img-wrap {
  position: relative;
  margin-right: 26px;
  width: 72px;
  height: 90px;
  border-radius: 5px;
  background: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  justify-content: center;
}

.ziliao-new .ziliao-items .img-wrap .img-jb {
  position: absolute;
  width: 30px;
  height: 14px;
  top: 0;
  left: 0;
}

.ziliao-new .ziliao-items .img-wrap img {
  display: block;
}

.kspd-bg {
  width: 157px;
  height: 58px;
  background-image: url("/static/cms/images/h_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 20px;
  text-align: center; /* 让文字左右居中 */
  display: flex; /* 让div内的内容居中 */
  justify-content: center; /* 左右居中 */
  align-items: center; /* 垂直居中 */
  color: white;
  font-size: 20px;
  font-weight: 700;
  /*display: block;*/
  box-sizing: border-box;
  padding: 0 0 14px 0;
}
