.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@-webkit-keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoomAnima {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes zoomAnima {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All .5s ease;
  transition: All .5s ease;
}

.zoomImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.zoomImg:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: .25;
  pointer-events: none;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.zoomImg img {
  width: 100%;
}

.zoomImg:hover:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

.zoomImg:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

a:hover .zoomImg:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

a:hover .zoomImg img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-size: 0.16rem;
  font-family: Arial,"微软雅黑";
  color: #212121;
  -webkit-text-size-adjust: none;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

body.show {
  opacity: 1;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.wal {
  max-width: 15rem;
  margin: 0 auto;
}

.wal2 {
  max-width: 14rem;
  margin: 0 auto;
}


.g-head .head {
  background: url(../images/g-head.jpg;vpn_img) center no-repeat;
  background-size: cover;
}

.g-head .wal {
  height: 1.28rem;
  position: relative;
}

.g-head .logo {
  width: 2.9rem;
  position: absolute;
  left: 0;
  top: 0.12rem;
}

.g-head .words {
  width: 6.22rem;
  position: absolute;
  left: 4.1rem;
  top: 0.5rem;
}

.g-head .logor {
  width: 2.09rem;
  position: absolute;
  right: 1.04rem;
  top: 0.69rem;
}

.g-head .btns {
  position: absolute;
  right: 1.04rem;
  top: 0.19rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.g-head .btns a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 0.3rem;
  padding: 0 0.18rem;
  font-size: 0.14rem;
  color: #666;
  position: relative;
  margin-left: 0.02rem;
  line-height: 1em;
}

.g-head .btns a:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0.3rem;
  background: -webkit-linear-gradient(top, #104FBD 0%, #4C83E3 100%);
  background: linear-gradient(180deg, #104FBD 0%, #4C83E3 100%);
  opacity: 0;
}

.g-head .btns a .ico {
  width: 0.18rem;
  position: relative;
  margin-right: 0.07rem;
}

.g-head .btns a .ico img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.g-head .btns a em {
  position: relative;
}

/*.g-head .btns a:hover {
  color: #fff;
}*/

.g-head .btns a:hover:before {
  opacity: 1;
}

/*.g-head .btns a:hover .ico img:nth-child(1) {
  opacity: 0;
}

.g-head .btns a:hover .ico img:nth-child(2) {
  opacity: 1;
}*/

@media screen and (min-width: 800px) {
  .g-nav {
    height: 0.6rem;
    background: -webkit-linear-gradient(bottom, #104FBD 0%, #4C83E3 100%);
    background: linear-gradient(to top, #104FBD 0%, #4C83E3 100%);
  }

  .g-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .g-nav a.name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0.6rem;
    color: #fff;
    font-size: 0.18rem;
    padding: 0 0.15rem;
  }
}

.g-foot {
  background: #393939;
  position: relative;
  z-index: 5;
}

.g-foot .wal {
  min-height: 2.75rem;
}

.g-foot .links {
  border-bottom: #4f4f4f solid 1px;
  padding: 0.25rem 0.2rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 0.43rem;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}

.g-foot .links .select {
  position: relative;
  z-index: 2;
}

.g-foot .links .select .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0.14rem;
  font-size: 0.16rem;
  color: #d6d6d6;
  height: 0.36rem;
  background: #343333;
}

.g-foot .links .select .name:after {
  content: "";
  font-family: "swiper-icons";
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.g-foot .links .select .select-layer {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 100%;
  background: #343333;
  padding: 0.06rem 0.14rem;
  display: none;
  max-height: 3rem;
  overflow-y: auto;
}

.g-foot .links .select .select-layer::-webkit-scrollbar {
  width: .06rem;
  border-radius: .06rem;
}

.g-foot .links .select .select-layer::-webkit-scrollbar-thumb {
  background: #1256cd;
  border-radius: .06rem;
}

.g-foot .links .select .select-layer::-webkit-scrollbar-track {
  background: rgba(0,0,0,.1);
  border-radius: .06rem;
}

.g-foot .links .select .select-layer dd {
  border-bottom: rgba(255,255,255,.1) solid 1px;
}

.g-foot .links .select .select-layer dd a {
  display: block;
  font-size: 0.16rem;
  color: #d6d6d6;
  line-height: 1.5em;
  padding: 0.09rem 0;
}

.g-foot .links .select .select-layer dd a:hover {
  color: #fff;
}

.g-foot .links .select:hover {
  z-index: 5;
}

.g-foot .links .select:hover .select-layer {
  display: block;
}

.g-foot .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.35rem 0 0.4rem 0;
  font-size: 0.18rem;
  color: #eee;
}

.g-foot .row>.img {
  width: 0.9rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.g-foot .row .list {
  width: 9.32rem;
  margin-left: 0.08rem;
}

.g-foot .row .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.g-foot .row .list li {
  line-height: 0.4rem;
  margin-right: 0.2rem;
}

.g-foot .row .list li .img {
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1.42rem;
  margin-left: 0.2rem;
}

.g-foot .row .share {
  margin-left: auto;
}

.g-foot .row .share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.g-foot .row .share li {
  width: 0.5rem;
  margin-left: 0.19rem;
  position: relative;
}

.g-foot .row .share li .layer {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1.2rem;
  padding: 0.06rem;
  background: #fff;
  bottom: 100%;
  display: none;
  margin-bottom: 0.12rem;
}

.g-foot .row .share li .layer:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -0.03rem;
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
}

.g-foot .row .share li .layer img {
  position: relative;
  z-index: 5;
}

.g-foot .row .share li:hover {
  z-index: 5;
}

.g-foot .row .share li:hover .layer {
  display: block;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 0.5rem;
  }

  .wal,
  .wal2 {
    margin: 0 .6rem;
  }

  body.navShow {
    overflow: hidden;
  }

  body.navShow .g-head .navA:after {
    content: "?";
  }

  body.navShow .g-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .g-head {
    height: 1.28rem;
  }

  .g-head .head {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    right: 0;
  }

  .g-head .logo {
    width: 2.6rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .g-head .words {
    display: none;
  }

  .g-head .btns {
    right: 0.8rem;
    top: 0.1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .g-head .btns a {
    height: 0.5rem;
    padding: 0 0.22rem;
    font-size: 0.24rem;
  }

  .g-head .btns a .ico {
    width: 0.24rem;
  }

  .g-head .logor {
    right: 1rem;
  }

  .g-head .navA {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 105;
    top: 0;
    right: -0.3rem;
    font-size: 0.44rem;
    width: 1rem;
    height: 1.28rem;
  }

  .g-head .navA:after {
    content: "";
    font-family: "swiper-icons";
  }

  .g-nav {
    background: #fff;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 1.28rem;
    right: 0;
    height: 100vh;
    padding: 0.3rem 0.5rem ;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .5s;
    transition: .5s;
  }

  .g-nav .wal {
    margin: 0;
  }

  .g-nav ul {
    margin-right: -0.5rem;
    padding-right: 0.5rem;
    max-height: calc(100vh - 2.2rem);
    overflow-y: auto;
  }

  .g-nav li {
    border-bottom: #eee solid 1px;
  }

  .g-nav li:last-child {
    border-bottom: 0;
  }

  .g-nav li a.name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1rem;
    font-size: 0.28rem;
  }

  .g-foot .links {
    padding: 0.5rem 0;
    grid-gap: 0.2rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .g-foot .links .select .name {
    padding: 0 0.14rem 0 0.2rem;
    font-size: 0.24rem;
    height: 0.66rem;
  }

  .g-foot .links .select .select-layer {
    padding: 0.06rem 0.2rem;
  }

  .g-foot .links .select .select-layer dd a {
    font-size: 0.24rem;
    padding: 0.14rem 0;
  }

  .g-foot .links .select:hover {
    z-index: 5;
  }

  .g-foot .links .select:hover .select-layer {
    display: block;
  }

  .g-foot .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.35rem 0 0.5rem 0;
    font-size: 0.24rem;
  }

  .g-foot .row>.img {
    width: 1rem;
  }

  .g-foot .row .list {
    width: 100%;
    margin-left: 0;
    padding-top: 0.3rem;
  }

  .g-foot .row .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -0.2rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .g-foot .row .list li {
    padding: 0.05rem 0;
  }

  .g-foot .row .share {
    width: 100%;
    padding-top: 0.3rem;
  }

  .g-foot .row .share ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .g-foot .row .share li {
    margin: 0 0.1rem;
  }
}

@media screen and (max-width: 550px) {
  .wal,
  .wal2 {
    margin: 0 .3rem;
  }
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@-webkit-keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoomAnima {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes zoomAnima {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

body:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 10.54rem;
  background: -webkit-linear-gradient(top, #D0E5FF, #fff);
  background: linear-gradient(to bottom, #D0E5FF, #fff);
}

#app {
  min-height: 100vh;
  position: relative;
}

.library {
  padding-bottom: 0.8rem;
}

.library .search {
  padding: 0.46rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.library .search .input {
  width: 6.75rem;
  height: 0.64rem;
  border-radius: 0.04rem;
  opacity: 1;
  border: 1px solid #9e9e9e;
}

.library .search .input input::-webkit-input-placeholder {
  color: #9e9e9e;
}

.library .search .input input::-moz-placeholder {
  color: #9e9e9e;
}

.library .search .input input:-moz-placeholder {
  color: #9e9e9e;
}

.library .search .input input:-ms-input-placeholder {
  color: #9e9e9e;
}

.library .search .input textarea::-webkit-input-placeholder {
  color: #9e9e9e;
}

.library .search .input textarea::-moz-placeholder {
  color: #9e9e9e;
}

.library .search .input textarea:-moz-placeholder {
  color: #9e9e9e;
}

.library .search .input textarea:-ms-input-placeholder {
  color: #9e9e9e;
}

.library .search .input input {
  width: 100%;
  height: 0.62rem;
  line-height: 0.62rem;
  font-size: 0.16rem;
  color: #333;
  padding-left: 0.32rem;
}

.library .search .submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background: #1256cd;
  cursor: pointer;
  font-size: 0.24rem;
  width: 1.35rem;
  margin-left: 0.2rem;
  height: 0.64rem;
  border-radius: 0.04rem;
}

.library .search .submit span {
  font-family: "swiper-icons";
  margin-right: 0.08rem;
}

.library>.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.library .w1080 {
  width: 10.8rem;
}

.library .w360 {
  width: 3.6rem;
}

.library .filter {
  position: relative;
  font-size: 0.2rem;
}

.library .filter ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.library .filter li {
  margin-right: 0.44rem;
}

.library .filter li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.4rem;
  position: relative;
}

.library .filter li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 0.04rem;
  background: #1256cd;
  border-radius: 0.04rem;
}

.library .filter li a:hover,
.library .filter li a.on {
  color: #1256cd;
}

.library .filter li a:hover:before,
.library .filter li a.on:before {
  width: 0.5rem;
}

.library .filter .btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.8rem;
  height: 0.4rem;
  background: #f7f7f7;
  border-radius: 0.08rem;
}

.library .filter .btn:hover {
  background: #1256cd;
  color: #fff;
}

.library .list {
  padding: 0.28rem 0 0 0;
}

.library .list>ul>li.li_01 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.57rem;
  font-size: 0.2rem;
}

.library .list>ul>li.li_01 a .name {
  height: 1.3em;
  line-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.library .list>ul>li.li_01 a .ico {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.26rem;
  margin-left: 0.1rem;
}

.library .list>ul>li.li_02 {
  border-bottom: #d8d8d8 solid 1px;
}

.library .list>ul>li.li_02 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.3rem 0 0.2rem 0;
}

.library .list>ul>li.li_02 a .bd {
  width: 100%;
  padding-right: 0.45rem;
}

.library .list>ul>li.li_02 a .bd .name {
  font-size: 0.2rem;
  height: 1.3em;
  line-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.library .list>ul>li.li_02 a .bd p {
  font-size: 0.14rem;
  line-height: 1.8em;
  max-height: 3.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #9e9e9e;
  margin-top: 0.2rem;
}

.library .list>ul>li.li_02 a .bd .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.35rem;
  font-size: 0.12rem;
  max-width: 6.95rem;
}

.library .list>ul>li.li_02 a .bd .info em {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #1256cd;
  border-radius: 0.04rem;
  min-width: 0.67rem;
  padding: 0 0.09rem;
  margin-right: 0.1rem;
  height: 0.23rem;
  background: #ebf2ff;
}

.library .list>ul>li.li_02 a .bd .info .time {
  margin-left: auto;
  color: #9e9e9e;
}

.library .list>ul>li.li_02 a .zoomImg {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.2rem;
  border-radius: 0.09rem;
}

.library .list>ul>li.li_02 a .zoomImg img {
  height: 1.64rem;
}

.library .list>ul>li.li_02.li_02_01 a {
  padding-top: 0.15rem;
}

.library .list>ul>li.li_03 {
  border-bottom: #d8d8d8 solid 1px;
  padding-bottom: 0.2rem;
}

.library .list>ul>li.li_03 .name {
  display: block;
  font-size: 0.2rem;
  padding: 0.2rem 0 0.18rem 0;
}

.library .list>ul>li.li_03 dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.32rem;
}

.library .list>ul>li.li_video {
  padding-top: 0.4rem;
  border-bottom: #d8d8d8 solid 1px;
}

.library .list>ul>li.li_video ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.6rem;
}

.library .list>ul>li.li_video li a {
  display: block;
}

.library .list>ul>li.li_video li a .zoomImg {
  border-radius: 0.1rem;
}

.library .list>ul>li.li_video li a .zoomImg img {
  height: 3.1rem;
}

.library .list>ul>li.li_video li a .zoomImg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url(../images/play.png;vpn_img) center no-repeat;
  background-size: 0.42rem;
}

.library .list>ul>li.li_video li a .zoomImg .time {
  position: absolute;
  z-index: 5;
  right: 0.2rem;
  bottom: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
  color: #fff;
  width: 0.7rem;
  height: 0.3rem;
  background: rgba(59,59,59,.8);
  border-radius: 0.06rem;
}

.library .list>ul>li.li_video li a .name {
  font-size: 0.2rem;
  padding: 0.25rem 0 0.35rem 0;
}

.library .recommend .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.6rem;
  background: #f4f4f4;
  font-size: 0.2rem;
  padding-left: 0.22rem;
}

.library .recommend .title img {
  width: 0.25rem;
  margin-right: 0.13rem;
}

.library .recommend .list-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.library .recommend .list-wrapper li a {
  display: block;
  position: relative;
}

.library .recommend .list-wrapper li a .zoomImg img {
  height: 2.7rem;
}

.library .recommend .list-wrapper li a .name {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(36,36,36,.8);
  padding: 0.25rem 0.25rem 0.1rem 0.25rem;
  font-size: 0.16rem;
  color: #fff;
}

.library .recommend .list-wrapper .dots {
  position: absolute;
  z-index: 5;
  left: 0;
  width: 100%;
  padding-right: 0.37rem;
  bottom: 0.4rem !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.library .recommend .list-wrapper .dots span {
  margin-left: 0.07rem;
  border-radius: 50%;
  width: 0.08rem;
  height: 0.08rem;
  background: #a8a8a8;
}

.library .recommend .list-wrapper .dots span.on {
  background: #fff;
}

.library .hot-list {
  background: #fff;
  padding: 0 0.2rem;
  margin-top: 0.4rem;
}

.library .hot-list .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.2rem;
  line-height: 0.24rem;
  padding: 0.2rem 0 0.16rem 0;
  border-bottom: #d8d8d8 solid 1px;
}

.library .hot-list .title img {
  width: 0.18rem;
  margin-right: 0.16rem;
}

.library .hot-list ul {
  padding: 0.09rem 0 0.1rem 0;
}

.library .hot-list li a {
  display: block;
  height: 0.46rem;
  line-height: 0.46rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-left: 0.49rem;
  font-size: 0.16rem;
  position: relative;
}

.library .hot-list li a:after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0.03rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.16rem;
  color: #999;
  width: 0.28rem;
  height: 0.28rem;
  background: -webkit-linear-gradient(right, rgba(238, 238, 238, 0) 0%, #E2E2E2 100%);
  background: linear-gradient(to left, rgba(238, 238, 238, 0) 0%, #E2E2E2 100%);
  border-radius: 0.04rem;
}

.library .hot-list li:nth-child(1) a:after,
.library .hot-list li:nth-child(2) a:after,
.library .hot-list li:nth-child(3) a:after {
  background: -webkit-linear-gradient(right, rgba(255, 226, 226, 0) 0%, #FADBDB 100%);
  background: linear-gradient(to left, rgba(255, 226, 226, 0) 0%, #FADBDB 100%);
  color: #b01717;
}

.library .hot-list li:nth-child(1) a:after {
  content: "01";
}

.library .hot-list li:nth-child(2) a:after {
  content: "02";
}

.library .hot-list li:nth-child(3) a:after {
  content: "03";
}

.library .hot-list li:nth-child(4) a:after {
  content: "04";
}

.library .hot-list li:nth-child(5) a:after {
  content: "05";
}

.library .hot-list li:nth-child(6) a:after {
  content: "06";
}

.library .hot-list li:nth-child(7) a:after {
  content: "07";
}

.library .hot-list li:nth-child(8) a:after {
  content: "08";
}

.library .hot-list li:nth-child(9) a:after {
  content: "09";
}

.library .hot-list li:nth-child(10) a:after {
  content: "10";
}

.library .hot-list li:nth-child(11) a:after {
  content: "11";
}

.library .hot-list li:nth-child(12) a:after {
  content: "12";
}

.library .hot-list li:nth-child(13) a:after {
  content: "13";
}

.library .hot-list li:nth-child(14) a:after {
  content: "14";
}

.library .hot-list li:nth-child(15) a:after {
  content: "15";
}

.library .hot-list li:nth-child(16) a:after {
  content: "16";
}

.library .hot-list li:nth-child(17) a:after {
  content: "17";
}

.library .hot-list li:nth-child(18) a:after {
  content: "18";
}

.library .hot-list li:nth-child(19) a:after {
  content: "19";
}

.library .hot-list li:nth-child(20) a:after {
  content: "20";
}

.videos-1 {
  position: relative;
  padding-top: 0.6rem;
}

.videos-1 .img-list {
  height: 6.86rem;
}

.videos-1 .img-list li {
  position: relative;
  display: none;
}

.videos-1 .img-list li a {
  display: block;
}

.videos-1 .img-list li a img {
  width: 100%;
  height: 6.86rem;
}

.videos-1 .img-list li a .name {
  position: absolute;
  z-index: 5;
  left: 0.3rem;
  bottom: 0;
  height: 0.7rem;
  line-height: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  right: 0.3rem;
  font-size: 0.24rem;
  color: #fff;
  padding-left: 0.42rem;
  background: url(../images/btn-1.svg;vpn_img) left center no-repeat;
  background-size: 0.36rem;
}

.videos-1 .list {
  position: absolute;
  z-index: 5;
  top: 0.6rem;
  right: 0;
  bottom: 0;
  background: #1d1d1d;
  width: 3.6rem;
  padding: 0.45rem 0;
}

.videos-1 .list li {
  color: #a2a2a2;
  font-size: 0.18rem;
  height: 0.66rem;
  line-height: 0.66rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0 0.15rem 0 0.45rem;
  position: relative;
}

.videos-1 .list li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.34rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0.03rem;
  background: #fff;
  opacity: 1;
}

.videos-1 .list li:hover,
.videos-1 .list li.on {
  color: #fff;
}

.videos-1 .list li:hover:before,
.videos-1 .list li.on:before {
  left: 0.14rem;
  width: 0.2rem;
}

.videos-1 .list li.on {
  font-size: 0.18rem;
  font-weight: bold;
}

.videos .navs {
  padding: 0 0.18rem 0.4rem 0.18rem;
}

.videos .navs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}
.videos .navs li{margin-right: .4rem}
.videos .navs a {
  display: block;
  height: 0.56rem;
  line-height: 0.42rem;
  font-size: 0.24rem;
  position: relative;
}

.videos .navs a:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0.04rem;
  background: #1256cd;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.videos .navs a:hover,
.videos .navs li.on a {
  color: #1256cd;
}

.videos .navs a:hover:before,
.videos .navs li.on a:before {
  width: 100%;
}

.videos .navs li.on a {
  font-weight: bold;
}

.videos .list ul {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.47rem 0.32rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(2, 1fr);
}

.videos .list li a {
  display: block;
  text-align: center;
}

.videos .list li a .zoomImg img {
  height: 3rem;
}

.videos .list li a .zoomImg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url(../images/btn-2.svg;vpn_img) center no-repeat;
  background-size: 0.6rem;
}

.videos .list li a .name {
  font-size: 0.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.page-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.6rem 0 1rem 0;
  font-size: 0.16rem;
}

.page-num p {
  margin-right: 0.2rem;
}

.page-num a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0.03rem;
  border: #eee solid 1px;
  min-width: 0.4rem;
  height: 0.4rem;
  text-align: center;
  padding: 0 0.06rem;
}

.page-num a:hover,
.page-num a.on {
  background: #1256cd;
  border-color: #1256cd;
  color: #fff;
}

.page-num a.arrow {
  width: 0.8rem;
}

.page-num>span {
  margin: 0 0.04rem;
}

.page-num .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.2rem;
}

.page-num .form .input {
  width: 0.6rem;
  height: 0.4rem;
  border: #eee solid 1px;
  margin: 0 0.08rem;
}

.page-num .form .input input {
  width: 100%;
  height: 0.38rem;
  line-height: 0.38rem;
  text-align: center;
  font-size: 0.16rem;
  color: #333;
}

.page-num .form .submit {
  margin-left: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.4rem;
  border: #eee solid 1px;
  cursor: pointer;
}

.matrix {
  max-width: 14rem;
  padding: 0.52rem 0 0.6rem 0;
}

.matrix .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.matrix .title img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.matrix .title img.img-1 {
  width: 0.46rem;
}

.matrix .title img.img-2 {
  width: 0.5rem;
}

.matrix .title .line {
  width: 50%;
  height: 1px;
  background: #015293;
}

.matrix .title h2 {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.36rem;
  line-height: 1em;
  color: #015293;
}

.matrix .btns {
  position: relative;
  border-bottom: #dcdcdc solid 1px;
}

.matrix .btns ul {
  max-width: 10rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.matrix .btns li {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.49rem 0 0.06rem 0;
}

.matrix .btns li .ico {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  height: 0.4rem;
}

.matrix .btns li .ico img {
  height: 0.4rem;
}

.matrix .btns li .ico img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.matrix .btns li .name {
  margin-left: 0.06rem;
  font-size: 0.24rem;
  color: #666;
  -webkit-transition: color .5s;
  transition: color .5s;
}

.matrix .btns li:hover .ico img:nth-child(1),
.matrix .btns li.on .ico img:nth-child(1) {
  opacity: 0;
}

.matrix .btns li:hover .ico img:nth-child(2),
.matrix .btns li.on .ico img:nth-child(2) {
  opacity: 1;
}

.matrix .btns li:hover .name,
.matrix .btns li.on .name {
  color: #015293;
}

.matrix .list {
  padding: 0.4rem 0.75rem 0 0.75rem;
}

.matrix .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.27rem 0.67rem;
}

.matrix .list li {
  background: #fff;
  padding: 0.2rem 0.2rem 0;
}

.matrix .list li .img img {
  width: 100%;
}

.matrix .list li .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.12rem 0 0.17rem 0;
  font-size: 0.16rem;
  color: #666;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}

.matrix .list li .name img {
  width: 0.2rem;
}

.matrix .list li .name em {
  margin-left: 0.06rem;
}

.page-banner,
.page-banner2 {
  width: 100%;
  position: relative;
  -webkit-mask: -webkit-linear-gradient(top, #fff 80%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, #fff 80%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
}

.page-banner li img,
.page-banner2 li img {
  width: 100%;
  height: 5.6rem;
}

.page-banner .arrow a,
.page-banner2 .arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "swiper-icons";
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  font-size: 0.22rem;
  color: #fff;
}

.page-banner .arrow a.prev,
.page-banner2 .arrow a.prev {
  left: 1rem;
}

.page-banner .arrow a.next,
.page-banner2 .arrow a.next {
  right: 1rem;
}

.page-banner .arrow a:hover,
.page-banner2 .arrow a:hover {
  background-color: #1256cd;
}

.page-banner2 {
  -webkit-mask: -webkit-linear-gradient(top, #fff 50%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(to bottom, #fff 50%, rgba(0, 0, 0, 0) 100%);
}

.page-banner2 li img {
  height: 6.56rem;
}

.kxyl-1 {
  padding: 0.6rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.kxyl-1>.hd {
  position: relative;
  min-height: 1.44rem;
  text-align: center;
  width: 100%;
}

.kxyl-1>.hd .tag {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0 0.2rem;
  min-width: 2.2rem;
  font-size: 0.24rem;
  font-weight: bold;
  color: #cc0008;
  height: 0.7rem;
  background: -webkit-linear-gradient(top, #FCF0F0 0%, rgba(250, 236, 236, 0.12) 100%);
  background: linear-gradient(180deg, #FCF0F0 0%, rgba(250, 236, 236, 0.12) 100%);
  border: 1px solid #ffefef;
}

.kxyl-1>.hd h2 {
  color: #111;
  font-size: 0.38rem;
  line-height: 0.7rem;
}

.kxyl-1>.hd p {
  font-size: 0.2rem;
  padding: 0.1rem 0 0.3rem 0;
}

.kxyl-1 .imgs {
  width: 8rem;
  overflow: hidden;
  position: relative;
}

.kxyl-1 .imgs li img {
  height: 5rem;
}

.kxyl-1 .imgs .arrow {
  position: absolute;
  z-index: 5;
  bottom: 0.3rem;
  right: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.kxyl-1 .imgs .arrow a {
  font-family: "swiper-icons";
  color: #fff;
  font-size: 0.24rem;
}

.kxyl-1 .imgs .arrow .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.1rem;
}

.kxyl-1 .imgs .arrow .dots span {
  border-radius: 0.04rem;
  margin: 0 0.08rem;
  -webkit-transition: .5s;
  transition: .5s;
  width: 0.08rem;
  height: 0.08rem;
  background: #d8d8d8;
}

.kxyl-1 .imgs .arrow .dots span.on {
  width: 0.3rem;
  background: #cc0008;
}

.kxyl-1 .list {
  width: 5.6rem;
}

.kxyl-1 .list .hd h5 a {
  color: #cc0008;
  font-size: 0.24rem;
}

.kxyl-1 .list .hd h5 a:hover {
  text-decoration: underline;
}

.kxyl-1 .list .hd p {
  font-size: 0.16rem;
  line-height: 0.25rem;
  color: #666;
  padding: 0.2rem 0 0.2rem 0;
}

.kxyl-1 .list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.65rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.18rem;
}

.kxyl-1 .list li a:before {
  content: "·";
  font-weight: bold;
  color: #cc0008;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.08rem;
}

.kxyl-1 .list li a .name {
  width: 100%;
}

.kxyl-1 .list li a .time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #9e9e9e;
}

.kxyl-2 {
  background: url(../images/img1920_2.jpg;vpn_img) center no-repeat;
  background-size: cover;
  min-height: 5.7rem;
}

.kxyl-2 .title {
  text-align: center;
  font-size: 0.36rem;
  line-height: 0.72rem;
  color: #fff;
  padding: 0.4rem 0 0.47rem 0;
}

.kxyl-2 .list {
  margin-right: -0.2rem;
  margin-left: -0.2rem;
  position: relative;
}

.kxyl-2 .list .arrow a {
  font-family: "swiper-icons";
  color: #fff;
  font-size: 0.32rem;
  position: absolute;
  z-index: 5;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.kxyl-2 .list .arrow a.prev {
  left: -0.3rem;
}

.kxyl-2 .list .arrow a.next {
  right: -0.3rem;
}

.kxyl-2 .list-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.kxyl-2 .list-wrapper li {
  padding: 0 0.2rem;
}

.kxyl-2 .list-wrapper li a {
  display: block;
  position: relative;
}

.kxyl-2 .list-wrapper li a .zoomImg img {
  height: 3rem;
}

.kxyl-2 .list-wrapper li a .name {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.6rem;
  background: rgba(255,255,255,.9);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.2rem;
}

.kxyl-2 .list-wrapper li a .name em {
  min-width: 2rem;
  text-align: center;
  padding: 0 0.2rem;
}

.kxyl-2 .list-wrapper li a .name .i-l {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 0.5rem;
}

.kxyl-2 .list-wrapper li a .name .i-l:before,
.kxyl-2 .list-wrapper li a .name .i-l:after {
  content: "";
  width: 0.19rem;
  height: 0.19rem;
  background: url(../images/img22.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
}

.kxyl-2 .list-wrapper li a .name .i-l:before {
  width: 0.14rem;
  height: 0.14rem;
}

.kxyl-2 .list-wrapper li a .name .i-r {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 0.5rem;
}

.kxyl-2 .list-wrapper li a .name .i-r:before,
.kxyl-2 .list-wrapper li a .name .i-r:after {
  content: "";
  width: 0.19rem;
  height: 0.19rem;
  background: url(../images/img22.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
}

.kxyl-2 .list-wrapper li a .name .i-r:after {
  width: 0.14rem;
  height: 0.14rem;
}

.kxyl-2 .list-wrapper li a:hover .name em {
  font-weight: bold;
  color: #cc0008;
}

.kxyl-3 {
  background: url(../images/kxyl-3.jpg;vpn_img) center no-repeat;
  background-size: cover;
}

.kxyl-3 .wal2 {
  min-height: 7.4rem;
  padding: 0.6rem 0 0.36rem 0;
}

.kxyl-3 .title {
  text-align: center;
  font-size: 0.36rem;
  color: #cc0008;
  line-height: 0.72rem;
}

.kxyl-3 .list {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.kxyl-3 .list .list-wrapper2 {
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}

.kxyl-3 .list .list-wrapper li {
  padding: 0.3rem 0.4rem 0.2rem 0.4rem;
  height: 5.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.kxyl-3 .list .list-wrapper li .item {
  width: 2.6rem;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0.2rem 0.25rem;
  position: relative;
  left: 0;
}

.kxyl-3 .list .list-wrapper li .item .zoomImg img {
  height: 2.1rem;
}

.kxyl-3 .list .list-wrapper li .item .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.15rem 0 0.12rem 0;
}

.kxyl-3 .list .list-wrapper li .item .name:before {
  content: "";
  width: 0.04rem;
  height: 0.18rem;
  background: #c61722;
}

.kxyl-3 .list .list-wrapper li .item .name h5 {
  font-size: 0.24rem;
  padding: 0 0.05rem 0 0.08rem;
}

.kxyl-3 .list .list-wrapper li .item .name em {
  font-size: 0.16rem;
}

.kxyl-3 .list .list-wrapper li .item .info {
  height: 0;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 0.16rem;
  line-height: 0.25rem;
  color: #adadad;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.kxyl-3 .list .list-wrapper li.swiper-slide-prev .item {
  left: -0.3rem;
}

.kxyl-3 .list .list-wrapper li.swiper-slide-next .item {
  left: 0.3rem;
}

.kxyl-3 .list .list-wrapper li.swiper-slide-active .item {
  background: #fff;
  box-shadow: 0 0.08rem 0.21rem 0 rgba(120,39,44,.12);
  width: 3.26rem;
  left: 0;
}

.kxyl-3 .list .list-wrapper li.swiper-slide-active .item .zoomImg img {
  height: 2.76rem;
}

.kxyl-3 .list .list-wrapper li.swiper-slide-active .item .info {
  height: 0.75rem;
  opacity: 1;
}

.kxyl-3 .arrow {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 3.05rem;
}

.kxyl-3 .arrow:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #d8d8d8;
}

.kxyl-3 .arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "swiper-icons";
  position: relative;
  z-index: 5;
  font-size: 0.18rem;
  color: #ce3942;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border: 1px solid #f9cdd0;
}

.kxyl-3 .arrow a:hover {
  background: #ce3942;
  color: #fff;
}

.kxyl-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 0.6rem;
}

.kxyl-4 .w950 {
  width: 9.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.6rem 0.3rem;
}

.kxyl-4 .w950 .title {
  border-bottom: #9e9e9e solid 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0.14rem;
}

.kxyl-4 .w950 .title h2 {
  font-size: 0.24rem;
  line-height: 1em;
  color: #111;
}

.kxyl-4 .w950 .title a.more {
  font-size: 0.14rem;
  color: #666;
}

.kxyl-4 .w950 .title a.more:hover {
  color: #cc0008;
}

.kxyl-4 .w950 .hd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.2rem;
}

.kxyl-4 .w950 .hd a .zoomImg {
  width: 1.9rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.kxyl-4 .w950 .hd a .zoomImg img {
  height: 1.12rem;
}

.kxyl-4 .w950 .hd a .col {
  width: 100%;
  padding-left: 0.2rem;
}

.kxyl-4 .w950 .hd a .col h5 {
  font-size: 0.18rem;
  margin-bottom: 0.15rem;
}

.kxyl-4 .w950 .hd a .col p {
  font-size: 0.14rem;
  line-height: 0.26rem;
  max-height: 0.52rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kxyl-4 .w950 ul li {
  border-bottom: #b0bbd1 dashed 1px;
  padding-top: 0.08rem;
}

.kxyl-4 .w950 ul li a {
  display: block;
  height: 0.45rem;
  line-height: 0.45rem;
  font-size: 0.16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  padding-left: 1em;
}

.kxyl-4 .w950 ul li a:before {
  content: "";
  display: block;
  position: absolute;
  content: "·";
  color: #cc0008;
  left: 0.04rem;
  top: 0;
  font-weight: bold;
}

.kxyl-4 .w950 ul.ul-2 li a {
  height: 0.37rem;
  line-height: 0.37rem;
}

.kxyl-4 .w410 {
  width: 4.1rem;
}

.kxyl-4 .w410 .video {
  position: relative;
}

.kxyl-4 .w410 .video img {
  height: 2.2rem;
  width: 100%;
}

.kxyl-4 .w410 .video .video-btn {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: url(../images/play.png;vpn_img) center no-repeat;
  background-size: 0.5rem;
  cursor: pointer;
}

.kxyl-4 .w410 .report .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.35rem 0 0.22rem 0;
}

.kxyl-4 .w410 .report .title img {
  width: 0.26rem;
  margin-right: 0.04rem;
}

.kxyl-4 .w410 .report .title h2 {
  font-size: 0.24rem;
  color: #111;
  line-height: 1em;
}

.kxyl-4 .w410 .report .list-1 ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem;
}

.kxyl-4 .w410 .report .list-1 li a {
  display: block;
  background: #f7f7f7;
}

.kxyl-4 .w410 .report .list-1 li a .zoomImg img {
  height: 1.1rem;
}

.kxyl-4 .w410 .report .list-1 li a .bd {
  min-height: 1.5rem;
  padding: 0.04rem 0.1rem 0.12rem 0.1rem;
}

.kxyl-4 .w410 .report .list-1 li a .bd .tag {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #9e9e9e;

overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kxyl-4 .w410 .report .list-1 li a .bd .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.04rem;
}

.kxyl-4 .w410 .report .list-1 li a .bd .time {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #9e9e9e;
  margin-top: 0.06rem;
}

.kxyl-4 .w410 .report .list-2 {
  padding-top: 0.1rem;
}

.kxyl-4 .w410 .report .list-2 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.36rem;
}

.kxyl-4 .w410 .report .list-2 a .name {
  font-size: 0.16rem;
  height: 1.5em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0 0.3rem 0 1em;
  position: relative;
  width: 100%;
}

.kxyl-4 .w410 .report .list-2 a .name:before {
  content: "";
  display: block;
  position: absolute;
  content: "·";
  color: #cc0008;
  left: 0.04rem;
  top: 0;
  font-weight: bold;
}

.kxyl-4 .w410 .report .list-2 a .time {
  font-size: 0.14rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #9e9e9e;
}

.kxyl-5 .title {
  text-align: center;
  font-size: 0.36rem;
  line-height: 0.56rem;
  color: #cc0008;
  padding: 0.55rem 0 0.3rem 0;
}

.kxyl-5 .list {
  padding-bottom: 0.82rem;
}

.kxyl-5 .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem 0.27rem;
}

.kxyl-5 .list li a {
  display: block;
}

.page-title {
  font-family: "SourceHanSerifCN-Medium";
  padding: 0.4rem 0;
  position: relative;
}

.page-title h2 {
  text-align: center;
  font-size: 0.36rem;
  line-height: 0.49rem;
  padding-bottom: 0.21rem;
  background: url(../images/img13.png;vpn_img) center bottom no-repeat;
  background-size: auto 0.13rem;
  font-weight: normal;
}

.page-title h2 em {
  color: #104fbd;
}

.page-title .more {
  font-size: 0.18rem;
  position: absolute;
  top: 0.82rem;
  right: 0;
}

.ksts-1 {
  background: #f7f7f7;
  padding-bottom: 0.77rem;
}

@media screen and (min-width: 800px) {
  .ksts-1 .img-list ul {
    display: -ms-grid;
    display: grid;
    grid-gap: 0.3rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.ksts-1 .img-list li a {
  display: block;
  position: relative;
}

.ksts-1 .img-list li a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  inset: 0;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 98%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 98%);
}

.ksts-1 .img-list li a .zoomImg img {
  height: 2.95rem;
}

.ksts-1 .img-list li a .name {
  position: absolute;
  z-index: 5;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #fff;
}

.ksts-1 .img-list li a .time {
  position: absolute;
  z-index: 5;
  left: 0.24rem;
  top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.62rem;
  color: #fff;
  font-size: 0.12rem;
  height: 0.63rem;
  background: rgba(48,102,198,.79);
}

.ksts-1 .img-list li a .time .day {
  font-size: 0.28rem;
  line-height: 1em;
}

.ksts-1 .list {
  padding-top: 0.45rem;
}

@media screen and (min-width: 800px) {
  .ksts-1 .list ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.27rem;
  }
}

.ksts-1 .list li a {
  display: block;
  min-height: 2.84rem;
  position: relative;
  padding: 0 0.25rem 0.5rem 0.35rem;
  color: #000;
  background: #fff;
  border: 1px solid #e6e6e6;
}

.ksts-1 .list li a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.2rem;
  right: 0.25rem;
  content: "";
  font-family: "swiper-icons";
  font-size: 0.2rem;
  color: #847878;
}

.ksts-1 .list li a .time {
  font-size: 0.18rem;
  color: #3066c6;
  font-family: "SourceHanSerifCN-Medium";
  padding: 0.33rem 0;
  position: relative;
}

.ksts-1 .list li a .time:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0.28rem;
  height: 0.03rem;
  background: #3066c6;
}

.ksts-1 .list li a .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ksts-1 .list li a p {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #888;
  height: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 0.08rem;
}

.ksts-1 .list li a:hover {
  color: #3066c6;
  border-color: #3066c6;
  box-shadow: 0 0.15rem 0.1rem 0 rgba(7,52,132,.09);
}

.ksts-1 .list li a:hover .name {
  font-weight: bold;
}

.ksts-1 .list li a:hover:before {
  color: #3066c6;
}

.ksts-2 {
  position: relative;
}

.ksts-2:before {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  margin-right: 0.15rem;
  top: 0;
  width: 50vw;
  height: 7.5rem;
  background: url(../images/img943.jpg;vpn_img) center no-repeat;
  background-size: cover;
}

.ksts-2 .wal2 {
  min-height: 7.5rem;
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ksts-2 .page-title {
  height: 1.5rem;
  color: #fff;
  width: 100%;
}

.ksts-2 .page-title h2 {
  width: 1.62rem;
}

.ksts-2 .list-1 {
  width: 10.6rem;
  height: 6rem;
  overflow: hidden;
  position: relative;
}

.ksts-2 .list-1 li a {
  display: block;
  position: relative;
}

.ksts-2 .list-1 li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  height: 2rem;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.ksts-2 .list-1 li a .zoomImg img {
  height: 6rem;
}

.ksts-2 .list-1 li a .name {
  position: absolute;
  z-index: 5;
  left: 0.3rem;
  bottom: 0.3rem;
  right: 0.3rem;
  color: #fff;
  font-size: 0.22rem;
}

.ksts-2 .list-1 .dots-wrapper {
  position: absolute;
  z-index: 5;
  right: 0.1rem;
  bottom: 0.1rem;
}

.ksts-2 .list-1 .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ksts-2 .list-1 .dots-wrapper span {
  width: 0.5rem;
  height: 0.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.03rem;
  color: #fff;
  font-size: 0.2rem;
  font-family: "SourceHanSerifCN-Medium";
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
}

.ksts-2 .list-1 .dots-wrapper span:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  background: -webkit-linear-gradient(top, #678AE8 0%, rgba(103, 138, 232, 0) 82%);
  background: linear-gradient(180deg, #678AE8 0%, rgba(103, 138, 232, 0) 82%);
}

.ksts-2 .list-1 .dots-wrapper span.on {
  width: 0.7rem;
  height: 0.7rem;
  font-size: 0.32rem;
}

.ksts-2 .list-1 .dots-wrapper span.on:before {
  opacity: 1;
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(1):after {
  content: "01";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(2):after {
  content: "02";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(3):after {
  content: "03";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(4):after {
  content: "04";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(5):after {
  content: "05";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(6):after {
  content: "06";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(7):after {
  content: "07";
}

.ksts-2 .list-1 .dots-wrapper span:nth-child(8):after {
  content: "08";
}

.ksts-2 .list-2 {
  width: 3.1rem;
}

.ksts-2 .list-2 li {
  padding-bottom: 0.28rem;
}

.ksts-2 .list-2 li:last-child {
  padding-bottom: 0;
}

.ksts-2 .list-2 li a {
  display: block;
  position: relative;
  padding-bottom: 0.24rem;
  color: #fff;
  background: -webkit-linear-gradient(left, #4586F7 0%, #2849A4 100%);
  background: linear-gradient(to right, #4586F7 0%, #2849A4 100%);
}

.ksts-2 .list-2 li a .zoomImg img {
  height: 1.9rem;
}

.ksts-2 .list-2 li a .time {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 1.5rem;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.05rem;
  width: 1.29rem;
  height: 0.4rem;
  background: url(../images/img129.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
  padding-left: 0.2rem;
}

.ksts-2 .list-2 li a .name {
  font-size: 0.18rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.24rem;
  padding: 0 0.3rem;
}

.ksts-2 .list-3 {
  width: 100%;
  padding-top: 0.3rem;
}

@media screen and (min-width: 800px) {
  .ksts-2 .list-3 ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.33rem;
  }
}

.ksts-2 .list-3 li a {
  display: block;
  position: relative;
  height: 1.46rem;
  padding: 0.2rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.2);
}

.ksts-2 .list-3 li a .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ksts-2 .list-3 li a .time {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.05rem;
  color: #fff;
  width: 1.29rem;
  height: 0.4rem;
  background: url(../images/img129_2.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
  padding-left: 0.2rem;
}

.ksts-2 .list-3 li a .btn {
  position: absolute;
  right: 0.26rem;
  bottom: 0.22rem;
  font-size: 0.12rem;
  color: #3756aa;
  background: url(../images/img14.svg;vpn_img) left center no-repeat;
  background-size: 0.14rem;
  padding-left: 0.2rem;
}

.ksts-2 .list-3 li a:hover {
  color: #2849a4;
}

.ksts-2 .list-3 li a:hover .name {
  font-weight: bold;
}

.ksts-3 {
  padding-bottom: 0.75rem;
}

.ksts-3 .wal2 {
  position: relative;
  min-height: 8.42rem;
  border-bottom: #3d80b7 solid 1px;
}

.ksts-3 .page-title {
  padding-top: 0;
  padding-bottom: 0.45rem;
}

.ksts-3 .page-title h2 {
  width: 1.62rem;
}

.ksts-3 .big-imgs {
  width: 8.03rem;
  overflow: hidden;
  position: relative;
}

.ksts-3 .big-imgs li a {
  display: block;
}

.ksts-3 .big-imgs li a .zoomImg img {
  height: 4.9rem;
}

.ksts-3 .big-imgs li a .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.14rem;
  color: #2455aa;
  height: 0.26rem;
  margin-top: 0.4rem;
}

.ksts-3 .big-imgs li a .time img {
  width: 0.1rem;
  margin-right: 0.07rem;
}

.ksts-3 .big-imgs li a h5 {
  font-size: 0.18rem;
  line-height: 0.3rem;
  margin-top: 0.14rem;
}

.ksts-3 .big-imgs li a p {
  font-size: 0.16rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #3d3d3d;
  margin-top: 0.12rem;
  padding-right: 0.46rem;
}

.ksts-3 .big-imgs .dots-wrapper {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 4.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ksts-3 .big-imgs .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ksts-3 .big-imgs .dots-wrapper .dots span {
  border-radius: 0.07rem;
  margin: 0 0.12rem;
  -webkit-transition: .5s;
  transition: .5s;
  width: 0.13rem;
  height: 0.13rem;
  background: #fff;
  opacity: .3;
}

.ksts-3 .big-imgs .dots-wrapper .dots span.on {
  opacity: 1;
  width: 0.36rem;
}

.ksts-3 .list {
  position: absolute;
  top: 0.2rem;
  right: 0;
  bottom: 0;
  background: #2358b8 url(../images/img838.png;vpn_img) right top no-repeat;
  background-size: auto 8.38rem;
  width: 5.97rem;
}

.ksts-3 .list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.ksts-3 .list li a .zoomImg {
  width: 2.84rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ksts-3 .list li a .zoomImg img {
  height: 1.74rem;
}

.ksts-3 .list li a .col {
  width: 100%;
  padding: 0 0.3rem;
}

.ksts-3 .list li a .col .name {
  font-size: 0.18rem;
  line-height: 0.26rem;
  height: 0.52rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ksts-3 .list li a .col .time {
  font-size: 0.14rem;
  font-family: "SourceHanSerifCN-Medium";
  position: relative;
  padding: 0.2rem 0.18rem;
  color: rgba(255,255,255,.8);
  background: url(../images/time-white.svg;vpn_img) left center no-repeat;
  background-size: 0.1rem;
}

.ksts-3 .list li a .col .time:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7rem;
  height: 1px;
  background: #d8d8d8;
}

.ksts-3 .list .more {
  padding: 0.36rem 0.56rem 0 0.56rem;
}

.ksts-3 .list .more a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
  color: #fff;
  height: 0.6rem;
  border-radius: 0.4rem;
  border: rgba(255,255,255,.3) solid 1px;
}

.ksts-3 .list .more a:hover {
  background: #fff;
  color: #1256cd;
}

.ksts-4 {
  padding-bottom: 0.75rem;
  position: relative;
}

.ksts-4:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2.93rem;
  background: #f4f9ff;
}

.ksts-4 .wal2 {
  position: relative;
}

.ksts-4 .list {
  margin-left: -0.2rem;
  margin-right: -0.2rem;
  position: relative;
}

.ksts-4 .list .list-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ksts-4 .list .list-wrapper>ul>li {
  padding: 0 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.ksts-4 .list .list-wrapper>ul>li .bd {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #1747af;
  color: #fff;
}

.ksts-4 .list .list-wrapper>ul>li .bd .zoomImg {
  width: 4.38rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ksts-4 .list .list-wrapper>ul>li .bd .zoomImg img {
  height: 4.36rem;
}

.ksts-4 .list .list-wrapper>ul>li .bd .col {
  width: 100%;
  padding: 0 0.3rem 0 0.4rem;
}

.ksts-4 .list .list-wrapper>ul>li .bd .col h5 {
  font-size: 0.28rem;
  line-height: 0.3rem;
  padding: 0.18rem 0 0.4rem 0;
  position: relative;
}

.ksts-4 .list .list-wrapper>ul>li .bd .col h5:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.32rem;
  height: 0.04rem;
  background: #ffaf4d;
}

.ksts-4 .list .list-wrapper>ul>li .bd .col p {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: rgba(255,255,255,.7);
  max-height: 1.68rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.ksts-4 .list .list-wrapper>ul>li .bd .col .btn {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: rgba(255,255,255,.7);
  margin-top: 0.6rem;
  text-align: right;
}

.ksts-4 .list .list-wrapper>ul>li ul {
  width: 4.46rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ksts-4 .list .list-wrapper>ul>li ul li {
  width: 50%;
}

.ksts-4 .list .list-wrapper>ul>li ul li a {
  display: block;
}

.ksts-4 .list .list-wrapper>ul>li ul li a img {
  height: 2.18rem;
}

.ksts-4 .list .arrow {
  position: absolute;
  z-index: 5;
  right: 2.43rem;
  bottom: 0;
  height: 2.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "swiper-icons";
  width: 2.23rem;
}

.ksts-4 .list .arrow a {
  font-size: 0.35rem;
  color: #bcbcbc;
  position: relative;
}

.ksts-4 .list .arrow a:hover {
  color: #2358b8;
}

.ksts-4 .list .arrow a.prev {
  top: -0.1rem;
}

.ksts-4 .list .arrow a.next {
  top: 0.1rem;
}

.ksts-4 .list .arrow .line {
  margin: 0 0.2rem;
  width: 0.02rem;
  height: 0.34rem;
  background: #b3b3b3;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  opacity: .7;
}

.ksts-5 {
  background: url(../images/ksts-5.jpg;vpn_img) center no-repeat;
  background-size: cover;
}

.ksts-5 .wal2 {
  min-height: 7.32rem;
  position: relative;
}

.ksts-5 .btns {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ksts-5 .btns:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.88rem;
  width: 5.57rem;
  background: url(../images/img557.png;vpn_img) right center no-repeat;
  background-size: auto 100%;
}

.ksts-5 .btns ul {
  width: 100%;
}

.ksts-5 .btns li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 1.95rem;
  cursor: pointer;
}

.ksts-5 .btns li .img {
  width: 1.18rem;
}

.ksts-5 .btns li h5 {
  font-size: 0.28rem;
  color: #b9cbeb;
  -webkit-transition: .5s;
  transition: .5s;
  font-family: "SourceHanSerifCN-Medium";
  margin-left: 0.13rem;
  position: relative;
  line-height: 0.38rem;
  padding-bottom: 0.16rem;
}

.ksts-5 .btns li h5:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.48rem;
  height: 0.04rem;
  background: #b9cbeb;
}

.ksts-5 .btns li.on h5 {
  color: #fff;
}

.ksts-5 .btns li.on h5:before {
  background: #fff;
}

.ksts-5 .btns li:nth-child(2) {
  left: 0.59rem;
}

.ksts-5 .list {
  width: 10.4rem;
  margin-left: auto;
  padding-top: 0.85rem;
}

.ksts-5 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 10.14rem;
}

.ksts-5 .list li {
  width: 4.73rem;
}

.ksts-5 .list li a {
  display: block;
  color: #fff;
  position: relative;
  min-height: 5.4rem;
}

.ksts-5 .list li a .zoomImg img {
  height: 3.17rem;
}

.ksts-5 .list li a .time {
  position: absolute;
  z-index: 5;
  top: -0.34rem;
  right: -0.18rem;
  width: 0.81rem;
  box-sizing: content-box;
  height: 0.81rem;
  border: rgba(255,255,255,.1) solid 0.06rem;
  background: #2358b8;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 0.14rem;
}

.ksts-5 .list li a .time .day {
  font-size: 0.3rem;
  line-height: 1em;
  padding-bottom: 0.06rem;
}

.ksts-5 .list li a .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  padding: 0.25rem 0 0.15rem 0;
}

.ksts-5 .list li a p {
  font-size: 0.14rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #c7d3e8;
}

.ksts-5 .list .more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ksts-5 .list .more a {
  color: #fff;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 0.16rem;
}

.ksts-6 .wal2 {
  min-height: 7.12rem;
  padding: 0.15rem 0 0.6rem 0;
}

.ksts-6 .page-title {
  padding-bottom: 0.55rem;
}

.ksts-6 .list {
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}

.ksts-6 .list .list-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ksts-6 .list .list-wrapper>ul>li {
  position: relative;
  height: 4.42rem;
  padding: 0.13rem 0.2rem;
}

.ksts-6 .list .list-wrapper>ul>li .bd {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.ksts-6 .list .list-wrapper>ul>li .bd a {
  display: block;
  padding: 0.35rem 0.3rem;
  color: #fff;
  position: relative;
  width: 3.88rem;
  height: 3.76rem;
  background: #1c5cb4;
  border-radius: 0.3rem 0 0.3rem 0;
}

.ksts-6 .list .list-wrapper>ul>li .bd a h5 {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ksts-6 .list .list-wrapper>ul>li .bd a p {
  margin-top: 0.5rem;
  font-size: 0.14rem;
  line-height: 0.3rem;
  height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: rgba(255,255,255,.5);
}

.ksts-6 .list .list-wrapper>ul>li .bd a .btn {
  font-size: 0.14rem;
  color: rgba(255,255,255,.5);
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.35rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ksts-6 .list .list-wrapper>ul>li .bd a .btn em {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.05rem;
}

.ksts-6 .list .list-wrapper>ul>li .bd a .btn:after {
  content: "";
  width: 100%;
  height: 0.07rem;
  position: relative;
  top: -0.02rem;
  background: url(../images/chg_07.svg;vpn_img) right center no-repeat;
  background-size: auto 100%;
}

.ksts-6 .list .list-wrapper>ul>li ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.65rem 4.7rem;
}

.ksts-6 .list .list-wrapper>ul>li li a {
  display: block;
  position: relative;
  padding: 0.22rem 0.85rem 0 0.35rem;
  height: 1.45rem;
  background: #1c5cb4;
  border-radius: 0.3rem 0 0.3rem 0;
}

.ksts-6 .list .list-wrapper>ul>li li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0.52rem;
  border: 1px solid rgba(28,92,180,.3);
  background: #fff;
  border-radius: 0.3rem 0 0.3rem 0;
}

.ksts-6 .list .list-wrapper>ul>li li a .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}

.ksts-6 .list .list-wrapper>ul>li li a .btn {
  font-size: 0.14rem;
  color: #b6b6b6;
  position: absolute;
  left: 0.35rem;
  right: 0.9rem;
  bottom: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.ksts-6 .list .list-wrapper>ul>li li a .btn em {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.05rem;
}

.ksts-6 .list .list-wrapper>ul>li li a .btn:after {
  content: "";
  width: 100%;
  height: 0.07rem;
  position: relative;
  top: -0.02rem;
  background: url(../images/chg_16.svg;vpn_img) right center no-repeat;
  background-size: auto 100%;
}

.ksts-6 .list .list-wrapper>ul>li li a .time {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 0.52rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 0.24rem;
  background: url(../images/img14.png;vpn_img) center no-repeat;
  background-size: 0.13rem;
}

.ksts-6 .list .list-wrapper>ul>li li a .time em {
  padding: 0.16rem 0;
}

.ksts-6 .list .list-wrapper>ul>li li a:hover {
  color: #1c5cb4;
}

.ksts-6 .list .list-wrapper>ul>li li:nth-child(2) a,
.ksts-6 .list .list-wrapper>ul>li li:nth-child(3) a {
  background: #e2ae60;
}

.ksts-6 .list .list-wrapper>ul>li li:nth-child(2) a:before,
.ksts-6 .list .list-wrapper>ul>li li:nth-child(3) a:before {
  border-color: rgba(226,174,96,.3);
}

.ksts-6 .list .list-wrapper>ul>li li:nth-child(2) a:hover,
.ksts-6 .list .list-wrapper>ul>li li:nth-child(3) a:hover {
  color: #e2ae60;
}

.ksts-6 .list .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.15rem;
}

.ksts-6 .list .arrow .line {
  width: 100%;
  height: 1px;
  position: relative;
  background: #d8d8d8;
  --w: 10%;
}

.ksts-6 .list .arrow .line:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #e2ae60;
  width: var(--w);
}

.ksts-6 .list .arrow a {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.4rem;
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../images/next40.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
}

.ksts-6 .list .arrow a.prev {
  background-image: url(../images/prev40.svg;vpn_img);
  margin-left: 0.3rem;
}

.ksts-7 {
  background: url(../images/ksts-6.png;vpn_img) center no-repeat;
  background-size: 100% 100%;
}

.ksts-7 .wal2 {
  min-height: 6.22rem;
  position: relative;
}

@media screen and (min-width: 800px) {
  .ksts-7 .page-title {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    margin-left: -1.26rem;
    margin-top: -1.26rem;
    border-radius: 50%;
    width: 2.53rem;
    height: 2.53rem;
    background: #2358b8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }

  .ksts-7 .page-title h2 {
    color: #fff;
  }

  .ksts-7 .page-title a.more {
    position: relative;
    top: 0;
    color: #fff;
    margin-top: 0.24rem;
  }
}

.ksts-7 .list {
  padding: 1.26rem 0 0 0;
}

.ksts-7 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ksts-7 .list li {
  width: 5.2rem;
  padding-bottom: 0.38rem;
}

.ksts-7 .list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.92rem;
  background: #fff;
}

.ksts-7 .list a .time {
  background: url(../images/img78.svg;vpn_img) center no-repeat;
  background-size: 100% 100%;
  width: 0.78rem;
  height: 0.92rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #2358b8;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 0.14rem;
  font-family: "SourceHanSerifCN-Medium";
  padding-bottom: 0.05rem;
}

.ksts-7 .list a .time .day {
  font-size: 0.3rem;
}

.ksts-7 .list a .col {
  width: 100%;
  padding: 0 0.1rem;
}

.ksts-7 .list a .col h5 {
  font-size: 0.18rem;
  height: 0.26rem;
  line-height: 0.26rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ksts-7 .list a .col p {
  font-size: 0.14rem;
  height: 0.26rem;
  line-height: 0.26rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  opacity: .8;
  margin-top: 0.03rem;
}

.ksts-7 .list a:hover {
  background: #2358b8;
  color: #fff;
}

.ksts-7 .list a:hover .time {
  color: #fff;
  background-image: url(../images/img78on.svg;vpn_img);
}

.ksts-8 {
  padding: 0.15rem 0 1.1rem 0;
}

.ksts-8 .list {
  padding-bottom: 0.24rem;
}

.ksts-8 .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.24rem;
}

.ksts-8 .list li a img {
  height: 2.02rem;
}

.index-bg-1 {
  background: url(../images/index-bg1.jpg;vpn_img) center bottom no-repeat;
  background-size: 100%;
}

.index-search {
  max-width: 12rem;
  position: relative;
  z-index: 5;
  top: -0.12rem;
}

.index-search .form {
  background: #fff;
  position: relative;
  height: 0.7rem;
  border-radius: 0.5rem;
}

.index-search .form .input input::-webkit-input-placeholder {
  color: #9e9e9e;
}

.index-search .form .input input::-moz-placeholder {
  color: #9e9e9e;
}

.index-search .form .input input:-moz-placeholder {
  color: #9e9e9e;
}

.index-search .form .input input:-ms-input-placeholder {
  color: #9e9e9e;
}

.index-search .form .input textarea::-webkit-input-placeholder {
  color: #9e9e9e;
}

.index-search .form .input textarea::-moz-placeholder {
  color: #9e9e9e;
}

.index-search .form .input textarea:-moz-placeholder {
  color: #9e9e9e;
}

.index-search .form .input textarea:-ms-input-placeholder {
  color: #9e9e9e;
}

.index-search .form .input input {
  width: 100%;
  height: 0.7rem;
  line-height: 0.7rem;
  font-size: 0.22rem;
  padding: 0 0.48rem;
  color: #333;
}

.index-search .form .submit {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.6rem;
  cursor: pointer;
  height: 0.7rem;
  background: #2957bb;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.24rem;
}

.index-search .form .submit img {
  width: 0.26rem;
  margin-right: 0.13rem;
}

.index-search .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.2rem;
  padding: 0.3rem 0 0.48rem 0.48rem;
  line-height: 1em;
}

.index-search .list .name {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.index-search .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-search .list li {
  margin-right: 2em;
}

.index-headline {
  min-height: 1.66rem;
  position: relative;
  padding: 0 0 0 1.3rem;
  background: -webkit-linear-gradient(top, #FCF0F0 0%, rgba(250, 236, 236, 0.12) 100%);
  background: linear-gradient(180deg, #FCF0F0 0%, rgba(250, 236, 236, 0.12) 100%);
}

.index-headline .time {
  position: absolute;
  left: 0.4rem;
  top: 0.3rem;
  background: url(../images/tt.png;vpn_img) center no-repeat;
  background-size: 100% 100%;
  width: 1.18rem;
  height: 1.18rem;
  font-size: 0.12rem;
  text-align: center;
  color: #e80707;
  padding-top: 0.72rem;
}

.index-headline h2 {
  text-align: center;
  font-size: 0.3rem;
  padding: 0.35rem 0 0.2rem 0;
}

.index-headline h2 a {
  color: #e80707;
}

.index-headline .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
  color: #666;
  line-height: 1.3em;
}

.index-headline .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-headline .list li {
  padding: 0 0.2rem;
  position: relative;
width: 4rem;
}

.index-headline .list li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  content: "|";
}

.index-headline .list li:last-child:after {
  display: none;
}

.index-headline .list a {
  color: #666;
}

.index-headline .list a:hover {
  color: #e80707;
}

.index-headline .list a.more {
  margin-left: 0.2rem;
}

.page-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-kpdt {
  width: 8.6rem;
}

.index-kpdt .page-title {
  padding: 0.43rem 0 0.26rem 0;
}

.index-kpdt .page-title h2 {
  width: 1.62rem;
}

.index-kpdt .img-list {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.index-kpdt .img-list li a {
  display: block;
  position: relative;
}

.index-kpdt .img-list li a .zoomImg img {
  height: 5.4rem;
}

.index-kpdt .img-list li a .time {
  position: absolute;
  z-index: 5;
  top: 0.14rem;
  right: 0.21rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 0.14rem;
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(0,0,0,.2);
}

.index-kpdt .img-list li a .time .day {
  font-size: 0.36rem;
  line-height: 1em;
  padding-bottom: 0.05rem;
}

.index-kpdt .img-list li a .name {
  font-size: 0.22rem;
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0.4rem 1.2rem 0.24rem 0.27rem;
  color: #fff;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0.65) 100%);
  line-height: 1em;
}

.index-kpdt .img-list .dots-wrapper {
  position: absolute;
  z-index: 5;
  bottom: 0.32rem;
  right: 0.32rem;
}

.index-kpdt .img-list .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-kpdt .img-list .dots-wrapper .dots span {
  width: 0.12rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  height: 0.12rem;
  opacity: 1;
  border: 1px solid #fff;
}

.index-kpdt .img-list .dots-wrapper .dots span.on {
  background: #fff;
}

.index-kpdt .list .hd {
  border-bottom: #cdcece dashed 1px;
}

.index-kpdt .list .hd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.37rem;
  padding-left: 0.06rem;
}

.index-kpdt .list .hd a .time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../images/timebg.png;vpn_img) center no-repeat;
  background-size: 100% 100%;
  width: 0.87rem;
  height: 0.84rem;
  text-align: center;
  font-size: 0.12rem;
  color: #004ea0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0.14rem;
  font-family: "SourceHanSerifCN-Medium";
  padding-bottom: 0.06rem;
}

.index-kpdt .list .hd a .time .day {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 1em;
}

.index-kpdt .list .hd a .col {
  width: 100%;
  padding-left: 0.18rem;
}

.index-kpdt .list .hd a .col h5 {
  font-size: 0.18rem;
  color: #004ea0;
  line-height: 1.6em;
  max-height: 1.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.index-kpdt .list .hd a .col p {
  font-size: 0.14rem;
  color: #9e9e9e;
  line-height: 1.6em;
  max-height: 1.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 0.08rem;
}

.index-kpdt .list li {
  border-bottom: #cdcece dashed 1px;
}

.index-kpdt .list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 0.6rem;
  font-size: 0.16rem;
  line-height: 1.3em;
}

.index-kpdt .list li a .name {
  width: 100%;
  padding: 0 0.27rem;
  height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  background: url(../images/arrow14.svg;vpn_img) left center no-repeat;
  background-size: 0.14rem;
}

.index-kpdt .list li a .time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
}

.index-kphd {
  width: 5.93rem;
}

.index-kphd .page-title {
  padding: 0.43rem 0 0 0;
}

.index-kphd .page-title h2 {
  width: 1.62rem;
}

.index-kphd .list {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.index-kphd .list .list-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 0.13rem;
}

.index-kphd .list .list-wrapper li {
  padding: 0 0.1rem 0.3rem 0.1rem;
}

.index-kphd .list .list-wrapper li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.13rem 0.15rem 0.17rem 0.15rem;
}

.index-kphd .list .list-wrapper li a .zoomImg {
  width: 3rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.index-kphd .list .list-wrapper li a .zoomImg img {
  height: 2rem;
}

.index-kphd .list .list-wrapper li a .col {
  width: 100%;
  padding-left: 0.2rem;
}

.index-kphd .list .list-wrapper li a .col>.name {
  font-size: 0.18rem;
  line-height: 2em;
  height: 4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-kphd .list .list-wrapper li a .col dl {
  margin-top: 0.1rem;
}

.index-kphd .list .list-wrapper li a .col dd {
  font-size: 0.14rem;
  line-height: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.08rem;
}

.index-kphd .list .list-wrapper li a .col dd .name {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #004ea0;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.8rem;
  height: 0.26rem;
  background: #edf3fd;
}

.index-kphd .list .list-wrapper li a .col dd p {
  color: #999;
  padding-left: 0.12rem;
}

.index-kphd .list .list-wrapper li a:hover {
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.1);
}

.index-kphd .list .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-kphd .list .dots span {
  width: 0.12rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  height: 0.12rem;
  opacity: 1;
  border: 1px solid #104fbd;
}

.index-kphd .list .dots span.on {
  background: #104fbd;
}

.index-kptd {
  padding-bottom: 0.5rem;
}

.index-kptd .page-title {
  padding: 0.65rem 0 0.45rem 0;
}

.index-kptd .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.4rem 0.2rem;
}

.index-kptd .list li a {
  display: block;
}

.index-kptd .list li a .zoomImg {
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.1);
}

.index-kptd .list li a .zoomImg img {
  height: 3.7rem;
}

.index-kptd .list li a .name {
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.28rem;
  margin-top: 0.11rem;
}

.index-kptd>.img {
  padding-top: 0.8rem;
}

.index-kpjz {
  position: relative;
}

.index-kpjz:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: 0s;
  transition: 0s;
  height: 9.56rem;
  background: -webkit-linear-gradient(top, #104FBD 0%, rgba(16, 79, 189, 0) 100%);
  background: linear-gradient(180deg, #104FBD 0%, rgba(16, 79, 189, 0) 100%);
  border-radius: 0 1rem 0 0;
}

.index-kpjz .wal {
  position: relative;
  min-height: 9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index-kpjz .page-title {
  position: absolute;
  left: 0;
  top: 0.73rem;
  padding: 0;
}

.index-kpjz .page-title h2 {
  color: #fff;
  width: 1.62rem;
}

.index-kpjz .item-1 {
  width: 6.7rem;
  padding-top: 1.94rem;
  overflow: hidden;
  position: relative;
}

.index-kpjz .item-1 .list-wrapper {
  margin-right: -0.2rem;
}

.index-kpjz .item-1 .list-wrapper li {
  padding-right: 0.2rem;
}

.index-kpjz .item-1 .list-wrapper li a {
  display: block;
  position: relative;
}

.index-kpjz .item-1 .list-wrapper li a .zoomImg {
  border-radius: 0 0.3rem 0 0;
}

.index-kpjz .item-1 .list-wrapper li a .zoomImg:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.81rem;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 99%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 99%);
}

.index-kpjz .item-1 .list-wrapper li a .zoomImg img {
  height: 4.78rem;
}

.index-kpjz .item-1 .list-wrapper li a .name {
  position: absolute;
  z-index: 5;
  left: 0.28rem;
  top: 4.37rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 0.18rem;
}

.index-kpjz .item-1 .list-wrapper li a .name img {
  width: 0.3rem;
  margin-right: 0.1rem;
}

.index-kpjz .item-1 .list-wrapper li a .bd {
  padding: 0 0.12rem;
}

.index-kpjz .item-1 .list-wrapper li a .bd h5 {
  font-size: 0.24rem;
  padding: 0.25rem 0 0.15rem 0;
}

.index-kpjz .item-1 .list-wrapper li a .bd p {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #9e9e9e;
  height: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 6.2rem;
}

.index-kpjz .item-1 .dots-wrapper {
  position: absolute;
  z-index: 5;
  top: 6.34rem;
  right: 0.3rem;
}

.index-kpjz .item-1 .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-kpjz .item-1 .dots-wrapper .dots span {
  width: 0.12rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  height: 0.12rem;
  opacity: 1;
  border: 1px solid #fff;
}

.index-kpjz .item-1 .dots-wrapper .dots span.on {
  background: #fff;
}

.index-kpjz .item-2-1 a,
.index-kpjz .item-3-2 a {
  display: block;
  color: #fff;
  position: relative;
  padding: 0.29rem 0.38rem 0 0.24rem;
  min-height: 2.9rem;
  background: #1751b6;
  border-radius: 0 0.3rem 0 0;
}

.index-kpjz .item-2-1 a .name,
.index-kpjz .item-3-2 a .name {
  font-size: 0.2rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: bold;
}

.index-kpjz .item-2-1 a p,
.index-kpjz .item-3-2 a p {
  font-size: 0.14rem;
  line-height: 0.24rem;
  height: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #a2c1f7;
  margin-top: 0.15rem;
}

.index-kpjz .item-2-1 a .info,
.index-kpjz .item-3-2 a .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.3rem 0;
  font-size: 0.14rem;
  border-top: #356ac5 solid 1px;
}

.index-kpjz .item-2-1 a .info img,
.index-kpjz .item-3-2 a .info img {
  width: 0.14rem;
  margin-right: 0.04rem;
}

.index-kpjz .item-2-1 a .info .time,
.index-kpjz .item-3-2 a .info .time {
  margin-left: auto;
}

.index-kpjz .item-2-2 a,
.index-kpjz .item-3-1 a {
  display: block;
  position: relative;
}

.index-kpjz .item-2-2 a:after,
.index-kpjz .item-3-1 a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.94rem;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.index-kpjz .item-2-2 a .zoomImg,
.index-kpjz .item-3-1 a .zoomImg {
  border-radius: 0 0.3rem 0 0;
}

.index-kpjz .item-2-2 a .zoomImg img,
.index-kpjz .item-3-1 a .zoomImg img {
  height: 4.09rem;
}

.index-kpjz .item-2-2 a .name,
.index-kpjz .item-3-1 a .name {
  position: absolute;
  z-index: 5;
  left: 0.16rem;
  bottom: 0.1rem;
  right: 0.16rem;
  color: #fff;
  font-size: 0.18rem;
}

.index-kpjz .item-2 {
  width: 3.9rem;
}

.index-kpjz .item-2 .share {
  padding: 0.89rem 0 0.34rem 0;
}

.index-kpjz .item-2 .share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-kpjz .item-2 .share li {
  padding: 0 0.07rem;
}

.index-kpjz .item-2 .share a {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: relative;
}

.index-kpjz .item-2 .share a:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  background: -webkit-linear-gradient(top, #FABF4D 0%, #D7930E 100%);
  background: linear-gradient(180deg, #FABF4D 0%, #D7930E 100%);
}

/*.index-kpjz .item-2 .share a img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}*/

.index-kpjz .item-2 .share a img:nth-child(2) {
  opacity: 0;
}

.index-kpjz .item-2 .share a:hover:before {
  opacity: 1;
}

/*.index-kpjz .item-2 .share a:hover img:nth-child(1) {
  opacity: 0;
}

.index-kpjz .item-2 .share a:hover img:nth-child(2) {
  opacity: 1;
}*/

.index-kpjz .item-2 .item-2-1 a {
  background: #b39467;
}

.index-kpjz .item-2 .item-2-1 a p {
  color: #ead3b3;
}

.index-kpjz .item-2 .item-2-1 a .info {
  border-color: #c7ab83;
}

.index-kpjz .item-2 .item-2-2 {
  padding-top: 0.4rem;
}

.index-kpjz .item-2 .item-2-2 a .zoomImg img {
  height: 3.25rem;
}

.index-kpjz .item-3 {
  width: 3.9rem;
  padding-top: 1.3rem;
}

.index-kpjz .item-3 .item-3-2 {
  padding-top: 0.35rem;
}

.index-kxyl .page-title {
  padding: 0 0 0.62rem 0;
}

.index-kxyl .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index-kxyl .list li {
  width: 1.2rem;
  height: 3.92rem;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
  position: relative;
}

.index-kxyl .list li .item {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.2rem;
  height: 3.61rem;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0.68rem 0.35rem 0.3rem 0.35rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background: -webkit-linear-gradient(top, #EEF3FC 6%, #F7FBFF 100%);
  background: linear-gradient(180deg, #EEF3FC 6%, #F7FBFF 100%);
}

.index-kxyl .list li .item .img {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0.05rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0.31rem;
  background: rgba(0,78,160,.1);
}

.index-kxyl .list li .item .img img {
  height: 0.7rem;
  border-radius: 50%;
  width: 100%;
}

.index-kxyl .list li .item p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.16rem;
  line-height: 0.28rem;
}

.index-kxyl .list li .container {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 3.89rem;
  width: 7.65rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  background: -webkit-linear-gradient(top, #FCFCFC 2%, #EDF3FC 100%);
  background: linear-gradient(180deg, #FCFCFC 2%, #EDF3FC 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.26rem 0 0 0.37rem;
}

.index-kxyl .list li .container .zoomImg {
  width: 2.2rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.index-kxyl .list li .container .col {
  width: 100%;
  padding: 0.34rem 0.3rem 0 0.27rem;
}

.index-kxyl .list li .container .col h5 {
  color: #004ea0;
  font-size: 0.24rem;
}

.index-kxyl .list li .container .col .line {
  height: 0.45rem;
  position: relative;
  top: 0.06rem;
}

.index-kxyl .list li .container .col .line:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.08rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background: #cbe1f9;
  width: 2.6rem;
}

.index-kxyl .list li .container .col .line:after {
  content: "";
  display: block;
  position: absolute;
  left: 2.65rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  height: 0.1rem;
  background: #cbe1f9;
  width: 0.1rem;
}

.index-kxyl .list li .container .col p {
  font-size: 0.14rem;
  line-height: 0.32rem;
  color: #9e9e9e;
  max-width: 4.32rem;
  text-align: justify;
  max-height: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 800px) {
  .index-kxyl .list li.on {
    width: 7.65rem;
  }

  .index-kxyl .list li.on .item {
    opacity: 0;
  }

  .index-kxyl .list li.on .container {
    opacity: 1;
    visibility: visible;
  }
}

.index-kxts {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.index-kxts:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  top: 0;
  background: url(../images/img1817.png;vpn_img) center bottom no-repeat;
  background-size: 100%;
  width: 18.17rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.index-kxts .page-title {
  padding: 0.48rem 0 0.57rem 0;
}

.index-kxts .wal {
  min-height: 4.61rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-kxts .img-list {
  width: 5.8rem;
  overflow: hidden;
  position: relative;
}

.index-kxts .img-list li a {
  display: block;
  padding-top: 0.1rem;
}

.index-kxts .img-list li a .zoomImg img {
  height: 3.7rem;
}

.index-kxts .img-list li a .name {
  font-size: 0.18rem;
  line-height: 0.27rem;
  padding: 0.22rem 0 0 0.1rem;
}

.index-kxts .img-list .arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "swiper-icons";
  color: #fff;
  font-size: 0.18rem;
  position: absolute;
  z-index: 5;
  top: 1.55rem;
  border-radius: 50%;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(0,0,0,.6);
}

.index-kxts .img-list .arrow a.prev {
  left: -0.3rem;
  padding-left: 0.26rem;
}

.index-kxts .img-list .arrow a.next {
  right: -0.3rem;
  padding-right: 0.26rem;
}

.index-kxts .img-list .arrow a:hover {
  background: #1256cd;
}

.index-kxts .list {
  width: 9.15rem;
}

.index-kxts .list ul {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.23rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.index-kxts .list a {
  display: block;
}

.index-kxts .list a .img {
  background: #fff;
  padding: 0.1rem;
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.02);
}

.index-kxts .list a .img img {
  height: 3.7rem;
}

.index-kxts .list a .name {
  font-size: 0.18rem;
  line-height: 0.27rem;
  padding: 0.1rem 0 0 0;
  text-align: center;
}

.index-1 {
  width: 7.2rem;
  padding: 0.4rem 0 0 0;
}

.index-1 .hd {
  padding-bottom: 0.4rem;
  border-bottom: #cdcece dashed 1px;
}

.index-1 .hd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-1 .hd a .zoomImg {
  width: 2.32rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.index-1 .hd a .zoomImg img {
  height: 1.73rem;
}

.index-1 .hd a .col {
  width: 100%;
  padding-left: 0.2rem;
}

.index-1 .hd a .col .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.index-1 .hd a .col p {
  font-size: 0.14rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #9e9e9e;
  margin-top: 0.1rem;
}

.index-1 .hd a .col .time {
  margin-top: 0.18rem;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #9e9e9e;
}

.index-1 li {
  border-bottom: #cdcece dashed 1px;
}

.index-1 li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 0.6rem;
  font-size: 0.16rem;
  line-height: 1.3em;
}

.index-1 li a .name {
  width: 100%;
  padding: 0 0.27rem;
  height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  background: url(../images/arrow14.svg;vpn_img) left center no-repeat;
  background-size: 0.14rem;
}

.index-1 li a .time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
}

.index-kpyd ul {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.44rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.index-kxsn {
  padding-bottom: 0.37rem;
}

.index-kxsn .navs {
  position: relative;
/*  padding-left: 4.49rem;*/
  background: #ecfce8;
}

.index-kxsn .navs img {
  position: absolute;
  left: 0;
  top: 0;
  height: 1.2rem;
}

.index-kxsn .navs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-kxsn .navs li {
  width: 25%;
}

.index-kxsn .navs li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 1.2rem;
  font-size: 0.36rem;
  font-weight: bold;
}
.index-kxsn .navs li:nth-child(1) {
  background: #fffff0;
}
.index-kxsn .navs li:nth-child(1) a {
  color: #e8cf89;
}

.index-kxsn .navs li:nth-child(2) {
  background: #ECFCE8;
}
.index-kxsn .navs li:nth-child(2) a {
  color: #60b32f;
}

.index-kxsn .navs li:nth-child(3) {
  background: #f0f8ff;
}

.index-kxsn .navs li:nth-child(3) a {
  color: #138596;
}

.index-kxsn .navs li:nth-child(4) {
  background: #fff8f0;
}

.index-kxsn .navs li:nth-child(4) a {
  color: #ca8840;
}

.index-kxsn .navs li:nth-child(5) {
  background: #e3ebf9;
}

.index-kxsn .navs li:nth-child(5) a {
  color: #1654bb;
}

.index-kxsn .page-row {
  min-height: 5.94rem;
  background: -webkit-linear-gradient(top, #FEF6F1, #fff);
  background: linear-gradient(to bottom, #FEF6F1, #fff);
  padding: 0.8rem 0.26rem 0.26rem;
}

.index-kxsn .img-list {
  width: 5.6rem;
  overflow: hidden;
  position: relative;
}

.index-kxsn .img-list li a {
  display: block;
}

.index-kxsn .img-list li a .zoomImg img {
  height: 3.85rem;
}

.index-kxsn .img-list li a .name {
  font-size: 0.22rem;
  height: 0.6rem;
  line-height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 0.18rem;
  padding: 0 1.5rem 0 0.08rem;
}

.index-kxsn .img-list .dots-wrapper {
  position: absolute;
  z-index: 5;
  bottom: 0.24rem;
  right: 0.2rem;
}

.index-kxsn .img-list .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-kxsn .img-list .dots-wrapper .dots span {
  width: 0.12rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  height: 0.12rem;
  opacity: 1;
  border: 1px solid #0070dc;
}

.index-kxsn .img-list .dots-wrapper .dots span.on {
  background: #0070dc;
}

.index-kxsn .list {
  width: 5.6rem;
}

.index-kxsn .list .hd {
  padding-bottom: 0.38rem;
  border-bottom: #cdcece dashed 1px;
}

.index-kxsn .list .hd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.index-kxsn .list .hd a .zoomImg {
  width: 2rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.index-kxsn .list .hd a .zoomImg img {
  height: 1.5rem;
}

.index-kxsn .list .hd a .col {
  width: 100%;
  padding-left: 0.2rem;
}

.index-kxsn .list .hd a .col .name {
  font-size: 0.18rem;
  line-height: 0.27rem;
  height: 0.54rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-kxsn .list .hd a .col p {
  font-size: 0.14rem;
  line-height: 0.3rem;
  height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #9e9e9e;
  margin-top: 0.1rem;
}

.index-kxsn .list .hd a .col .time {
  margin-top: 0.09rem;
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #9e9e9e;
}

.index-kxsn .list li {
  border-bottom: #cdcece dashed 1px;
}

.index-kxsn .list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 0.6rem;
  font-size: 0.16rem;
  line-height: 1.3em;
}

.index-kxsn .list li a .name {
  width: 100%;
  padding: 0 0.27rem 0 0;
  height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.index-kxsn .list li a .time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #999;
}

.index-kxsn .item {
  width: 2.8rem;
}

.index-kxsn .item a {
  display: block;
}

.index-kxsn .item a .img {
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.06);
}

.index-kxsn .item a .img img {
  height: 3.7rem;
}

.index-kxsn .item a .name {
  margin-top: 0.18rem;
  font-size: 0.22rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}



.index-news {
  background: #f7f8fc url(../images/index-news.jpg;vpn_img) center bottom no-repeat;
  background-size: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 6.68rem;
}

.index-news .title {
  text-align: center;
  padding-top: 1rem;
}

.index-news .title h2 {
  font-size: 0.56rem;
  line-height: 1em;
  color: #104fbd;
}

.index-news .title div {
  font-size: 0.36rem;
  line-height: 1em;
  color: #9e9e9e;
  margin-top: 0.5rem;
}

.index-news .list li {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 1px;
}

.index-news .list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  line-height: 1.4em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  background: #f5faff;
  box-shadow: 0 0.04rem 0.3rem 0 rgba(71,71,71,.1);
  padding: .1rem;
}

.index-news .list li a:hover {
  -webkit-animation: zoomAnima .6s linear infinite;
  animation: zoomAnima .6s linear infinite;
}

.index-news .list li:nth-child(1) {
  margin-left: -8rem;
  margin-top: 1.92rem;
}

.index-news .list li:nth-child(1) a {
  font-size: 0.3rem;
  color: #015293;
  width: 1.6rem;
  height: 1.6rem;
  background: #f5faff;
}

.index-news .list li:nth-child(2) {
  margin-left: -8.67rem;
  margin-top: 4.2rem;
}

.index-news .list li:nth-child(2) a {
  font-size: 0.2rem;
  color: #1cac2f;
  width: 0.8rem;
  height: 0.8rem;
  background: #f9ffef;
}

.index-news .list li:nth-child(3) {
  margin-left: -5.8rem;
  margin-top: 1.86rem;
}

.index-news .list li:nth-child(3) a {
  font-size: 0.24rem;
  color: #a7365d;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff8fb;
}

.index-news .list li:nth-child(4) {
  margin-left: -6.78rem;
  margin-top: 3.5rem;
}

.index-news .list li:nth-child(4) a {
  font-size: 0.18rem;
  color: #6a4cc5;
  width: 1rem;
  height: 1rem;
  background: #f9f7ff;
}

.index-news .list li:nth-child(5) {
  margin-left: -7.26rem;
  margin-top: 5.33rem;
}

.index-news .list li:nth-child(5) a {
  font-size: 0.24rem;
  color: #2358b8;
  width: 1.2rem;
  height: 1.2rem;
  background: #f4faff;
}

.index-news .list li:nth-child(6) {
  margin-left: -3.67rem;
  margin-top: 2.75rem;
}

.index-news .list li:nth-child(6) a {
  font-size: 0.24rem;
  color: #2358b8;
  width: 1rem;
  height: 1rem;
  background: #f4f8ff;
}

.index-news .list li:nth-child(7) {
  margin-left: -4.85rem;
  margin-top: 3.82rem;
}

.index-news .list li:nth-child(7) a {
  font-size: 0.24rem;
  color: #aa8a5a;
  width: 1.2rem;
  height: 1.2rem;
  background: #fffaf4;
}

.index-news .list li:nth-child(8) {
  margin-left: -4.95rem;
  margin-top: 5.47rem;
}

.index-news .list li:nth-child(8) a {
  font-size: 0.18rem;
  color: #aa8a5a;
  width: 0.9rem;
  height: 0.9rem;
  background: #fffffe;
}

.index-news .list li:nth-child(9) {
  margin-left: -3.41rem;
  margin-top: 4.16rem;
}

.index-news .list li:nth-child(9) a {
  font-size: 0.18rem;
  color: #be8b8b;
  width: 0.7rem;
  height: 0.7rem;
  background: #fff8f8;
}

.index-news .list li:nth-child(10) {
  margin-left: -2.39rem;
  margin-top: 3.28rem;
}

.index-news .list li:nth-child(10) a {
  font-size: 0.18rem;
  color: #015293;
  width: 0.7rem;
  height: 0.7rem;
  background: #f4faff;
}

.index-news .list li:nth-child(11) {
  margin-left: -1.93rem;
  margin-top: 4.35rem;
}

.index-news .list li:nth-child(11) a {
  font-size: 0.24rem;
  color: #207e14;
  width: 1.2rem;
  height: 1.2rem;
  background: #fcfff8;
}

.index-news .list li:nth-child(12) {
  margin-left: -2.21rem;
  margin-top: 5.65rem;
}

.index-news .list li:nth-child(12) a {
  font-size: 0.18rem;
  color: #1b19a5;
  width: 0.8rem;
  height: 0.8rem;
  background: #efefff;
}

.index-news .list li:nth-child(13) {
  margin-left: -0.18rem;
  margin-top: 4.14rem;
}

.index-news .list li:nth-child(13) a {
  font-size: 0.14rem;
  color: #1cac2f;
  width: 0.8rem;
  height: 0.8rem;
  background: #f9ffef;
}

.index-news .list li:nth-child(14) {
  margin-left: 0.08rem;
  margin-top: 5.68rem;
}

.index-news .list li:nth-child(14) a {
  font-size: 0.2rem;
  color: #1a7830;
  width: 1rem;
  height: 1rem;
  background: #fafffc;
}

.index-news .list li:nth-child(15) {
  margin-left: 1.39rem;
  margin-top: 3.92rem;
}

.index-news .list li:nth-child(15) a {
  font-size: 0.2rem;
  color: #2358b8;
  width: 1.2rem;
  height: 1.2rem;
  background: #f7faff;
}

.index-news .list li:nth-child(16) {
  margin-left: 1.38rem;
  margin-top: 5.17rem;
}

.index-news .list li:nth-child(16) a {
  font-size: 0.18rem;
  color: #b0ad6f;
  width: 0.7rem;
  height: 0.7rem;
  background: #fffef4;
}

.index-news .list li:nth-child(17) {
  margin-left: 2.68rem;
  margin-top: 3.26rem;
}

.index-news .list li:nth-child(17) a {
  font-size: 0.14rem;
  color: #128646;
  width: 0.7rem;
  height: 0.7rem;
  background: #ebfff1;
}

.index-news .list li:nth-child(18) {
  margin-left: 2.9rem;
  margin-top: 5.14rem;
}

.index-news .list li:nth-child(18) a {
  font-size: 0.18rem;
  color: #cb7915;
  width: 0.9rem;
  height: 0.9rem;
  background: #fffbf6;
}

.index-news .list li:nth-child(19) {
  margin-left: 3.67rem;
  margin-top: 2.46rem;
}

.index-news .list li:nth-child(19) a {
  font-size: 0.18rem;
  color: #258a7d;
  width: 0.7rem;
  height: 0.7rem;
  background: #eff;
}

.index-news .list li:nth-child(20) {
  margin-left: 3.65rem;
  margin-top: 3.96rem;
}

.index-news .list li:nth-child(20) a {
  font-size: 0.26rem;
  color: #207e14;
  width: 1rem;
  height: 1rem;
  background: #f7ffff;
}

.index-news .list li:nth-child(21) {
  margin-left: 4.84rem;
  margin-top: 1.2rem;
}

.index-news .list li:nth-child(21) a {
  font-size: 0.26rem;
  color: #920000;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff3f3;
}

.index-news .list li:nth-child(22) {
  margin-left: 7.08rem;
  margin-top: 1.42rem;
}

.index-news .list li:nth-child(22) a {
  font-size: 0.24rem;
  color: #fff;
  width: 1.6rem;
  height: 1.6rem;
  background: -webkit-linear-gradient(top, #104FBD 0%, #4C83E3 100%);
  background: linear-gradient(180deg, #104FBD 0%, #4C83E3 100%);
}

.index-news .list li:nth-child(23) {
  margin-left: 5.55rem;
  margin-top: 2.89rem;
}

.index-news .list li:nth-child(23) a {
  font-size: 0.24rem;
  color: #437bdd;
  width: 1rem;
  height: 1rem;
  background: #eff5ff;
}

.index-news .list li:nth-child(24) {
  margin-left: 5.74rem;
  margin-top: 4.38rem;
}

.index-news .list li:nth-child(24) a {
  font-size: 0.16rem;
  color: #b30808;
  width: 0.9rem;
  height: 0.9rem;
  background: #fff5f5;
}

.index-news .list li:nth-child(25) {
  margin-left: 4.94rem;
  margin-top: 5.56rem;
}

.index-news .list li:nth-child(25) a {
  font-size: 0.24rem;
  color: #1d2290;
  width: 1.2rem;
  height: 1.2rem;
  background: #f1f2ff;
}

.index-news .list li:nth-child(26) {
  margin-left: 7.36rem;
  margin-top: 3.78rem;
}

.index-news .list li:nth-child(26) a {
  font-size: 0.22rem;
  color: #513dac;
  width: 1.2rem;
  height: 1.2rem;
  background: #f2efff;
}

.index-news .list li:nth-child(27) {
  margin-left: 8.52rem;
  margin-top: 2.72rem;
}

.index-news .list li:nth-child(27) a {
  font-size: .18rem;
  color: #437bdd;
  width: 1rem;
  height: 1rem;
  background: #f1f6ff;
}

.index-news .list li:nth-child(28) {
  margin-left: 8.86rem;
  margin-top: 4.33rem;
}

.index-news .list li:nth-child(28) a {
  font-size: 0.15rem;
  color: #2f6628;
  width: 0.7rem;
  height: 0.7rem;
  background: #f4fff3;
}

.index-news .list li:nth-child(29) {
  margin-left: 7.22rem;
  margin-top: 5.65rem;
}

.index-news .list li:nth-child(29) a {
  font-size: 0.18rem;
  color: #2f6628;
  width: 0.9rem;
  height: 0.9rem;
  background: #f5fff4;
}

.index-links {
  min-height: 4.15rem;
  padding-bottom: 0.8rem;
  background: url(../images/index-links.jpg;vpn_img) center bottom no-repeat;
  background-size: cover;
}

.index-links .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0.57rem 0.42rem;
}

.index-links .list li a {
  display: block;
}

.index-links .list li a img {
  height: 0.6rem;
}

.video-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.video-layer.show {
  opacity: 1;
  visibility: visible;
}

.video-layer .close {
  display: block;
  width: 0.78rem;
  height: 0.74rem;
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  background: url(../images/close22.png;vpn_img) center no-repeat;
  background-size: 0.22rem;
}

.video-layer .container {
  width: 15rem;
  position: relative;
}

.video-layer .container video {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
  max-height: 90vh;
}

@media screen and (max-width: 800px) {
  .library .search .input {
    width: 100%;
    height: 0.8rem;
  }

  .library .search .input input {
    height: 0.78rem;
    line-height: 0.78rem;
    font-size: 0.24rem;
  }

  .library .search .submit {
    font-size: 0.26rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.7rem;
    height: 0.8rem;
  }

  .library>.row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .library .w1080 {
    width: 100%;
  }

  .library .w360 {
    width: 100%;
  }

  .library .filter {
    font-size: 0.26rem;
    padding: 0 1rem 0 0;
  }

  .library .filter ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .library .filter li {
    margin-right: 0.44rem;
    padding-bottom: 0.08rem;
  }

  .library .filter li a {
    height: 0.6rem;
  }

  .library .filter .btn {
    width: 1.2rem;
    height: 0.6rem;
    font-size: 0.24rem;
  }

  .library .list>ul>li.li_01 a {
    height: 0.6rem;
    font-size: 0.24rem;
  }

  .library .list>ul>li.li_01 a .ico {
    width: 0.36rem;
  }

  .library .list>ul>li.li_02 a {
    padding: 0.3rem 0;
  }

  .library .list>ul>li.li_02 a .bd {
    padding-right: 0.3rem;
  }

  .library .list>ul>li.li_02 a .bd .name {
    font-size: 0.24rem;
  }

  .library .list>ul>li.li_02 a .bd p {
    font-size: 0.22rem;
    line-height: 1.6em;
    max-height: 3.2em;
    margin-top: 0.1rem;
  }

  .library .list>ul>li.li_02 a .bd .info {
    padding-top: 0.15rem;
    font-size: 0.22rem;
  }

  .library .list>ul>li.li_02 a .bd .info em {
    height: 0.36rem;
  }

  .library .list>ul>li.li_03 {
    padding-bottom: 0.3rem;
  }

  .library .list>ul>li.li_03 .name {
    font-size: 0.24rem;
    line-height: 1.5em;
    padding: 0.3rem 0 0.2rem 0;
  }

  .library .list>ul>li.li_03 dl {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.2rem;
  }

  .library .list>ul>li.li_video ul {
    grid-gap: 0.3rem;
  }

  .library .list>ul>li.li_video li a .zoomImg img {
    height: 2.1rem;
  }

  .library .list>ul>li.li_video li a .zoomImg .time {
    font-size: 0.22rem;
    width: 1rem;
    height: 0.44rem;
  }

  .library .list>ul>li.li_video li a .name {
    font-size: 0.24rem;
    line-height: 1.5em;
  }

  .library .recommend {
    padding-top: 0.6rem;
  }

  .library .recommend .title {
    height: 0.9rem;
    font-size: 0.32rem;
    padding-left: 0.3rem;
  }

  .library .recommend .title img {
    width: 0.32rem;
  }

  .library .recommend .list-wrapper li a .zoomImg img {
    height: 4rem;
  }

  .library .recommend .list-wrapper li a .name {
    padding: 0.25rem 1.25rem 0.25rem 0.25rem;
    font-size: 0.24rem;
    line-height: 1.5em;
  }

  .library .hot-list {
    padding: 0;
  }

  .library .hot-list .title {
    font-size: 0.32rem;
    line-height: 0.32rem;
    padding: 0.2rem 0 0.16rem 0.3rem;
  }

  .library .hot-list .title img {
    width: 0.32rem;
  }

  .library .hot-list ul {
    padding: 0.2rem 0.3rem;
  }

  .library .hot-list li {
    padding: 0.05rem 0;
  }

  .library .hot-list li a {
    height: 0.6rem;
    line-height: 0.6rem;
    padding-left: 0.6rem;
    font-size: 0.24rem;
  }

  .library .hot-list li a:after {
    left: 0;
    font-size: 0.22rem;
    width: 0.44rem;
    height: 0.44rem;
  }

  .videos-1 .img-list {
    height: 4rem;
  }

  .videos-1 .img-list li a img {
    height: 4rem;
  }

  .videos-1 .img-list li a .name {
    bottom: 0.1rem;
    font-size: 0.24rem;
  }

  .videos-1 .list {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0.35rem 0.25rem;
  }

  .videos-1 .list li {
    font-size: 0.24rem;
    height: 0.6rem;
    line-height: 0.6rem;
  }

  .videos-1 .list li.on {
    font-size: 0.26rem;
  }

  .videos .navs {
    padding: 0.36rem 0 0.2rem 0;
  }

  .videos .navs ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: -0.4rem;
  }

  .videos .navs li {
    padding: 0 0 0.15rem 0.4rem;
  }

  .videos .navs a {
    height: 0.56rem;
    line-height: 0.52rem;
    font-size: 0.26rem;
  }

  .videos .list ul {
    grid-gap: 0.2rem 0.25rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .videos .list li a .zoomImg img {
    height: 2.2rem;
  }

  .videos .list li a .name {
    font-size: 0.24rem;
    height: 0.7rem;
    line-height: 0.7rem;
  }

  .page-num {
    font-size: 0.26rem;
  }

  .page-num p {
    display: none;
  }

  .page-num a {
    margin: 0 0.03rem;
    min-width: 0.6rem;
    height: 0.6rem;
  }

  .page-num a.arrow {
    width: 1.1rem;
  }

  .page-num .form {
    display: none;
  }

  .matrix .btns {
    padding: 0 0.5rem 0.15rem 0.5rem;
  }

  .matrix .btns li .ico {
    height: 0.42rem;
  }

  .matrix .btns li .ico img {
    height: 0.42rem;
  }

  .matrix .btns li .name {
    font-size: 0.26rem;
  }

  .matrix .list {
    padding: 0.4rem 0.3rem 0 0.3rem;
  }

  .matrix .list ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.3rem;
  }

  .matrix .list li .name {
    padding: 0.15rem 0 0.2rem 0;
    font-size: 0.2rem;
  }

  .matrix .list li .name img {
    width: 0.24rem;
  }

  .page-banner li img,
  .page-banner2 li img {
    height: 3.6rem;
  }

  .page-banner .arrow a.prev,
  .page-banner2 .arrow a.prev {
    left: 0.3rem;
  }

  .page-banner .arrow a.next,
  .page-banner2 .arrow a.next {
    right: 0.3rem;
  }

  .page-banner2 li img {
    height: 3.6rem;
  }

  .kxyl-1 {
    padding: 0.3rem 0 0.6rem 0;
  }

  .kxyl-1>.hd {
    padding-top: 0.8rem;
  }

  .kxyl-1>.hd .tag {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .kxyl-1>.hd p {
    font-size: 0.24rem;
    line-height: 1.5em;
  }

  .kxyl-1 .imgs {
    width: 100%;
  }

  .kxyl-1 .imgs li img {
    height: 4rem;
  }

  .kxyl-1 .list {
    width: 100%;
    padding-top: 0.4rem;
  }

  .kxyl-1 .list .hd h5 a {
    font-size: 0.28rem;
  }

  .kxyl-1 .list .hd p {
    font-size: 0.24rem;
    line-height: 1.5em;
  }

  .kxyl-1 .list li a {
    height: 0.65rem;
    font-size: 0.24rem;
  }

  .kxyl-1 .list li a .time {
    font-size: 0.22rem;
  }

  .kxyl-2 {
    padding-bottom: 0.6rem;
  }

  .kxyl-2 .title {
    font-size: 0.4rem;
    padding: 0.5rem 0 0.45rem 0;
  }

  .kxyl-2 .list {
    margin-right: 0.2rem;
    margin-left: 0.2rem;
  }

  .kxyl-2 .list .arrow a {
    font-size: 0.4rem;
  }

  .kxyl-2 .list-wrapper li {
    padding: 0 0.3rem;
  }

  .kxyl-2 .list-wrapper li a .zoomImg img {
    height: 4rem;
  }

  .kxyl-2 .list-wrapper li a .name {
    height: 0.8rem;
    font-size: 0.26rem;
  }

  .kxyl-3 .wal2 {
    margin: 0 !important;
    padding: 0.6rem 0 0.8rem 0;
  }

  .kxyl-3 .title {
    font-size: 0.4rem;
  }

  .kxyl-3 .list .list-wrapper2 {
    margin-left: -0.8rem;
    margin-right: -0.8rem;
  }

  .kxyl-3 .list .list-wrapper li {
    padding: 0.3rem 0.4rem 0.2rem 0.4rem;
    height: 5.8rem;
  }

  .kxyl-3 .list .list-wrapper li .item {
    width: 3rem;
    padding: 0.2rem;
  }

  .kxyl-3 .list .list-wrapper li .item .zoomImg img {
    height: 2.6rem;
  }

  .kxyl-3 .list .list-wrapper li .item .name {
    padding: 0.2rem 0 0.1rem 0;
    margin-right: -0.5rem;
  }

  .kxyl-3 .list .list-wrapper li .item .name:before {
    height: 0.24rem;
  }

  .kxyl-3 .list .list-wrapper li .item .name h5 {
    font-size: 0.28rem;
  }

  .kxyl-3 .list .list-wrapper li .item .name em {
    font-size: 0.22rem;
  }

  .kxyl-3 .list .list-wrapper li .item .info {
    font-size: 0.22rem;
    line-height: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .kxyl-3 .list .list-wrapper li.swiper-slide-prev .item {
    left: -0.3rem;
  }

  .kxyl-3 .list .list-wrapper li.swiper-slide-next .item {
    left: 0.3rem;
  }

  .kxyl-3 .list .list-wrapper li.swiper-slide-active .item {
    width: 3.4rem;
  }

  .kxyl-3 .list .list-wrapper li.swiper-slide-active .item .zoomImg img {
    height: 3rem;
  }

  .kxyl-3 .list .list-wrapper li.swiper-slide-active .item .info {
    height: 0.7rem;
  }

  .kxyl-3 .arrow {
    padding: 0 2.6rem;
  }

  .kxyl-3 .arrow a {
    font-size: 0.24rem;
    width: 0.6rem;
    height: 0.6rem;
  }

  .kxyl-4 .w950 {
    width: 100%;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.6rem 0.3rem;
  }

  .kxyl-4 .w950 .title {
    padding-bottom: 0.2rem;
  }

  .kxyl-4 .w950 .title h2 {
    font-size: 0.32rem;
  }

  .kxyl-4 .w950 .title a.more {
    font-size: 0.24rem;
  }

  .kxyl-4 .w950 .hd a {
    padding-top: 0.3rem;
  }

  .kxyl-4 .w950 .hd a .zoomImg {
    width: 2.6rem;
  }

  .kxyl-4 .w950 .hd a .zoomImg img {
    height: 1.53rem;
  }

  .kxyl-4 .w950 .hd a .col {
    padding-left: 0.25rem;
  }

  .kxyl-4 .w950 .hd a .col h5 {
    font-size: 0.26rem;
  }

  .kxyl-4 .w950 .hd a .col p {
    font-size: 0.24rem;
    line-height: 1.5em;
    max-height: 3em;
  }

  .kxyl-4 .w950 ul li {
    padding-top: 0.1rem;
  }

  .kxyl-4 .w950 ul li a {
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.24rem;
  }

  .kxyl-4 .w950 ul.ul-2 li a {
    height: 0.7rem;
    line-height: 0.7rem;
  }

  .kxyl-4 .w410 {
    width: 100%;
    padding-top: 0.5rem;
  }

  .kxyl-4 .w410 .video img {
    height: 3.6rem;
  }

  .kxyl-4 .w410 .report .title {
    padding: 0.45rem 0 0.3rem 0;
  }

  .kxyl-4 .w410 .report .title img {
    width: 0.32rem;
    margin-right: 0.08rem;
  }

  .kxyl-4 .w410 .report .title h2 {
    font-size: 0.32rem;
  }

  .kxyl-4 .w410 .report .list-1 li a .zoomImg img {
    height: 2.1rem;
  }

  .kxyl-4 .w410 .report .list-1 li a .bd {
    padding: 0.1rem 0.2rem 0.15rem 0.2rem;
  }

  .kxyl-4 .w410 .report .list-1 li a .bd .tag {
    font-size: 0.22rem;
    line-height: 0.44rem;
  }

  .kxyl-4 .w410 .report .list-1 li a .bd .name {
    font-size: 0.24rem;
    line-height: 0.36rem;
    height: 0.72rem;
  }

  .kxyl-4 .w410 .report .list-1 li a .bd .time {
    font-size: 0.22rem;
    line-height: 0.44rem;
  }

  .kxyl-4 .w410 .report .list-2 {
    padding-top: 0.3rem;
  }

  .kxyl-4 .w410 .report .list-2 a {
    height: 0.6rem;
  }

  .kxyl-4 .w410 .report .list-2 a .name {
    font-size: 0.24rem;
  }

  .kxyl-4 .w410 .report .list-2 a .time {
    font-size: 0.22rem;
  }

  .kxyl-5 .title {
    font-size: 0.4rem;
  }

  .kxyl-5 .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem;
  }

  .page-title .more {
    font-size: 0.24rem;
    top: 0.7rem;
  }

  .ksts-1 .wal2 {
    margin: 0 !important;
  }

  .ksts-1 .page-title a.more {
    right: 0.3rem;
  }

  .ksts-1 .img-list {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .ksts-1 .img-list li {
    padding-left: 0.3rem;
  }

  .ksts-1 .img-list li a .zoomImg img {
    height: 3.6rem;
  }

  .ksts-1 .img-list li a .name {
    bottom: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }

  .ksts-1 .img-list li a .time {
    width: 0.9rem;
    font-size: 0.2rem;
    height: 0.9rem;
  }

  .ksts-1 .img-list li a .time .day {
    font-size: 0.38rem;
    margin-bottom: 0.04rem;
  }

  .ksts-1 .list {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .ksts-1 .list li {
    padding-left: 0.3rem;
  }

  .ksts-1 .list li a:before {
    font-size: 0.24rem;
  }

  .ksts-1 .list li a .time {
    font-size: 0.22rem;
  }

  .ksts-1 .list li a .name {
    font-size: 0.26rem;
    line-height: 0.4rem;
    height: 0.8rem;
    margin-top: 0.06rem;
  }

  .ksts-1 .list li a p {
    font-size: 0.22rem;
    line-height: 0.34rem;
    height: 1.02rem;
  }

  .ksts-2 {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .ksts-2:before {
    margin-right: 0;
    height: 6rem;
  }

  .ksts-2 .wal2 {
    padding-bottom: 1rem;
  }

  .ksts-2 .list-1 {
    width: 100%;
    height: 4.5rem;
  }

  .ksts-2 .list-1 li a .zoomImg img {
    height: 4.5rem;
  }

  .ksts-2 .list-1 li a .name {
    font-size: 0.24rem;
  }

  .ksts-2 .list-2 {
    width: 100%;
    padding-top: 0.4rem;
  }

  .ksts-2 .list-2 ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem;
  }

  .ksts-2 .list-2 li {
    padding-bottom: 0;
  }

  .ksts-2 .list-2 li a .time {
    top: 1.38rem;
    font-size: 0.22rem;
    padding-top: 0;
    width: 1.68rem;
    height: 0.52rem;
  }

  .ksts-2 .list-2 li a .name {
    font-size: 0.24rem;
    line-height: 0.32rem;
    height: 0.64rem;
    padding: 0 0.2rem;
  }

  .ksts-2 .list-3 {
    width: 100%;
    padding-top: 0.3rem;
  }

  .ksts-2 .list-3 .list-wrapper {
    margin-right: -0.3rem;
    margin-left: -0.3rem;
  }

  .ksts-2 .list-3 li {
    padding: 0 0 0.2rem 0.3rem;
  }

  .ksts-2 .list-3 li a {
    height: 1.8rem;
    padding: 0.25rem;
  }

  .ksts-2 .list-3 li a .name {
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 0.8rem;
  }

  .ksts-2 .list-3 li a .time {
    font-size: 0.22rem;
    padding-top: 0;
    width: 1.68rem;
    height: 0.52rem;
  }

  .ksts-2 .list-3 li a .btn {
    font-size: 0.22rem;
    background-size: 0.22rem;
    padding-left: 0.32rem;
  }

  .ksts-3 .page-title {
    padding-top: 0;
    padding-bottom: 0.45rem;
  }

  .ksts-3 .page-title h2 {
    width: 1.62rem;
  }

  .ksts-3 .big-imgs {
    width: 100%;
  }

  .ksts-3 .big-imgs li a {
    display: block;
  }

  .ksts-3 .big-imgs li a .time {
    font-size: 0.24rem;
    height: 0.36rem;
    margin-top: 0.4rem;
  }

  .ksts-3 .big-imgs li a .time img {
    width: 0.2rem;
  }

  .ksts-3 .big-imgs li a h5 {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }

  .ksts-3 .big-imgs li a p {
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 0.8rem;
    padding-right: 0;
  }

  .ksts-3 .list {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .ksts-3 .list li a .zoomImg {
    width: 3rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .ksts-3 .list li a .zoomImg img {
    height: 2rem;
  }

  .ksts-3 .list li a .col .name {
    font-size: 0.24rem;
    line-height: 0.36rem;
    height: 0.72rem;
  }

  .ksts-3 .list li a .col .time {
    font-size: 0.22rem;
    padding: 0.2rem 0.28rem;
    background-size: 0.2rem;
  }

  .ksts-3 .list .more {
    padding: 0.4rem 0.5rem;
  }

  .ksts-3 .list .more a {
    font-size: 0.24rem;
    height: 0.7rem;
  }

  .ksts-4:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2.93rem;
    background: #f4f9ff;
  }

  .ksts-4 .list .list-wrapper>ul>li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .zoomImg {
    width: 100%;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .zoomImg img {
    height: 3.6rem;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .col {
    width: 100%;
    padding: 0.4rem 0.3rem 0.3rem;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .col h5 {
    font-size: 0.32rem;
    line-height: 0.4rem;
    padding: 0.24rem 0;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .col p {
    font-size: 0.24rem;
    line-height: 0.44rem;
    max-height: 1.32rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .ksts-4 .list .list-wrapper>ul>li .bd .col .btn {
    font-size: 0.24rem;
    margin-top: 0.3rem;
  }

  .ksts-4 .list .list-wrapper>ul>li ul {
    width: 100%;
  }

  .ksts-4 .list .arrow {
    right: 50%;
    width: 50%;
  }

  .ksts-5 .btns {
    position: relative;
    width: 100%;
    padding-top: 0.4rem;
  }

  .ksts-5 .btns:before {
    display: none;
  }

  .ksts-5 .btns ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .ksts-5 .btns li h5 {
    font-size: 0.28rem;
    width: 2em;
  }

  .ksts-5 .btns li:nth-child(2) {
    left: 0;
  }

  .ksts-5 .list {
    width: 100%;
    padding: 0.35rem 0.5rem 0 0.5rem;
  }

  .ksts-5 .list li {
    width: 100%;
    padding-bottom: 0.4rem;
  }

  .ksts-5 .list li a .zoomImg img {
    height: 3.6rem;
  }

  .ksts-5 .list li a .time {
    width: 1rem;
    height: 1rem;
    font-size: 0.2rem;
  }

  .ksts-5 .list li a .time .day {
    font-size: 0.38rem;
  }

  .ksts-5 .list li a .name {
    font-size: 0.26rem;
    line-height: 0.4rem;
    font-weight: bold;
    padding: 0.25rem 0 0.15rem 0;
  }

  .ksts-5 .list li a p {
    font-size: 0.22rem;
    line-height: 0.4rem;
    height: 0.8rem;
  }

  .ksts-5 .list .more {
    padding-bottom: 0.5rem;
  }

  .ksts-5 .list .more a {
    font-size: 0.26rem;
  }

  .ksts-6 .list .list-wrapper>ul>li {
    height: auto;
    padding: 0.13rem 0.2rem;
  }

  .ksts-6 .list .list-wrapper>ul>li .bd {
    position: relative;
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .ksts-6 .list .list-wrapper>ul>li .bd a {
    width: 100%;
    height: 3.76rem;
  }

  .ksts-6 .list .list-wrapper>ul>li .bd a h5 {
    font-size: 0.28rem;
    line-height: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .ksts-6 .list .list-wrapper>ul>li .bd a p {
    margin-top: 0.15rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .ksts-6 .list .list-wrapper>ul>li .bd a .btn {
    font-size: 0.24rem;
  }

  .ksts-6 .list .list-wrapper>ul>li .bd a .btn:after {
    width: 2.5rem;
  }

  .ksts-6 .list .list-wrapper>ul>li ul {
    grid-gap: 0.2rem;
    margin-top: 0.3rem;
  }

  .ksts-6 .list .list-wrapper>ul>li li a {
    padding: 0.22rem 0.85rem 0 0.2rem;
    height: 1.6rem;
  }

  .ksts-6 .list .list-wrapper>ul>li li a .name {
    font-size: 0.24rem;
    line-height: 0.36rem;
    height: 0.72rem;
  }

  .ksts-6 .list .list-wrapper>ul>li li a .btn {
    font-size: 0.2rem;
    left: 0.2rem;
    bottom: 0.2rem;
  }

  .ksts-6 .list .arrow {
    padding: 0 0.8rem;
    margin-top: 0.3rem;
  }

  .ksts-6 .list .arrow a {
    width: 0.6rem;
    height: 0.6rem;
  }

  .ksts-7 {
    background-size: auto 100%;
  }

  .ksts-7 .list {
    padding: 0 0 0 0;
  }

  .ksts-7 .list li {
    width: 100%;
    padding-bottom: 0.3rem;
  }

  .ksts-7 .list a {
    height: 1.2rem;
  }

  .ksts-7 .list a .time {
    width: 1.02rem;
    height: 1.2rem;
    font-size: 0.18rem;
  }

  .ksts-7 .list a .time .day {
    font-size: 0.4rem;
  }

  .ksts-7 .list a .col {
    padding: 0 0.15rem;
  }

  .ksts-7 .list a .col h5 {
    font-size: 0.24rem;
    height: 0.4rem;
    line-height: 0.4rem;
  }

  .ksts-7 .list a .col p {
    font-size: 0.22rem;
    height: 0.4rem;
    line-height: 0.4rem;
  }

  .ksts-8 .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2rem;
  }

  .index-search .form {
    height: 0.8rem;
  }

  .index-search .form .input input {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.24rem;
  }

  .index-search .form .submit {
    width: 1.8rem;
    height: 0.8rem;
    font-size: 0.26rem;
  }

  .index-search .list {
    font-size: 0.24rem;
  }

  .index-search .list li {
    margin-right: 1em;
    padding-bottom: 0.09rem;
  }

  .index-headline {
    min-height: 1.66rem;
    padding: 0.3rem 0.3rem 0.3rem;
  }

  .index-headline .time {
    left: -0.3rem;
    top: -0.3rem;
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.18rem;
    padding-top: 0.8rem;
  }

  .index-headline h2 {
    padding: 0.25rem 0.7rem 0.2rem 0.7rem;
  }

  .index-headline .list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0.24rem;
    line-height: 1.8em;
  }

  .index-headline .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .index-headline .list li {
    width: 100%;
    padding: 0.04rem 0.1rem;
  }

  .index-headline .list li:after {
    display: none;
  }

  .index-headline .list a.more {
    margin-left: 0;
    margin-top: 0.2rem;
  }

  .index-kpdt {
    width: 100%;
  }

  .index-kpdt .img-list li a .zoomImg img {
    height: 4.4rem;
  }

  .index-kpdt .img-list li a .time {
    top: 0.2rem;
    font-size: 0.2rem;
    width: 1rem;
    height: 1rem;
  }

  .index-kpdt .img-list li a .time .day {
    font-size: 0.48rem;
  }

  .index-kpdt .img-list li a .name {
    font-size: 0.26rem;
  }

  .index-kpdt .list .hd a {
    height: 1.8rem;
  }

  .index-kpdt .list .hd a .time {
    width: 1.3rem;
    height: 1.2rem;
    font-size: 0.2rem;
    padding-left: 0.14rem;
    padding-bottom: 0.06rem;
  }

  .index-kpdt .list .hd a .time .day {
    font-size: 0.28rem;
  }

  .index-kpdt .list .hd a .col h5 {
    font-size: 0.26rem;
  }

  .index-kpdt .list .hd a .col p {
    font-size: 0.22rem;
    margin-top: 0.08rem;
  }

  .index-kpdt .list li a {
    height: 0.9rem;
    font-size: 0.26rem;
  }

  .index-kpdt .list li a .time {
    font-size: 0.24rem;
  }

  .index-kphd {
    width: 100%;
  }

  .index-kphd .list .list-wrapper li a .col>.name {
    font-size: 0.28rem;
    line-height: 1.4em;
    height: 2.8em;
  }

  .index-kphd .list .list-wrapper li a .col dl {
    margin-top: 0.1rem;
  }

  .index-kphd .list .list-wrapper li a .col dd {
    font-size: 0.22rem;
    line-height: 0.3rem;
    padding-top: 0.08rem;
  }

  .index-kphd .list .list-wrapper li a .col dd .name {
    background: none;
    width: 1.1rem;
    height: 0.3rem;
  }

  .index-kphd .list .list-wrapper li a .col dd p {
    color: #999;
    padding-left: 0.12rem;
  }

  .index-kptd .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .index-kptd .list li:nth-child(5) {
    display: none;
  }

  .index-kptd .list li a .name {
    font-size: 0.24rem;
    line-height: 0.36rem;
    margin-top: 0.18rem;
  }

  .index-kpjz:before {
    height: 9.56rem;
  }

  .index-kpjz .wal {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .index-kpjz .item-1 {
    width: 100%;
  }

  .index-kpjz .item-1 .list-wrapper li a .name {
    top: 4.2rem;
    font-size: 0.24rem;
  }

  .index-kpjz .item-1 .list-wrapper li a .name img {
    width: 0.36rem;
  }

  .index-kpjz .item-1 .list-wrapper li a .bd {
    padding: 0 0.12rem;
  }

  .index-kpjz .item-1 .list-wrapper li a .bd h5 {
    font-size: 0.3rem;
  }

  .index-kpjz .item-1 .list-wrapper li a .bd p {
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 1.2rem;
  }

  .index-kpjz .item-2-1 a,
  .index-kpjz .item-3-2 a {
    padding: 0.29rem 0.38rem 0 0.24rem;
    min-height: 2.9rem;
  }

  .index-kpjz .item-2-1 a .name,
  .index-kpjz .item-3-2 a .name {
    font-size: 0.28rem;
    line-height: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .index-kpjz .item-2-1 a p,
  .index-kpjz .item-3-2 a p {
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 1.2rem;
  }

  .index-kpjz .item-2-1 a .info,
  .index-kpjz .item-3-2 a .info {
    margin-top: 0.2rem;
    padding: 0.3rem 0;
    font-size: 0.24rem;
  }

  .index-kpjz .item-2-1 a .info img,
  .index-kpjz .item-3-2 a .info img {
    width: 0.24rem;
  }

  .index-kpjz .item-2-2 a .zoomImg,
  .index-kpjz .item-3-1 a .zoomImg {
    border-radius: 0 0.3rem 0 0;
  }

  .index-kpjz .item-2-2 a .zoomImg img,
  .index-kpjz .item-3-1 a .zoomImg img {
    height: 5rem;
  }

  .index-kpjz .item-2-2 a .name,
  .index-kpjz .item-3-1 a .name {
    left: 0.24rem;
    bottom: 0.24rem;
    font-size: 0.26rem;
  }

  .index-kpjz .item-2 {
    width: 100%;
  }

  .index-kpjz .item-2 .share {
    padding: 0.5rem 0 0.3rem 0;
  }

  .index-kpjz .item-2 .item-2-2 a .zoomImg img {
    height: 4rem;
  }

  .index-kpjz .item-3 {
    width: 100%;
    padding-top: 0.4rem;
  }

  .index-kpjz .item-3 .item-3-2 {
    padding-top: 0.4rem;
  }

  .index-kxyl .page-title {
    padding: 0.8rem 0 0.1rem 0;
  }

  .index-kxyl .list ul {
    display: -ms-grid;
    display: grid;
    grid-gap: 0.6rem 0.3rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .index-kxyl .list li {
    width: 100%;
    height: 5.5rem;
  }

  .index-kxyl .list li .item {
    width: 100%;
    height: 4.5rem;
    padding: 0.9rem 0.35rem 0.3rem 0.35rem;
  }

  .index-kxyl .list li .item .img {
    width: 1.4rem;
    height: 1.4rem;
    top: -0.7rem;
    padding: 0.1rem;
  }

  .index-kxyl .list li .item .img img {
    height: 1.2rem;
  }

  .index-kxyl .list li .item p {
    font-size: 0.22rem;
    line-height: 0.38rem;
  }

  .index-kxts:before {
    width: 7.5rem;
  }

  .index-kxts .img-list {
    width: 100%;
  }

  .index-kxts .img-list li a .zoomImg img {
    height: 4.6rem;
  }

  .index-kxts .img-list li a .name {
    font-size: 0.26rem;
    line-height: 0.44rem;
  }

  .index-kxts .img-list .arrow a {
    font-size: 0.28rem;
    top: 2.2rem;
    width: 0.9rem;
    height: 0.9rem;
  }

  .index-kxts .img-list .arrow a.prev {
    left: -0.45rem;
    padding-left: 0.35rem;
  }

  .index-kxts .img-list .arrow a.next {
    right: -0.45rem;
    padding-right: 0.35rem;
  }

  .index-kxts .list {
    width: 100%;
    padding-top: 0.6rem;
  }

  .index-kxts .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .index-kxts .list li:nth-child(3) {
    display: none;
  }

  .index-kxts .list a {
    display: block;
  }

  .index-kxts .list a .img img {
    height: 3.7rem;
  }

  .index-kxts .list a .name {
    font-size: 0.24rem;
    line-height: 0.44rem;
    padding-bottom: 0.3rem;
  }

  .index-1 {
    width: 100%;
  }

  .index-1 .hd a .zoomImg {
    width: 2.8rem;
  }

  .index-1 .hd a .zoomImg img {
    height: 2.1rem;
  }

  .index-1 .hd a .col .name {
    font-size: 0.26rem;
    line-height: 0.44rem;
    height: 0.44rem;
  }

  .index-1 .hd a .col p {
    font-size: 0.24rem;
    line-height: 0.4rem;
    height: 0.8rem;
  }

  .index-1 .hd a .col .time {
    font-size: 0.24rem;
  }

  .index-1 li a {
    height: 0.9rem;
    font-size: 0.26rem;
  }

  .index-1 li a .time {
    font-size: 0.24rem;
  }

  .index-kpyd ul {
    grid-gap: 0.2rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .index-kxsn .navs {
    padding-left: 0;
    background: none;
  }

  .index-kxsn .navs img {
    position: relative;
  }

  .index-kxsn .navs ul {
    background: #ecfce8;
  }

  .index-kxsn .navs li a {
    height: 1rem;
    font-size: 0.32rem;
  }

  .index-kxsn .page-row {
    padding: 0.5rem 0.26rem 0.26rem;
  }

  .index-kxsn .img-list {
    width: 100%;
  }

  .index-kxsn .img-list li a .zoomImg img {
    height: 4rem;
  }

  .index-kxsn .img-list li a .name {
    font-size: 0.24rem;
  }

  .index-kxsn .list {
    width: 100%;
    padding-top: 0.5rem;
  }

  .index-kxsn .list .hd a .zoomImg {
    width: 2.6rem;
  }

  .index-kxsn .list .hd a .zoomImg img {
    height: 2rem;
  }

  .index-kxsn .list .hd a .col .name {
    font-size: 0.26rem;
    line-height: 0.44rem;
    height: 0.88rem;
  }

  .index-kxsn .list .hd a .col p {
    font-size: 0.22rem;
    line-height: 0.44rem;
    height: 0.44rem;
  }

  .index-kxsn .list .hd a .col .time {
    font-size: 0.24rem;
    line-height: 0.44rem;
  }

  .index-kxsn .list li a {
    height: 0.8rem;
    font-size: 0.26rem;
  }

  .index-kxsn .list li a .time {
    font-size: 0.24rem;
  }

  .index-kxsn .item {
    width: 2.8rem;
    display: none;
  }

  .index-kxsn .item a {
    display: block;
  }

  .index-kxsn .item a .img {
    padding: 0.1rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.1rem 0 rgba(0,0,0,.06);
  }

  .index-kxsn .item a .img img {
    height: 3.7rem;
  }

  .index-kxsn .item a .name {
    margin-top: 0.18rem;
    font-size: 0.22rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .index-news {
    height: 7.2rem;
  }

  .index-news .title h2 {
    font-size: 0.52rem;
  }

  .index-news .title div {
    font-size: 0.32rem;
    margin-top: 0.4rem;
  }

  .index-news .list li {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 1px;
  }

  .index-news .list li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    line-height: 1.4em;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    background: #f5faff;
    box-shadow: 0 0.04rem 0.3rem 0 rgba(71,71,71,.1);
  }

  .index-news .list li a:hover {
    -webkit-animation: zoomAnima .6s linear infinite;
    animation: zoomAnima .6s linear infinite;
  }

  .index-news .list li:nth-child(1) {
    margin-left: -8rem;
    margin-top: 1.92rem;
  }

  .index-news .list li:nth-child(1) a {
    font-size: 0.3rem;
    color: #015293;
    width: 1.6rem;
    height: 1.6rem;
    background: #f5faff;
  }

  .index-news .list li:nth-child(2) {
    margin-left: -8.67rem;
    margin-top: 4.2rem;
  }

  .index-news .list li:nth-child(2) a {
    font-size: 0.24rem;
    color: #1cac2f;
    width: 0.8rem;
    height: 0.8rem;
    background: #f9ffef;
  }

  .index-news .list li:nth-child(3) {
    margin-left: -5.8rem;
    margin-top: 1.86rem;
  }

  .index-news .list li:nth-child(3) a {
    font-size: 0.24rem;
    color: #a7365d;
    width: 1.2rem;
    height: 1.2rem;
    background: #fff8fb;
  }

  .index-news .list li:nth-child(4) {
    margin-left: -6.78rem;
    margin-top: 3.5rem;
  }

  .index-news .list li:nth-child(4) a {
    font-size: 0.24rem;
    color: #6a4cc5;
    width: 1rem;
    height: 1rem;
    background: #f9f7ff;
  }

  .index-news .list li:nth-child(5) {
    margin-left: -7.26rem;
    margin-top: 5.33rem;
  }

  .index-news .list li:nth-child(5) a {
    font-size: 0.24rem;
    color: #2358b8;
    width: 1.2rem;
    height: 1.2rem;
    background: #f4faff;
  }

  .index-news .list li:nth-child(6) {
    margin-left: -3.67rem;
    margin-top: 2.75rem;
  }

  .index-news .list li:nth-child(6) a {
    font-size: 0.24rem;
    color: #2358b8;
    width: 1rem;
    height: 1rem;
    background: #f4f8ff;
  }

  .index-news .list li:nth-child(7) {
    margin-left: -4.85rem;
    margin-top: 3.82rem;
  }

  .index-news .list li:nth-child(7) a {
    font-size: 0.24rem;
    color: #aa8a5a;
    width: 1.2rem;
    height: 1.2rem;
    background: #fffaf4;
  }

  .index-news .list li:nth-child(8) {
    margin-left: -4.95rem;
    margin-top: 5.47rem;
  }

  .index-news .list li:nth-child(8) a {
    font-size: 0.18rem;
    color: #aa8a5a;
    width: 0.9rem;
    height: 0.9rem;
    background: #fffffe;
  }

  .index-news .list li:nth-child(9) {
    margin-left: -3.41rem;
    margin-top: 4.16rem;
  }

  .index-news .list li:nth-child(9) a {
    font-size: 0.18rem;
    color: #be8b8b;
    width: 0.7rem;
    height: 0.7rem;
    background: #fff8f8;
  }

  .index-news .list li:nth-child(10) {
    margin-left: -2.39rem;
    margin-top: 3.28rem;
  }

  .index-news .list li:nth-child(10) a {
    font-size: 0.18rem;
    color: #015293;
    width: 0.7rem;
    height: 0.7rem;
    background: #f4faff;
  }

  .index-news .list li:nth-child(11) {
    margin-left: -1.93rem;
    margin-top: 4.35rem;
  }

  .index-news .list li:nth-child(11) a {
    font-size: 0.24rem;
    color: #207e14;
    width: 1.2rem;
    height: 1.2rem;
    background: #fcfff8;
  }

  .index-news .list li:nth-child(12) {
    margin-left: -2.21rem;
    margin-top: 5.65rem;
  }

  .index-news .list li:nth-child(12) a {
    font-size: 0.18rem;
    color: #1b19a5;
    width: 0.8rem;
    height: 0.8rem;
    background: #efefff;
  }

  .index-news .list li:nth-child(13) {
    margin-left: -0.18rem;
    margin-top: 4.14rem;
  }

  .index-news .list li:nth-child(13) a {
    font-size: 0.24rem;
    color: #1cac2f;
    width: 0.8rem;
    height: 0.8rem;
    background: #f9ffef;
  }

  .index-news .list li:nth-child(14) {
    margin-left: 0.08rem;
    margin-top: 5.68rem;
  }

  .index-news .list li:nth-child(14) a {
    font-size: 0.3rem;
    color: #1a7830;
    width: 1rem;
    height: 1rem;
    background: #fafffc;
  }

  .index-news .list li:nth-child(15) {
    margin-left: 1.39rem;
    margin-top: 3.92rem;
  }

  .index-news .list li:nth-child(15) a {
    font-size: 0.24rem;
    color: #2358b8;
    width: 1.2rem;
    height: 1.2rem;
    background: #f7faff;
  }

  .index-news .list li:nth-child(16) {
    margin-left: 1.38rem;
    margin-top: 5.17rem;
  }

  .index-news .list li:nth-child(16) a {
    font-size: 0.18rem;
    color: #b0ad6f;
    width: 0.7rem;
    height: 0.7rem;
    background: #fffef4;
  }

  .index-news .list li:nth-child(17) {
    margin-left: 2.68rem;
    margin-top: 3.26rem;
  }

  .index-news .list li:nth-child(17) a {
    font-size: 0.18rem;
    color: #128646;
    width: 0.7rem;
    height: 0.7rem;
    background: #ebfff1;
  }

  .index-news .list li:nth-child(18) {
    margin-left: 2.9rem;
    margin-top: 5.14rem;
  }

  .index-news .list li:nth-child(18) a {
    font-size: 0.18rem;
    color: #cb7915;
    width: 0.9rem;
    height: 0.9rem;
    background: #fffbf6;
  }

  .index-news .list li:nth-child(19) {
    margin-left: 3.67rem;
    margin-top: 2.46rem;
  }

  .index-news .list li:nth-child(19) a {
    font-size: 0.18rem;
    color: #258a7d;
    width: 0.7rem;
    height: 0.7rem;
    background: #eff;
  }

  .index-news .list li:nth-child(20) {
    margin-left: 3.65rem;
    margin-top: 3.96rem;
  }

  .index-news .list li:nth-child(20) a {
    font-size: 0.3rem;
    color: #207e14;
    width: 1rem;
    height: 1rem;
    background: #f7ffff;
  }

  .index-news .list li:nth-child(21) {
    margin-left: 4.84rem;
    margin-top: 1.2rem;
  }

  .index-news .list li:nth-child(21) a {
    font-size: 0.3rem;
    color: #920000;
    width: 1.2rem;
    height: 1.2rem;
    background: #fff3f3;
  }

  .index-news .list li:nth-child(22) {
    margin-left: 7.08rem;
    margin-top: 1.42rem;
  }

  .index-news .list li:nth-child(22) a {
    font-size: 0.3rem;
    color: #fff;
    width: 1.6rem;
    height: 1.6rem;
    background: -webkit-linear-gradient(top, #104FBD 0%, #4C83E3 100%);
    background: linear-gradient(180deg, #104FBD 0%, #4C83E3 100%);
  }

  .index-news .list li:nth-child(23) {
    margin-left: 5.55rem;
    margin-top: 2.89rem;
  }

  .index-news .list li:nth-child(23) a {
    font-size: 0.24rem;
    color: #437bdd;
    width: 1rem;
    height: 1rem;
    background: #eff5ff;
  }

  .index-news .list li:nth-child(24) {
    margin-left: 5.74rem;
    margin-top: 4.38rem;
  }

  .index-news .list li:nth-child(24) a {
    font-size: 0.18rem;
    color: #b30808;
    width: 0.9rem;
    height: 0.9rem;
    background: #fff5f5;
  }

  .index-news .list li:nth-child(25) {
    margin-left: 4.94rem;
    margin-top: 5.56rem;
  }

  .index-news .list li:nth-child(25) a {
    font-size: 0.24rem;
    color: #1d2290;
    width: 1.2rem;
    height: 1.2rem;
    background: #f1f2ff;
  }

  .index-news .list li:nth-child(26) {
    margin-left: 7.36rem;
    margin-top: 3.78rem;
  }

  .index-news .list li:nth-child(26) a {
    font-size: 0.24rem;
    color: #513dac;
    width: 1.2rem;
    height: 1.2rem;
    background: #f2efff;
  }

  .index-news .list li:nth-child(27) {
    margin-left: 8.52rem;
    margin-top: 2.72rem;
  }

  .index-news .list li:nth-child(27) a {
    font-size: 0.24rem;
    color: #437bdd;
    width: 1rem;
    height: 1rem;
    background: #f1f6ff;
  }

  .index-news .list li:nth-child(28) {
    margin-left: 8.86rem;
    margin-top: 4.33rem;
  }

  .index-news .list li:nth-child(28) a {
    font-size: 0.18rem;
    color: #2f6628;
    width: 0.7rem;
    height: 0.7rem;
    background: #f4fff3;
  }

  .index-news .list li:nth-child(29) {
    margin-left: 7.22rem;
    margin-top: 5.65rem;
  }

  .index-news .list li:nth-child(29) a {
    font-size: 0.18rem;
    color: #2f6628;
    width: 0.9rem;
    height: 0.9rem;
    background: #f5fff4;
  }

  .index-links .list ul {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.3rem;
  }

  .index-links .list li a img {
    height: 0.5rem;
  }
}