@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 {
  background: #fff;
}

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;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000;
  position: relative;
}

p {
  line-height: 1.75;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
}

.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.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s 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;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1440px;
  margin: 0 auto;
}

/* 导航 */
/*默认主导航样式*/
.nav {
  margin-top: 30px;
  height: 90px;
  background: #ffffff;
  box-shadow: 0px 15px 35px 0px rgba(127, 39, 183, 0.25);
  opacity: 0.95;
}

/*导航样式：后台绑定时也可以定义配置*/
.nav .wp-menu {
  position: relative;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  justify-content: space-around;
  height: 90px;
  align-items: center;
}

.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  text-align: center;
}

.nav .wp-menu .menu-item:last-child {
  margin-right: 0;
}

.nav .wp-menu .menu-item.i1 {
  background: none;
}

.nav .wp-menu .menu-item a.menu-link {
  font-weight: bold;
  font-size: 22px;
  color: #8d20e1;
  line-height: 28px;
  background: linear-gradient(
    0deg,
    #8f21d2 0%,
    #694ff1 54.6630859375%,
    #694ff1 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 64px;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(31, 135, 154, 0.15);
  border-radius: 0px 0px 8px 8px;

  min-width: 100%;
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}

.nav .sub-menu .sub-item a {
  display: block;
  font-weight: 400;

  line-height: 50px;
  padding: 0 10px;
  text-align: center;
  font-family: Source Han Sans CN;
  font-size: 14px;
  color: #8d20e1;
  background: #ffffff;
}

.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background: rgba(143, 33, 210, 0.6);
  display: block;
}

.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: #fff;
}

.nav .sub-menu .sub-item:hover {
  background: rgba(31, 135, 154, 0.15);
}

/* header */
.banner {
  position: relative;
}

.header {
  position: absolute;
  z-index: 999;
  padding-top: 39px;
  min-width: 1700px;
  left: 50%;
  transform: translate(-50%);
}

.logobox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  .navi {
    .navi-list {
      display: flex;
      align-items: center;

      li {
        margin-left: 20px;

        a {
          padding: 8px 19px;
          background: #8309f1;
          border-radius: 23px;
          border: 1px solid #ffffff;
          font-size: 16px;
          color: #ffffff;
          line-height: 25px;
          text-shadow: 0px 2px 5px rgba(48, 37, 13, 0.43);
          display: flex;
          align-items: center;

          img {
            margin-left: 10px;
          }
        }

        a:hover {
          background: #ffc600;
          box-shadow: 0px 5px 5px 0px rgba(220, 196, 250, 0.5);
          border-radius: 21px;
          color: #ffffff;
        }
      }
    }
  }
}

.section-introduce {
  padding-bottom: 80px;
}

.containerbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.container1 {
  width: 48%;
  padding-top: 68px;

  .title {
    position: relative;

    .title1 {
      font-weight: bold;
      font-size: 36px;
      color: #6e2098;
      line-height: 30px;
      margin-bottom: 15px;
    }

    .title2 {
      font-family: Arial;
      font-weight: bold;
      font-size: 26px;
      color: #8d20e1;
      line-height: 30px;
      background: linear-gradient(
        0deg,
        #8f21d2 0%,
        #694ff1 54.6630859375%,
        #694ff1 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .content {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 50px;
    margin-top: 48px;
  }

  .title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #8f21d2, #ffffff);
    opacity: 0.2;
    top: 15px;
  }
}

.container2 {
  width: 41%;
  padding-top: 0;

  .content {
    margin-top: 28px;
  }

  .con2box {
    margin-bottom: 45px;
  }
}

.DSdongtai {
  .DSdongtaiTitle {
    width: 74%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  padding-top: 90px;
  padding-bottom: 90px;
  background: url(images/Competition_bg.png) left no-repeat;

  .Title2 {
    display: flex;
    align-items: center;

    div {
      margin-right: 15px;
    }

    .title1 {
      font-weight: bold;
      font-size: 36px;
      color: #ffffff;
      line-height: 36px;
    }

    .title2 {
      font-family: Arial;
      font-weight: bold;
      font-size: 32px;
      color: #ffffff;
      line-height: 36px;
    }
  }

  .more {
    a {
      font-family: Arial;
      font-weight: bold;
      font-size: 18px;
      color: #ffffff;
      line-height: 36px;
      display: flex;
      align-items: center;

      img {
        margin-left: 15px;
        width: 30px;
      }
    }
  }

  .news {
    width: 90%;

    li {
      transition: all 0.5s ease;
      a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .time {
          width: 15%;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;

          .timeday {
            font-weight: 400;
            font-size: 32px;
            color: #ffffff;
            line-height: 36px;
          }

          .timeyear {
            font-weight: 400;
            font-size: 16px;
            color: #ffffff;
            line-height: 36px;
          }
        }

        .time::after {
          position: absolute;
          content: "";
          width: 64px;
          height: 8px;
          background: url(images/Competition_timeline.png);
          bottom: 0;
        }

        .content {
          width: 85%;
          padding: 22px;
          border-bottom: 1px dashed #ffffff;
          transition: all 0.5s ease;

          .title {
            font-weight: bold;
            font-size: 18px;
            color: #ffffff;
            line-height: 50px;
            transition: all 0.5s ease;
          }

          .contentall {
            font-weight: 400;
            font-size: 16px;
            color: #ffffff;
            line-height: 30px;
            transition: all 0.5s ease;
          }
        }
      }

      .news-image {
        width: 42%;
        height: 200px;
        border-radius: 8px;
        transition: opacity 0.3s ease;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }
    li:hover {
      .content {
        background: #ffffff;
        box-shadow: 0px 5px 20px 0px rgba(127, 39, 183, 0.65);
        border: 1px solid #a228db;

        .title {
          font-size: 18px;
          color: #9d45cc;
          line-height: 50px;
          text-decoration-line: underline;
        }
        .contentall {
          font-weight: 400;
          font-size: 16px;
          color: #555555;
          line-height: 30px;
        }
      }
    }
  }
}

.news-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 70px;
  position: relative;
}

.news-wrapper {
  flex: 1;
  position: relative;
  height: 580px;
  overflow: hidden;
}

.news {
  position: relative;
  transition: transform 0.3s ease;
}

.news-image-display {
  width: 45%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transform: scale(1.05);
}

.image-wrapper img.active {
  opacity: 1;
  transform: scale(1);
}

.news-controls {
  position: absolute;
  right: 36%;
  top: 95%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;

  .news-prev {
    background: url(images/Competition_btn_up_nor.png);
    width: 60px;
    height: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .news-next {
    background: url(images/Competition_btn_down_nor.png);
    width: 60px;
    height: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .news-prev:hover {
    background: url(images/Competition_btn_up_per.png);
  }

  .news-next:hover {
    background: url(images/Competition_btn_down_per.png);
  }
}

.news-image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.media-news {
  padding-top: 100px;
  padding-bottom: 60px;
  .Title2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    div {
      margin-right: 15px;
    }
    .title1 {
      font-weight: bold;
      font-size: 36px;
      color: #6e2098;
      line-height: 36px;
    }
    .title2 {
      font-family: Arial;
      font-weight: bold;
      font-size: 32px;
      color: #6e2098;
      line-height: 36px;
    }
    .more {
      position: absolute;
      right: 0;
      a {
        font-family: Arial;
        font-weight: bold;
        font-size: 18px;
        color: #919191;
        line-height: 36px;
        display: flex;
        align-items: center;
        img {
          margin-left: 15px;
        }
      }
    }
  }
}
.media_list {
  margin-top: 73px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  .media_item {
    width: 30%;
    border: 1px solid #611589;
    transition: all 0.3s ease;

    .media_img {
      width: 100%;
      height: 339px;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
      }
    }

    .media_info {
      padding: 30px 20px;
    }
    .media_title {
      font-weight: bold;
      font-size: 18px;
      color: #333333;
      line-height: 30px;
    }
    .media_text {
      font-weight: 400;
      font-size: 16px;
      color: #999999;
      line-height: 34px;
    }
  }

  .media_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(97, 21, 137, 0.3);

    .media_img img {
      transform: scale(1.05);
    }

    .media_title {
      color: #611589;
    }
  }

  .media_item2 {
    height: 338px;
    position: relative;
    margin-bottom: 42px;
    overflow: hidden;
    transition: all 0.4s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(97, 21, 137, 0);
      transition: all 0.4s ease;
      z-index: 1;
    }

    .media_img {
      width: 100%;
      height: 100%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
      }
    }

    .media_info {
      padding: 15px;
      width: 100%;
      position: absolute;
      bottom: 0;
      z-index: 9999;
      background: linear-gradient(
        to top,
        rgba(97, 21, 137, 0.8),
        rgba(255, 255, 255, 0)
      );
      transition: all 0.4s ease;

      .media_title {
        font-weight: bold;
        font-size: 18px;
        color: #ffffff;
        line-height: 30px;
        transition: all 0.3s ease;
      }
    }

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(97, 21, 137, 0.4);

      &::before {
        background: rgba(97, 21, 137, 0.2);
      }

      .media_img img {
        transform: scale(1.08);
      }

      .media_info {
        background: linear-gradient(
          to top,
          rgba(97, 21, 137, 0.95),
          rgba(97, 21, 137, 0.4)
        );

        .media_title {
          transform: translateY(-5px);
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
      }
    }
  }
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}
.works {
  background: url(images/work.jpg) no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  .Title2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    div {
      margin-right: 15px;
    }
    .title1 {
      font-weight: bold;
      font-size: 36px;
      color: #ffffff;
      line-height: 36px;
    }
    .title2 {
      font-family: Arial;
      font-weight: bold;
      font-size: 32px;
      color: #ffffff;
      line-height: 36px;
    }
    .more {
      position: absolute;
      right: 0;

      a {
        font-family: Arial;
        font-weight: bold;
        font-size: 18px;
        color: #ffffff;
        line-height: 36px;
        display: flex;
        align-items: center;
        img {
          margin-left: 10px;
        }
      }
    }
  }
}

.works .swiper {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  perspective: 1000px;
}

.works .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 300px;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  &:hover {
    img {
      transform: scale(1.08);
      box-shadow: 0 8px 25px rgba(97, 21, 137, 0.5);
      filter: brightness(1.1) contrast(1.05);
    }
  }
}

.works .swiper-slide-active {
  transform: translateX(0) scale(1.2);
  z-index: 2;

  &:hover {
    transform: translateX(0) scale(1.23);

    img {
      transform: scale(1.05);
      filter: brightness(1.15) contrast(1.08);
    }
  }
}

.works .swiper-slide-prev,
.works .swiper-slide-next {
  transform: translateX(-25%) rotateY(45deg) scale(0.8);
  z-index: 1;

  &:hover {
    transform: translateX(-23%) rotateY(42deg) scale(0.85);

    img {
      filter: brightness(1.1);
    }
  }
}

.works .swiper-slide-next {
  transform: translateX(25%) rotateY(-45deg) scale(0.8);

  &:hover {
    transform: translateX(23%) rotateY(-42deg) scale(0.85);
  }
}

.works .swiper-pagination {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  background: url(images/Work_dot_nor.png);
}

.works .swiper-pagination-bullet-active {
  width: 38px;
  height: 38px;
  background: url(images/Work_dot_per.png);
}

.works .swiper-button-prev,
.works .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.works .swiper-button-prev:hover,
.works .swiper-button-next:hover {
  background-color: rgba(97, 21, 137, 0.7);
}

.works .swiper-button-prev::after,
.works .swiper-button-next::after {
  font-size: 24px;
  color: rgba(97, 21, 137, 1);
}
.works .swiper-button-prev:hover::after,
.works .swiper-button-next:hover::after {
  font-size: 24px;
  color: #fff;
}
/* 调整按钮位置 */
.works .swiper-button-prev {
  left: 33%;
}

.works .swiper-button-next {
  right: 33%;
}

footer {
  background: url(images/footer_bg.png);
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  ul {
    display: flex;
    align-items: center;
    justify-content: center;
    li {
      font-family: Microsoft YaHei;
      font-weight: bold;
      font-size: 20px;
      color: #ffffff;
      line-height: 36px;
      margin-right: 30px;
    }
  }
}
.footer2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.visitor-counter {
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.visitor-counter span {
  margin: 0 5px;
}
.YQlink {
  display: flex;
  align-items: center;
  div {
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    line-height: 36px;
  }
  ul {
    li {
      a {
        font-weight: 400;
        font-size: 18px;
        color: #ffffff;
        line-height: 36px;
      }
    }
  }
}
.footer-bottom {
  padding-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  div {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 32px;
    margin-right: 20px;
  }
}

/* 添加呼吸动画关键帧 */
@keyframes breathe {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* 通用more按钮样式 */
.more {
  a {
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;

    img {
      margin-left: 10px;
      width: 30px;
      animation: breathe 1.5s ease-in-out infinite;
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: translateX(5px);
      animation: none;
    }
  }
}

/* 为不同区域的more按钮设置特定颜色 */
.DSdongtai .more a {
  color: #ffffff;
}

.media-news .more a {
  color: #919191;
}

.works .more a {
  color: #ffffff;
}

/**列表页**/
/*栏目图片*/

.wp-inner {
  min-height: 200px;
  background: url(images/banner.png) center no-repeat;
}
.l-banner {
  height: 320px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.l-banner img {
  display: none;
  vertical-align: top;
  height: 100%;
}
#container-1 {
}

/**主体列表页开始**/
#l-container,
#d-container {
  background: #f9f9f9;
  padding: 50px 0 40px;
}

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  box-shadow: 0 4px 10px 0px rgba(143, 33, 210, 0.3);
}
.col_menu .l-qh {
}
.col_menu .col_menu_head {
  background: url(images/Competition_bg.png);
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 0 20px;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 40px;
  text-align: center;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 0;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}

/*栏目列表*/
.col_list {
  min-height: 60px;
}
.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: inline-block;
  padding: 12px 0px;
  line-height: 30px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected,
.col_list .wp_listcolumn .wp_column a.parent {
  color: #fff;
  background: linear-gradient(90deg, #8f21d2, #ffffff);
}
.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: #000;
}

/*三级子栏目**/
.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%;
  float: right;
}
.col_news .col_news_box {
  margin-left: 280px;
  background: #fff;
  min-height: 900px;
  box-sizing: border-box;

  box-shadow: 0 4px 10px 0px rgba(143, 33, 210, 0.3);
}
.col_news_head {
  border-bottom: 1px solid #e0e0e0;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 64px;
  line-height: 64px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: "Microsoft yahei";
  font-weight: 600;
  color: #333;
  border-bottom: 0px solid #036eb7;
  margin-bottom: 0;
  padding-left: 26px;
  position: relative;
}
.col_metas .col_title h2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 6px;
  height: 24px;
  background: rgba(131, 9, 241, 1);
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 64px;
  line-height: 64px;
  color: #rgba(131, 9, 241, 1);
} /**当前位置**/
.path_name {
  color: #007263;
  padding-left: 25px;
  background: url(images/home.png) left center no-repeat;
}
.col_metas .col_path a {
  color: rgba(131, 9, 241, 1);
}
.col_metas .col_path a:last-child {
  color: rgba(131, 9, 241, 1);
}

.col_news_con {
  padding: 0;
  margin: 0;
}
.col_news_list {
}
.col_news_list .news_list li.news {
  border-bottom: 1px solid #e0e0e0;
  padding: 8px;
}
.col_news_list .news_list li.news .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
}
.col_news_list .news_list li.news .news_meta {
  line-height: 35px;
  font-size: 14px;
  color: #999;
}

.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: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
} /**列表页文章图片大小限制**/
.col_news_list .wp_entry,
.col_news_list .wp_entry table {
  margin: 0 auto;
}

/** 分页栏 **/
.col_news_con .pages {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-family: "Microsoft Yahei", Verdana, Geneva, sans-serif;
  color: #494949;
  text-align: center;
  padding-top: 30px;
}
.col_news_con .pages li {
  float: none;
  display: inline-block;
  margin: 0 10px;
}
.col_news_con .pages li a {
  font-size: 16px;
}
.col_news_con .pages li a.pgNext {
  color: #237b36;
}
.col_news_con .pages li a.page-number {
  display: inline-block;
  border: 1px solid #237b36;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  line-height: 34px;
  color: #237b36;
}
.col_news_con .pages li a.page-number:hover,
.col_news_con .pages li a.pgCurrent {
  border: 1px solid #237b36;
  background: #237b36;
  color: #fff;
}

/**主体文章页开始**/
#d-container .inner {
  padding: 10px 30px 30px;
  background: #fff;
  box-sizing: border-box;
}
.infobox {
  margin: 0 auto;
  margin-top: 28px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px 40px 40px;
}
.article {
  padding-top: 24px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
  margin-bottom: 6px;
} /**文章标题**/
.article h2.arti_title {
  line-height: 40px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #1b1b1b;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 14px;
  color: #999;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
  min-height: 500px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  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);
  display: block;
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none;
}

/* 新闻列表项的悬停效果 */
.news_list11 .news {
  transition: all 0.3s ease;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.news_list11 .news:hover {
  background: rgba(131, 9, 241, 0.05);
  transform: translateX(10px);
}

.news_list11 .newsbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.news_list11 .newsbox .title {
  width: 75%;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.news_list11 .newsbox div:last-child {
  color: #999;
  font-size: 14px;
  transition: all 0.3s ease;
}

.news_list11 .news:hover .title {
  color: #8309f1;
  font-weight: bold;
}

.news_list11 .news:hover div:last-child {
  color: #8309f1;
}

/* 图片列表样式 */
.pic_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  padding: 0 15px;
}

.pic_list .news_block {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(131, 9, 241, 0.1);
  transition: all 0.3s ease;
}

.pic_list .news_block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(131, 9, 241, 0.2);
}

.pic_list .news_imgs {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.pic_list .news_imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.pic_list .news_block:hover .news_imgs img {
  transform: scale(1.08);
}

.pic_list .news_title {
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.pic_list .news_title h3 {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.pic_list .news_block:hover .news_title h3 {
  color: #8309f1;
}

.pic_list .news_time {
  padding: 0 20px 15px;
  color: #999;
  font-size: 14px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #333;
  margin-top: 10px;
  display: flex;
  align-items: center;
  img {
    margin-right: 15px;
  }
}
.pic_list .news_time::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 20px;
  background: url(images/icon1.png) no-repeat;
  right: 20px;
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
  .pic_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .pic_list {
    grid-template-columns: 1fr;
  }
}

.menu-linkYW {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #555555;
  line-height: 28px;
  background: linear-gradient(
    0deg,
    #8f21d2 0%,
    #694ff1 54.6630859375%,
    #694ff1 100%
  );
  opacity: 0.6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}

.news_list11 {
  padding: 20px;
}
.col_metas {
  padding-left: 10px;
  padding-right: 10px;
}

.YQlink ul li a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.YQlink ul li a:hover {
  transform: scale(1.05); /* 放大效果 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
}
.es_list_singlearticle {
  padding: 20px;
}
.es_list_singlearticle .content {
  padding: 20px;
}

.es_article_content .es_pdf_player {
  height: auto !important;
}
.es_pagingbar_container {
  padding-bottom: 30px;
}
.ewm{
  margin-left: 50px;
}
.ewm ul li{
  display: flex;
  flex-direction: column;
  align-items: center;
  div{
    font-size: 15px;
  }
}