@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 {
  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;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}

.headertop {
  background: url(images/bj_top.jpg);
  padding-top: 30px;
  padding-bottom: 30px;
}

.headertop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* 导航 */
.head-nav {
  height: 60px;
  background: rgba(68, 111, 209, 1);
}

.nav .wp-menu {
  height: 60px;
  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: 60px;
  text-align: center;
}

.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 60px;
  line-height: 55px;
  padding: 0 10px;
  position: relative;
}

.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all 0.5s;
}
.nav .wp-menu .menu-item.hover {
 
}
.nav .wp-menu .menu-item.hover a.menu-link {
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: rgba(30, 76, 181, 1);
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
  background: none;
}

.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background: rgba(30, 76, 181, 1);
  display: block;
}

.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}

.search-panel {
  float: right;
  position: relative;
  z-index: 20;
  display: inline-block;
  line-height: 25px;
}

.search-window {
  border: 0px;
  overflow: hidden;
  min-height: 32px;
}

/**搜索**/
.wp-search {
  width: 380px;
  height: 46px;
  background: #fff;
  border: 1px solid #4a74c9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.wp-search form {
  width: 100%;
  display: flex;
}

.wp-search .search-input {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
}

.wp-search .search-input input.search-title {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #666;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px 0 0 6px;
}

.wp-search .search-input input.search-title::placeholder {
  color: #b3b3b3;
  font-size: 16px;
}

.wp-search .search-btn {
  width: 50px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3562c7;
  position: relative;
  right: 0;
  top: 2px;
  margin-left: -1px;
}

.wp-search .search-btn input.search-submit {
  width: 50px;
  height: 40px;
  border-radius: 4px;
  border: none;
  outline: none;
  background: #3562c7 url(images/btn_search.png) no-repeat center center;
  background-size: 22px 22px;
  cursor: pointer;
  transition: background 0.2s;
}

.wp-search .search-btn input.search-submit:hover {
  background-color: #3657a6;
}

.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}

.searchbox {
  width: 360px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
}

.Headerbox {
  position: relative;
}

.mySwiper1 {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner {
  width: 100%;
  height: 500px;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 139px;
  background: url(images/banner_mask.png) no-repeat;
  background-size: 100% 100%;
  bottom: -40px;
  z-index: 999;
}

.mySwiper1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 顶部快捷链接 */
.Linktop {
background: #f6f6f6;
  .Linktopbox {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 4px;
    z-index: 9999;
    position: relative;

    .title {
      font-weight: 400;
      font-size: 18px;
      color: #333333;
      line-height: 36px;
    }

    box-shadow: 0 12px 32px 0 rgba(116, 154, 255, 0.3);
    border-radius: 12px;

    li {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateY(0);

      &:hover {
        transform: translateY(-8px) scale(1.05);

        a {
          .title {
            color: #1e4cb5;
            font-weight: 500;
          }
        }

        img {
        }
      }

      a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;

        &:hover {
          background: rgba(30, 76, 181, 0.05);
          box-shadow: 0 8px 25px rgba(30, 76, 181, 0.15);
        }

        img {
          transition: all 0.3s ease;
          margin-bottom: 10px;
        }

        .title {
          transition: all 0.3s ease;
        }
      }
    }
  }
}

.Linktopbox::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 190px;
  height: 150px;
  background: url(images/logo_entrance.png) no-repeat right bottom;
  background-size: contain;

  pointer-events: none;
  z-index: 1;
}

.custom-title {
  position: relative;
  height: 70px;
  width: 40%;
}

.custom-title-bg {
  position: absolute;
  left: 0;
  top: 14px;
  font-family: Arial;
  font-weight: 400;
  font-size: 60px;
  color: #d7e0f8;
  line-height: 36px;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.custom-title-main {
  position: absolute;
  left: 0;
  top: 32px;
  font-family: Microsoft YaHei;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 36px;
  z-index: 2;
}

.about {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #f6f6f6;
}

.More {
  background: rgba(243, 243, 243, 0);
  border-radius: 16px;
  border: 1px solid #0d5ac1;
  padding: 0px 15px;

  a {
    font-weight: 400;
    font-size: 16px;
    color: #1e4cb5;
    line-height: 36px;
  }
}

.More:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.More:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.More:hover::before {
  left: 100%;
}

.More:hover a {
  color: #fff !important;
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content {
  margin-top: 50px;

  .content-boxleft {
    width: 55%;

    .content-boxleft-text {
      font-weight: 400;
      font-size: 18px;
      color: #000000;
      line-height: 32px;
    }

    .content-boxleft-text2 {
      .cpu {
        width: 100px;
        height: 56px;
        background: linear-gradient(45deg, #e8f0ff, #f4f8ff, #e8f0ff);
        border-radius: 4px;
        border-image: linear-gradient(45deg, #c4d5ff, #e0eaff);
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: 20px;
        color: #1e4cb5;
        line-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }
  }
}

/* 平台参数表格样式 */
.platform-table {
  width: 100%;
 
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  margin-top: 24px;
  margin-bottom: 24px;
}

.platform-row {
  display: flex;
  align-items: stretch;
  padding-bottom: 15px;
  border-bottom: 1px solid  #C5C5C5;
  padding-top: 15px;
  min-height: 90px;
}

.platform-row:last-child {
  border-bottom: none;
}

.platform-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  min-width: 120px;
  box-sizing: border-box;
  text-align: center;
}

.platform-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #1e4cb5;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 56px;
  background: linear-gradient(45deg, #e8f0ff, #f4f8ff, #e8f0ff);
  border-radius: 4px;
  border-image: linear-gradient(45deg, #c4d5ff, #e0eaff) 2 2;
  box-shadow: 0 0 0 1px #e0eaff inset;
}

.platform-value {
  min-width: 100px;
}

.platform-num {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  line-height: 32px;
}

.platform-unit {
  font-size: 24px;
  color: #333;
  margin-left: 2px;
}

.platform-desc {
  font-size: 16px;
  color: #333333;
  margin-top: 2px;
  line-height: 32px;
}

@media (max-width: 900px) {
  .platform-table {
    font-size: 12px;
  }

  .platform-row {
    min-height: 60px;
  }

  .platform-title,
  .platform-value {
    min-width: 60px;
    font-size: 16px;
  }

  .platform-num {
    font-size: 18px;
  }

  .platform-desc {
    font-size: 12px;
  }
}

.content-boxright {
  width: 40%;

  img {
    width: 100%;
    height: 342px;
    object-fit:   contain;
  }
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(images/bj_notice.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.noticetitle {
  border-bottom: 1px solid #d7e0f8;
  padding-bottom: 20px;
}

/* 通知公告样式 */
.notice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  gap: 24px;
  width: 100%;
}

.notice-item {
  width: 48%;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 0 0 0 0;
  min-height: 86px;
  margin-bottom: 0;
  transition: box-shadow 0.2s;
  padding-bottom: 15px;
  padding-right: 15px;

  a {
    display: flex;
    align-items: center;
  }
}

.notice-date {
  width: 144px;
  height: 86px;
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
}

.notice-item .notice-date {
  background: url(images/btn_notice_date.png) no-repeat;
  color: #2350b2;
}

.notice-item:hover .notice-date {
  background: url(images/btn_notice_date_h.png) no-repeat;
  color: #fff;

  .notice-date-day {
    color: #fff;
    transition: all 0.5s;
  }

  .notice-date-year {
    color: #fff;
    transition: all 0.5s;
  }

  .notice-date-split {
    color: #fff;
    transition: all 0.5s;
  }

  .notice-date-month {
    color: #fff;
    transition: all 0.5s;
  }
}

.notice-date-month {
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #1e4cb5;

  margin-right: 10px;
}

.notice-date-split {
  font-size: 35px;
  font-weight: 400;
  margin: 0 0 0 0;
  line-height: 1;
}

.notice-date-day {
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #1e4cb5;

  margin-right: 10px;
}

.notice-date-year {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 36px;
}

.notice-content {
  width:80%;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 28px;
}

.notice-cursor {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/icons.png") no-repeat -120px -24px;
  margin-left: 8px;
  vertical-align: middle;
}
 
.user-achievement {
  background: url(images/bj_outcomes.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 用户成果卡片样式 */
.Outcomeslist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0;
  margin-top: 30px;
}

.Outcomeslist li {
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  transition: background 0.3s;
  position: relative;
}

.Outcomeslist li a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  transition: background 0.3s;
}

.Outcomeslist .outcome-img {
  width: 192px;
  height: 108px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e6eefd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Outcomeslist .outcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Outcomeslist .outcome-content {
  margin-left: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Outcomeslist .outcome-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;

  margin-bottom: 8px;
  transition: background 0.3s, color 0.3s;
}

.Outcomeslist .outcome-desc {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 8px;
  transition: background 0.3s, color 0.3s;
}

.Outcomeslist .outcome-date {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0 0 4px 4px;
  transition: background 0.3s, color 0.3s;
}

.Outcomeslist .outcome-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Outcomeslist li:hover {
  background: #2350b2 !important;
}

.Outcomeslist li:hover .outcome-title,
.Outcomeslist li:hover .outcome-desc,
.Outcomeslist li:hover .outcome-date {
  color: #fff !important;
  background: #2350b2 !important;
}

.footer {
  background: url(images/bj_bottom.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 60px;

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
  }
}

.footer-info-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 25px 0;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.footer-info-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .footer-info-bar {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .footer-info-item {
    font-size: 14px;
  }

  .footer-info-item img {
    width: 28px;
    height: 28px;
  }
}

/* ... existing code ... */
.banner-swiper-pagination {
  position: absolute;
  left: 80%;
  bottom: 10px;
  transform: translateX(-50%);
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  z-index: 9999;
  background: none;
  box-shadow: none;
  user-select: none;
}

.banner-swiper-pagination .swiper-pagination-current {
  font-family: Arial;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  line-height: 40px;
}

.banner-swiper-pagination .swiper-pagination-total {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 40px;
}

.banner-swiper-pagination {
  pointer-events: none;
}

.banner-swiper-btn {
  position: absolute;
  bottom: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
 
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.banner-swiper-btn:hover {
  box-shadow: 0 4px 16px rgba(30, 76, 181, 0.18);
  opacity: 1;
}
.banner-swiper-btn-next {
  right: 24px;
}
.banner-swiper-btn-prev {
  right: 74px;
}
.banner-swiper-btn::after {
  font-size: 20px;
  color: #2350b2;
  font-weight: bold;
}

/*
 * Column Style
 */
.column-banner {
  background: url(images/top_banner01.jpg);
}
.column-img {
  max-width: 1920px;
  width: 100%;
  height: 380px;
  margin: 0 auto;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.column {
  min-height: calc(100vh - 500px);
}
.column-sidebar,
.column-content {
  position: relative;
  margin-top: 40px;
  background: #fff;
}
.column-sidebar {
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.column-content {
  min-height: 500px;
  margin-bottom: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.column-content .wp_paging {
  padding: 12px 0;
  overflow: hidden;
  float: none;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.column-name {
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #1E4CB5;;
  border-left: 8px solid #1E4CB5;;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.column-name .navbar-toggle {
  margin-top: -10px;
  margin-right: 0;
  color: #333;
}

.column-collapse {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.col-list {
  background: #fff;
}
.col-list > ul {
  position: relative;
  padding: 0;
  margin-top: 12px;
  font-size: 16px;
}
.col-list > ul > li > a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-bottom: 1px dashed #ccc;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-list > ul > li > a:hover {
  color: #333;
  background-color: #ededed;
}
.col-list > ul > li:last-child a {
  border-bottom: none;
}
.col-list > ul > li.selected > a {
  background: #eee;
  color: #333;
  font-weight: 600;
}
.col-sublist > ul > li > a {
  display: block;
  color: #666;
  display: block;
  padding: 10px 28px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-sublist > ul > li span {
  position: relative;
  top: 3px;
  font-size: 12px;
  float: right;
}
.col-sublist > ul > li > a:hover {
  background-color: #1E4CB5;;
  color: #fff;
}

.col-breadcrumbs {
  float: right;
  margin-top: 30px;
  margin-right: 10px;
}
.wp_listalbumn {
  margin-top: 20px;
}
.wp_single.wp_column_article {
  padding: 12px 30px;
}

/* Column Right */
.column-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column-breadcrumb {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.column-breadcrumb a {
  color: #999;
}
.column-breadcrumb a:hover {
  color: #333;
}
.column-breadcrumb i {
  margin-right: 12px;
}
.column-info-list {
  padding-top: 20px;
}
.column-info-list li {
  padding: 10px 20px;
}
.column-info-list li p {
  margin: 0;
}
.column-info-list li:last-child {
  border-bottom: none;
}

.column-date-list {
  padding: 30px;
}
.column-date-list .date-item {
  margin-bottom: 28px;
}

.column-img-list,
.column-photo-list {
  padding: 15px 0px;
}
.column-img-item,
.column-photo-item {
  width: 100%;
  overflow: hidden;
  padding: 5px 0 25px;
}
.column-img-item .photo {
  width: 100%;
  padding-bottom: 120%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #999;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.column-photo-item .photo {
  width: 100%;
  padding-bottom: 60%;
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
.column-img-item .title {
  position: relative;
  width: 92%;
  margin: 0 auto;
  padding: 12px 15px;
  margin-top: -60px;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-photo-item .title {
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid #333;
}
.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}
.column-img-item:hover .title {
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

/*
 * Post
 */
.post {
  background-color: #fff;
}
.post-breadcrumb {
  margin-top: 30px;
  padding: 12px 0;
  color: #333;
}
.post-breadcrumb a {
  color: #333;
  opacity: 0.8;
}
.post-breadcrumb a:hover {
  color: #333;
  opacity: 1;
}
.post-content {
  width: 100%;
  padding: 0;
  margin: 40px 0;
  background-color: #fff;
}
.post-title {
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333;
}
.post-attr {
  margin-bottom: 20px;
  padding: 0 20px 20px;
  border-bottom: 1px solid #efefef;
  text-align: center;
  color: #666;
}
.post-attr > span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f7f7f7;
  border-radius: 8px;
  cursor: pointer;
}
.read-content {
  width: 100%;
  min-height: 400px;
  line-height: 2;
  margin: 0 auto;
  padding: 10px 20px 40px;
}
.read-content img {
  margin: 10px 0;
  max-width: 100% !important;
  height: auto;
}

.breadcrumb {
  color: #fff;
  text-align: left;
  background: #5fcbd2;
  border-radius: 0;
}
.breadcrumb .possplit {
  display: none;
}
.breadcrumb a {
  margin: 0 5px;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.breadcrumb a:hover {
  opacity: 1;
}
.wp_articlecontent > table {
  width: 100% !important;
}

.wp_listcolumn_searchbartree {
  margin: 10px 0;
}
.wp_listcolumn_searchbartree .wp_listcolumn_treeKeyword {
  width: 100%;
  height: 36px;
}
.wp_listcolumn_searchbttree {
  position: relative;
  z-index: 1;
  float: right;
  margin-top: -29px;
  margin-right: 4px;
}
.ztree {
  background-color: #f7f7f7;
}
.ztree * {
  font-size: 14px;
}
.ztree li {
  padding: 10px 0;
}
.banner2 {
  height: 500px;
  img {
    width: 100%;
    height: 100%;
  }
}

/* 文章列表样式 */
.news-date-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.news-date-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-date-item {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.news-date-item:last-child {
  border-bottom: none;
}

.news-date-item:hover {
  background: linear-gradient(135deg, rgba(30, 76, 181, 0.02) 0%, rgba(30, 76, 181, 0.05) 100%);
  transform: translateX(5px);
}

.news-date-item a {
  display: flex;
  align-items: center;
  padding: 24px 30px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.news-date-item a:hover {
  text-decoration: none;
  color: rgba(30, 76, 181, 1);
}

.news-date-item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 12px 8px;
  background: linear-gradient(135deg, rgba(30, 76, 181, 1) 0%, rgba(30, 76, 181, 0.8) 100%);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(30, 76, 181, 0.3);
  transition: all 0.3s ease;
}

.news-date-item:hover .date {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(30, 76, 181, 0.4);
}

.news-date-item .date span {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2px;
}

.news-date-item .date b {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.9;
  line-height: 1;
}

.news-date-item > div:last-child {
  flex: 1;
  margin-left: 20px;
  overflow: hidden;
}

.news-date-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-date-item:hover h3 {
  color: rgba(30, 76, 181, 1);
}

.news-date-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.news-date-item:hover p {
  opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .news-date-item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .news-date-item .date {
    align-self: flex-start;
    margin-bottom: 15px;
    min-width: 60px;
    padding: 8px 6px;
  }
  
  .news-date-item .date span {
    font-size: 20px;
  }
  
  .news-date-item .date b {
    font-size: 11px;
  }
  
  .news-date-item > div:last-child {
    margin-left: 0;
    width: 100%;
  }
  
  .news-date-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .news-date-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .news-date-list {
    border-radius: 6px;
    margin: 0 10px;
  }
  
  .news-date-item a {
    padding: 16px;
  }
  
  .news-date-item .date {
    min-width: 50px;
    padding: 6px 4px;
  }
  
  .news-date-item .date span {
    font-size: 18px;
  }
  
  .news-date-item .date b {
    font-size: 10px;
  }
  
  .news-date-item h3 {
    font-size: 15px;
  }
  
  .news-date-item p {
    font-size: 12px;
  }
}

/* 空状态样式 */
.news-date-list:empty::before {
  content: "暂无文章";
  display: block;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

/* 加载状态样式 */
.news-date-list.loading {
  position: relative;
  min-height: 200px;
}

.news-date-list.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid rgba(30, 76, 181, 1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.swiper-button-next:after,   .swiper-button-prev:after{
  display: none;
}

 
.menu-item {
    position: relative;
    list-style: none;
}
 
/* 倾斜蓝色背景 */
.menu-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) skew(-15deg);
    width: 110%;
    height: 100%;
   
    z-index: 0;
    transition: background 0.3s;
    opacity: 0.95;
}

/* hover 效果 */
.menu-item:hover::before,
.menu-item.active::before {
    background:  rgba(26, 69, 167, 1);
}

.menu-item:hover .menu-link,
.menu-item.active .menu-link {
    color: #fff;
    font-size: 36px;
}

 
.menu-item:hover::after,
.menu-item.active::after {
    opacity: 1;
}

.column-banner {
  background: url(images/banner02.jpg);
}
.column-img {
  max-width: 1920px;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


