@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}

img {
  vertical-align: top;
}

html {
  overflow-x: hidden;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

[hidefocus],
summary {
  outline: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}

sup,
sub {
  font-size: 83%;
}

pre,
code,
kbd,
samp {
  font-family: inherit;
}

q:before,
q:after {
  content: none;
}

textarea {
  overflow: auto;
  resize: none;
}

label,
summary {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}

del,
ins,
u,
s,
a,
a:hover,
a:active {
  text-decoration: none;
}

body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}

:focus {
  outline: 0;
}

/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: block;
  *zoom: 1;
}

.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}

/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
  /*滚动条的背景颜色*/
  -webkit-border-radius: 0;
  /*滚动条的圆角宽度*/
}

::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}

p {
  line-height: 1.75;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  /* color: rgba(67, 130, 233, 1); */
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}

.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.text-line6 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
/*页面尺寸*/
.header{
  position: absolute;
  padding-bottom: 40px;
  padding-top: 30px;
  
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}


.h1{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.h1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 搜索框样式 */
.searchbox{
  display: flex;
  width: 34px; 
  height: 33px;
  background:url(images/search.png) no-repeat center center;
  background-size: cover;
  z-index: 3;
}
.wp-search {
  width: auto;
  height: 25px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  padding-left: 5px;
  padding-right: 0px;
  z-index: 3;
}
.wp-search form {
  display: flex;
  justify-content: space-between;
}
.wp-search .search-input {
  width: 0px;
  height: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width 0.5s;
}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 25px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #666;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
}
.wp-search .search-btn {
  width: 40px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  border-radius: 12.5px;
}

.wp-search .search-btn input.search-submit {
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  background:url(images/search.png) no-repeat center center;
  background-size: 16px 16px;
  cursor: pointer;
  position: absolute;
  right:50%;
  top: 50%;
  transform: translate(50%, -50%);
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}


/* nav */
.head-nav{
  width: calc(100% - 65px);
  height: 40px;
  box-sizing: border-box;
  z-index: 3;
  position: relative;
}
.nav .wp-menu {
  width: auto;
  height: 40px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 40px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  transition: all 0s ease;
  padding: 0 22px;
  
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 0px 3px 4px rgba(60,41,133,0.6);
}
.nav .wp-menu .menu-item:hover a.menu-link {
  position: relative;
}
.nav .wp-menu .menu-item> a.menu-link{ 
  color: #ffffff;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
  text-align: left;
  padding-top: 3px;
}
.nav .sub-menu:before {
  width: 100%;
  height: 3px;
  background: linear-gradient(237deg, #5F13B0 0%, #1735D0 100%);
  left: 0px;
  top: 0px;
  content: "";
  position: absolute;
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
  transition: all 0.3s;
}

.nav .sub-menu .sub-item a {
  height: auto;
  min-height: 40px;
  text-align: left;
  padding: 4px 15px;
  transition: all 0.3s;
  letter-spacing: 0.8px;
  font-family: Roboto;
  font-weight: 500;
  font-size: 16px;
  color: #090B18;
  line-height: 36px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #6f20b2;
  font-weight: 500;
}
.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}

.nav .sub-menu .sub-menu{
  display: none;
  position: absolute;
  left: 100%;
  transform: translateX(0);
  top: -3px;
  width: auto;
  min-width: 50%;
  z-index: 100;
}
.nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
}
.nav .wp-menu .menu-item:hover .sub-menu .sub-menu{
  display: none;
}

.h3{
  display: flex;
  /* gap: 35px; */
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.h2{
  display: flex;
  position: relative;
  z-index: 3;
  width: 70px;
  height: 28px;
  padding: 1px 0px;
  border-radius: 4px;
}
#h2{
  display: none;
}
.h2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(50deg, #5F13B0 0%, #1735D0 100%);
  z-index: -1;
  border-radius: 4px;
}
.h2-1{
  width: 35px;
  color: #ffffff;
  font-family: SourceHanSansCN;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.2px;
  text-align: center;
}
.h2-2{
  width: 34px;
  height: 26px;
  color: #ffffff;
  font-family: SourceHanSansCN;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  background: #384cdb;
  text-align: center;
}


/* banner */
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.banner {
  width: 100%;
  height: auto;
  /* min-height: 200px; */
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mySwiper1 .banner_b{
  position: absolute;
  width: 65.833%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-70%);
  -webkit-transform: translate(-50%,-70%);
  -moz-transform: translate(-50%,-70%);
  -ms-transform: translate(-50%,-70%);
  -o-transform: translate(-50%,-70%);
  height: auto;
}
.mySwiper1 .banner_b img{
  width: 100%;
  height: auto;
}
/* main1 */
.main1{
  /* background: #fff; */
  background: url(images/bg.png);
  background-size: cover;

}
.m1{
  display: flex;
  padding-top: 110px;
  padding-bottom: 160px;
  justify-content: space-between;
}
.ml1{
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 28.64%;
}
.title{
  font-family: Roboto;
  font-weight: bold;
  font-size: 36px;
  color: #090B18;
  line-height: 48px;
  text-transform:uppercase;
}
.more{
  width: 126px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(images/more_h.png);
  background-size: cover;
  position: relative;
  transition: all 0.3s ease;
}
.more:hover {
  transform: translateY(-3px);
}
.more:hover:before {
  animation-play-state: paused;
  opacity: 1;
}

.more:before{
  content: "";
  position: absolute;
  width: calc( 100% + 5px);
  height: calc( 100% + 8px);
  background: url(images/more_h_br.png);
  background-size: cover;
  left: -4px;
  top: -4px;
  /* 新增：组合动画 */
  animation: float-3d 3s ease-in-out infinite;
  transform-style: preserve-3d;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}
@keyframes float-3d {
  0%, 100% {
    transform: translateY(0) rotateX(10deg) rotateY(-10deg);
}
  50% {
    /* 中间状态：向下沉一点，轻微向左倾斜 */
    transform: translateY(-5px) rotateX(-5deg) rotateY(10deg);
  }
}
.more span{
  text-transform:uppercase;
  font-family: Roboto;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 26px;
}
.m2 .more{
  background: url(images/more.png);
  background-size: cover;
}
.m2  .more:before{
  background: url(images/more_br.png);
  background-size: cover;
}
.m2 .more span{
  background: linear-gradient(43deg, #1735d0 0%, #5f13b0 100%);
  
  -webkit-background-clip: text;
  background-clip: text;
  
  -webkit-text-fill-color: transparent;
  color: transparent; 
}
.mr1{
  width: 71.36%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.mr1 li{
  font-family: Roboto;
  font-weight: 400;
  font-size: 19px;
  color: #090B18;
  line-height: 36px;
  display: block;
  text-align: justify;
}
.video-img {
  float: right;       
  margin-left: 45px;  
  margin-bottom: 10px;
  width: auto;       
  max-width: 48%;     
  height: auto;
  margin-top: 5px;
  min-width: 250px;
}

/* main2 */
.main2{
  padding-top: 150px;
  padding-bottom: 74px;
  background: url(images/updates_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: -78px;
  /* min-height: 1627px; */
}
.main2:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 478px;
  background: url(images/bg1.png);
  background-size: cover;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}
.m2{
  display: flex;
  justify-content: space-between;
  margin-bottom: 85px;
}
.mr2{
  width: 71.36%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mr2 li{
  background: #FFFFFF;
  box-shadow: 0px 5px 40px 0px rgba(84,18,174,0.25);
  /* position: relative; */
}
/* .mr2 li:before{
  content: '';
  position: absolute;
  width: 0px;
  height: 7px;
  background: linear-gradient(45deg, #5F13B0 36%, #1735D0 100%);
  left: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
} */
/* .mr2 li:hover:before{
  width: 100%;
} */
.mr2 li:hover{
  box-shadow: 0px 0px 25px 0px rgba(255,255,255,0.6);
}
.mr2 li a{
  display: flex;
  padding: 37px 40px 38px 44px;
  gap:30px;
  position: relative;
}
.mr2 li a:before{
  content: "";
  position: absolute;
  width: calc( 100% - 20px);
  height: calc( 100% - 20px);
  background: url(images/hua0.png);
  background-size: 100% 100%;
  left: 10px;
  top: 10px;
}
.mr2 li a:hover:before{
  background: url(images/hua0_h.png);
  background-size: 100% 100%;
}
.mr2-1{
  width: calc(100% - 314px);
  position: relative;
}
.time{
  font-family: Roboto;
  font-weight: normal;
  font-size: 16px;
  color: #9EA6C5;
  line-height: 36px;
}
.mr2 li:hover .s1,
.mr2 li:hover .time{
  color: #6510AD;
  font-weight: 500;
}

.s1{
  margin-top: 8px;
  font-family: Roboto;
  font-weight: 500;
  font-size: 18px;
  color: #090B18;
  line-height: 24px;
}
.s2{
  margin-top: 8px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  color: #B9BED4;
  line-height: 24px;
}
.mr2 li:hover .s2{
  color: #74798F;
}
.pic1{
  width: 284px;
  height: 213px;
  overflow: hidden;
}
.pic1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.mr2 li:hover .pic1 img{
  transform: scale(1.1);
}
.more2{
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 26px;
  height: 17px;
  background: url(images/arrpw.png) no-repeat;;
  background-size: cover;
}
.mr2 li:hover .more2{
  background: url(images/arrow_hover.png) no-repeat;;
  background-size: cover;
}


.m3{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.mr3{
  width: 71.36%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.mr3 li{
  width: auto;
  min-width: 268px;
  height: 166px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0px 0px 5px 0px rgba(174,166,207,0.35);
  padding: 21px;
  position: relative;
}
.mr3 li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* .mr3 li:nth-child(3){
  width: 381px;
}
.mr3 li:nth-child(4){
  width: 363px;
}
.mr3 li:nth-child(5){
  width: 594px;
} */
.mr3 li:hover {
  box-shadow: 0px 0px 5px 0px rgba(102,78,200,0.66);
  border: 1px solid;
  border-image: linear-gradient(37deg, #5F13B0, #1735D0) 10 10;
  background: rgba(255,255,255,1);
}
.mr3 li:hover:before{
  position: absolute;
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 10px);
  background: url(images/li_h.png);
  background-size: 100% 100%;
  left: -8px;
  top: -5px;
  /* border: 1px solid;
  border-image: linear-gradient(37deg, #5F13B0, #1735D0) 10 10;
  background: transparent; */
  z-index: 10;
}
.mr3 li:nth-child(2):hover:before,
.mr3 li:nth-child(5):hover:before{
  background: url(images/li_h2.png);
  background-size: 100% 100%;
}
.mr3 li:nth-child(3):hover:before,
.mr3 li:nth-child(4):hover:before{
  background: url(images/li_h1.png);
  background-size: 100% 100%;
}
.mr3 li a img{
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* footer */
footer{
  background: url(images/bg3.png) center no-repeat;
  background-size: cover;
  padding: 110px 0 35px 0;
}
.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.fm{
  color: #fff;
}
.s3{
  text-transform: uppercase;
  font-family: Roboto;
  font-weight: bold;
  font-size: 26px;
  color: #FFFFFF;
  line-height: 26px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.s3:before { 
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: #cdcfd9;
}
.fm li{
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 34px;
}
.fm li:last-child {
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 22px;
  margin-top: 10px;
}






/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/

 .l-banner {height: auto; text-align: center;position: relative;}
 .l-banner img {vertical-align: top;height: auto; object-position: center;width: 100%;object-fit: cover;}
 
 /**主体列表页开始**/

 #l-container { background:#fff; }
 #l-container .inner {padding: 20px 0px;}
 #d-container {  background: #ffffff; box-sizing: border-box; }
 #d-container .inner { padding: 30px 40px 40px;box-sizing: border-box; box-shadow: 0 0 20px rgba(0,0,0,.05);}
 /*主栏目名称*/
 .col_menu { width: 250px; float: left; margin-right: -250px; position: relative; 
   /* margin-top:-85px;  */
   box-sizing: border-box; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);}
 .col_menu .l-qh { margin-bottom: 10px; }
 .col_menu .col_menu_head { background: linear-gradient(45deg, #5F13B0 36%, #1735D0 100%); } /**位置栏目背景**/
 .col_menu .col_menu_head h3.col_name { height:80px; font-size: 24px; font-weight:bold; color: #fff; } /**位置栏目字体**/
 .col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; padding: 0px 15px; padding-left:27px; width:100%; text-align:left;} /**栏目名称图标**/
 .col_menu .col_menu_con { 
   /* border-left: 12px solid #6510AD;  */
   background:#f8f8f8 }
 
 /*栏目列表*/
 .col_list { min-height:30px; }
 .col_list .wp_listcolumn { border-top: 0px solid #2867a0; border-bottom: 0px solid #fff; }
 .col_list .wp_listcolumn .wp_column a { color: #333; display: block; font-size: 15px; font-weight: normal; background: none; border-top: 0px solid #fff; border-bottom: 0px solid #f6eaea; }
 .col_list .wp_listcolumn .wp_column a .column-name { padding: 5px 0px 5px 15px; line-height: 32px; }
 .col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected { color: #6510AD; background: #eee; }
 .col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #6510AD; }
 .col_list .wp_listcolumn .wp_subcolumn .wp_column a { color: #454545; background: none; border-top: 1px solid #fff; border-bottom: 1px solid #bbb; }
 .col_list .wp_listcolumn .wp_column.parent > a .column-name { font-weight: bold; color: #6510AD; }
 /*二级子栏目**/
 .col_list .wp_listcolumn .wp_column .sub_list a { color: #333; border-top: 1px solid #eee; margin-top: -1px; }
 .col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 28px; padding: 5px 10px 5px 44px; cursor: pointer; }
 .col_list .wp_listcolumn .sub_list a:hover, .col_list .wp_listcolumn .wp_column a.selected { font-weight: bold; font-weight: bold; color: #6510AD; }
 /*三级子栏目**/
 .col_list .wp_listcolumn .wp_column .sub_list .sub_list a { }
 .col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 60px; cursor: pointer; }
 .col_list .wp_listcolumn .sub_list .sub_list a :hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: bold; color: #6510AD; }
 
 .col_list .wp_listcolumn { border: 0px; }
 .col_list .wp_listcolumn .wp_column a { background-image: none; display: block; box-sizing: border-box; color: #333; font-size: 16px; font-weight: 600; text-align: center; position: relative; }
 .col_list .wp_listcolumn .wp_column a .column-name { display:block; padding: 12px 15px;padding-left: 40px;  line-height: 30px; text-align:left;}
 .col_list .wp_listcolumn .wp_column a.col_item_link i { position: absolute; content: ""; right: 48px; top: 50%; margin-top: -7px; width: 8px; height: 14px; display: none; }
 .col_list .wp_listcolumn .wp_column a.col_item_link:hover i, .col_list .wp_listcolumn .wp_column a.col_item_link.selected i, .col_list .wp_listcolumn .wp_column a.col_item_link.parent i { display: block; }
 .col_list .wp_listcolumn .sub_list .wp_column a { color: #454545; background: none; border-bottom: 1px solid #bbb; }
 /*二级子栏目**/
 .col_list .wp_listcolumn .sub_list a { font-weight: normal; font-size: 16px; color: #333; }
 .col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 0; cursor: pointer; }
 .col_list .wp_listcolumn .sub_list a:hover { background: #f6f6f6; }
 .col_list .wp_listcolumn .sub_list a.selected { background: #f6f6f6; font-weight: 600; }
 .col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #1735d0; }
 /*三级子栏目**/
 .col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none; }
 .col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 20px; cursor: pointer; font-size: 14px; position: relative; }
 .col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: #bbb; }
 .col_list .wp_listcolumn .sub_list .sub_list a:hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: 400; color: #237b36; }
 .col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before, .col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before { background: #f6f6f6; }
 
 /**栏目新闻**/
 .col_news { width: 100%; min-height: 400px; float: right; } /**栏目新闻**/
 .col_news .col_news_box { margin-left: 280px;min-height: 350px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);padding:15px;}
 .colum-box {}
 
 .col_news_head { border-bottom: 1px solid #dbdbdb; }
 .col_metas .col_title { display: inline-block; float: left; height: 48px; line-height: 48px; } /**当前栏目**/
 .col_metas .col_title h2 { display: inline-block; font-size: 20px; font-weight: 600; color: #6510AD; }
 .col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 46px; line-height: 46px; color: #666; font-size:12px; } /**当前位置**/
 .col_metas .col_path a { color: #2f2f2f; }
 .col_news_con { padding: 15px 0px 10px 0px; margin: 0 0px; }
 .col_news_list { margin-top:7px;}
 .col_news_list .wp_article_list .list_item {} /**栏目新闻列表**/
 .col_news_list .wp_article_list .list_item .Article_Index { }  /**栏目新闻图标序号**/
 .col_news_list .wp_entry,.col_news_list .wp_entry p { line-height:1.75; font-size:14px; color:#333;}
 .col_news_list .wp_entry p { margin-bottom:10px;}
 .col_news_list .wp_entry table{ margin-bottom:4px;}
 .col_news_list .wp_entry img { max-width:767px; _width:expression(this.width > 767 ? "767px" : this.width); } /**列表页文章图片大小限制**/
 .wp_paging { font-size: 14px; margin-top: 30px;}
 #wp_pager .pages {
   display: flex;
   min-height: auto;
   margin: 40px 0 20px;
   justify-content: center;
   align-items: center;
 }
 #wp_pager .pages li a {
   display: inline-block;
   width: 40px;
   height: 40px;
   line-height: 36px;
   overflow: hidden;
   padding: 0;
   margin: 0 4px;
   text-align: center;
   background-color: #f1f1f1;
   color: #333;
   border: 2px solid transparent;
   border-radius: 0;
   -webkit-transition: .3s all ease;
   -ms-transition: .3s all ease;
   transition: .3s all ease;
 }
 #wp_pager .pages li a.pgCurrent {
   font-weight: bold;
   background-color: #fff;
   color: #6510AD;
   border: 2px solid #6510AD;
 }
 #wp_pager .pages li a.pgNext {
   width: auto;
   padding: 0px 8px;
 }
 /**文章页**/
 .infobox {width:auto; margin:0 auto; }
 .article {padding-top:10px;}
 .article h1.arti_title {line-height: 48px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #6510AD;} /**文章标题**/
 .article h2.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center;color: #1B1B1B;} /**文章副标题**/
 .article .arti_metas { padding:10px; text-align:center;border-top:1px solid #ececec;}
 .article .arti_metas span { margin:0 5px; font-size:12px; color:#787878;}/**文章其他属性**/
 .article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} /**文章内容**/
 .article .entry .read,.article .entry .read p { line-height:1.75; font-size:14px; color:#333;}  /**阅读字体**/
 .article .entry .read p { margin-bottom:10px;}
 .article .entry .read img {margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   /**文章阅读部分图片大小限制**/
 .article .entry .read table{margin:0 auto; border:none!important;}
 
 .col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px;  position:relative} /**标题图标**/
 .col_news_list .news_list li.news .news_title { width:100% ;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;font-weight: bold;}/*标题*/
 .col_news_list .news_list li.news .news_title img {vertical-align: middle;}
 .col_news_list .news_list li.news .news_meta { padding-left: 20px;position:relative;line-height: 20px;  color: #777;font-family: "Arial";font-style: italic;font-size: 14px;display: flex;gap: 10px;justify-content: space-between;align-items: center;}/*属性*/
 .col_news_list .news_list li.news:hover .news_title{ color: #6510AD; transform: translateX(15px) ;  }
 .line11{
   width: calc(100% - 110px);
   height: 1px;
   /* background-color: #6510AD; */
   display: block;
   position: relative;
   border-top: 1px dashed #777;
   transition: all 0.7s ease-in-out;
 }
 .line11:before{
   content: "";
   position: absolute;
   left: 0;
   top: -1px;
   width: 0px;
   height: 1px;
   background: linear-gradient(45deg, #5F13B0 36%, #1735D0 100%);
   transition: all 0.7s ease-in-out;
 }
 .col_news_list .news_list li.news:hover .line11:before{
   width: 100%;
 }
 .col_news_list .news_list li.news .news_meta:before{
   content: "";
   position: absolute;
   top: 4px;
   left: 0;
   width: 14px;
   height: 14px;
   background:url(images/time.png);
   background-size: cover;
 }
 .col_news_list .news_list li.news:hover .news_meta{
   color: #6510AD;
 }
 .col_news_list .news_list li.news_news{
   padding-left: 20px;
   position: relative;
 }

