@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.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;
}

.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;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}

.headertop {
  padding-top: 18px;
  padding-bottom: 18px;
  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;
}

.nav .wp-menu {
  height: 55px;
  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: 55px;
  text-align: center;
}

.nav .wp-menu .menu-item>a {
  display: inline-block;
  height: 55px;
  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: 18px;
  color: #ffffff;
  line-height: 55px;
  -webkit-transition: all 0.3s;
}

.nav .wp-menu .menu-item.hover a.menu-link {
  color: #edbc91;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  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: #333;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
}

.nav .sub-menu .sub-item.hover>a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background: #B00000;
  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 {
  display: inline-block;
  position: relative;
  opacity: 0.3;
  filter: Alpha(opacity=30);
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}

.wp_search #keyword {
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}

.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}

/***自定义搜索*/
.wp-search {
  border: 0px;
  position: relative;
  width: 250px;
  height: 40px;
  background: #f6f6f6;
  border-radius: 18px;
}

.wp-search form {
  display: block;
  padding-right: 34px;
}

.wp-search .search-input {
  margin-right: 0;
  height: 40px;
  position: relative;
}

.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding: 0px 15px;
  line-height: 40px;
  border: 0;
  outline: 0;
  background: none;
  font-family: Microsoft YaHei;
  font-family: MicrosoftYaHei;
  font-size: 15px;
  color: #a1a1a1;
  line-height: 0px;
}

.wp-search .search-btn {
  width: 13px;
  height: 13px;
  position: absolute;
  right: 42px;
  top: -1px;
}

/* .wp-search .search-btn:before{ position:absolute; content:'';left:-1px; top:50%; transform:translateY(-50%); width:1px; height:18px; background:#fff;} */
.wp-search .search-btn input.search-submit {
  width: 55px;
  height: 42px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: #b00000 url(images/btn_search.png) no-repeat center;
  background: cover;
  cursor: pointer;
  border-radius: 18px;
}

.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}

.searchbox {
  width: 360px;
  height: 46px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 2px solid #8f2023;
}

.Headerbox {
  position: relative;
}

header {
  position: absolute;
  top: 0;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  width: 100%;
  padding-top: 30px;
  padding-bottom: 40px;
}

.Headerbox2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mySwiper1 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.mySwiper1 .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.mySwiper1 .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: #fff;

  position: relative;
}

.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SWtitle {
  position: absolute;
  bottom: 0;
  padding: 65px;
  font-family: MicrosoftYaHei;
  font-size: 28px;
  color: #ffffff;
  line-height: 60px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .mySwiper1 {
    height: auto;
  }
}

.main1 {
  background: url(images/bj_news.jpg) no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 90px;
}

.Title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.Title .more {
  position: absolute;
  right: 0;
}

.Title .more a {
  font-size: 16px;
  color: #b00000;
  line-height: 30px;
  position: relative;
}

.Title .more a::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 33px;
  background: url(images/btn_news_more.png) no-repeat;
  right: -20px;
  top: -13px;
}

.main1-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  overflow: hidden;
}

.mySwiper2 {
  width: 50%;
  height: 413px;
  position: relative;
  z-index: 1;
}

.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.9s ease;
}

.mySwiper2 .swiper-slide:hover img {
  transform: scale(1.1);
}

.XYXW {
  width: 50%;
  background: #ffffff;
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px 2px 2px 2px;
  position: relative;
  z-index: 1000;
}

.XYXW li {
  padding: 29px;
  background: #ffffff;
  position: relative;
  z-index: 999;
  transition: all 0.5s ease;
}

.XYXW li::before {
  position: absolute;
  content: "";
  width: 760px;
  height: 130px;
  right: -760px;
  top: 0;
  background: url(images/bj_news_h.png);
  z-index: -1;
  transition: all 0.9s ease;
  opacity: 0;
}

.XYXW li:hover::before {
  right: 0;
  opacity: 1;
}

.XYXW li:hover .date {
  background: none;
  transition: all 0.5s ease;
}

.XYXW li:hover .day,
.XYXW li:hover .year,
.XYXW li:hover .s1,
.XYXW li:hover .s2 {
  color: #fff;
  transition: all 0.5s ease;
}

.XYXW li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
.XYXW .date{

}
.date {
  padding: 10px  ;
  background: #f7f7f7;
  width: 15%;
}

.date .day {
  font-family: ArialMT;
  font-size: 26px;
  color: #666666;
  line-height: 30px;
}

.date .year {
  font-family: ArialMT;
  font-size: 15px;
  color: #999999;
  line-height: 30px;
}

.NEWSbox {
  width: 82%;
}

.s1 {
  font-size: 18px;
  color: #000000;
  line-height: 30px;
}

.s2 {
  font-family: MicrosoftYaHei;
  font-size: 15px;
  color: #666666;
  line-height: 24px;
}

.main1-3 {
  margin-top: 40px;
}

.XYXWbox2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.XYXWbox2 li {
  width: 22%;
  background: #ffffff;
}

.Newsimg img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.NEWSbox2 {
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.XYXWbox2 li:hover {
  background: #b00000;
  box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.XYXWbox2 li:hover img {
  transform: scale(0.95);
  transition: transform 0.6s ease;
}

.XYXWbox2 li:hover .day,
.XYXWbox2 li:hover .year,
.XYXWbox2 li:hover .s1,
.XYXWbox2 li:hover .s2 {
  color: #fff;
  transition: all 0.5s ease;
}

.date2 {
  width: 25%;
}

.date2 .day {
  font-family: ArialMT;
  font-size: 22px;
  color: #333333;
  line-height: 30px;
}

.date2 .year {
  font-family: ArialMT;
  font-size: 15px;
  color: #999999;
  line-height: 30px;
}

.XYXWbox2 .NEWSbox {
  width: 76%;
}

.main2 {
  padding-top: 110px;
  padding-bottom: 60px;
  background: url(images/bg1.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.main2box {
  overflow: hidden;
}

.main2-1 {
  width: 48%;
}

.Title2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(176, 37, 30, 1);
}

.Title2 li img {
  width: 100%;
}

.Title li img {
  width: 100%;
}

.Title2 .more a {
  font-size: 16px;
  color: #b00000;
  line-height: 30px;
  position: relative;
  padding-right: 20px;
}

.Title2 .more a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: 0px;
  background: url(images/btn_more.png) no-repeat;
}

.YJCG li {
  background: url(images/bj_research.jpg) right;
  background-size: cover;
  height: 70px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: inset 1px 0px 0px 0px #f7e8c4;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.YJCG li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(images/bj_research_h.jpg) right;
  background-size: cover;
  transform: translateX(100%);
  transition: transform 0.9s ease;
  z-index: 1;
}

.YJCG li:hover::before {
  transform: translateX(0);
}

.YJCG li:hover .date2 .day {
  color: #fff;
  transition: transform 0.9s ease;
}

.YJCG li:hover .date2 .year {
  color: #fff;
  transition: 0.9s ease;
}

.YJCG li:hover {
  box-shadow: inset 1px 0px 0px 0px #b0251e;
}

.YJCG li a {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.main2box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.TZGG li {
  height: 70px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  transition: all 0.9s ease;
}

.TZGG li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #b00000;
  transform: translateX(100%);
  transition: transform 0.9s ease;
  z-index: 1;
}

.TZGG li:hover::before {
  transform: translateX(0);
}

.TZGG li a {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.TZGG li:hover .s1 {
  color: #fff;
  transition: color 0.5s ease;
}

.date3 {
  width: 152px;
  height: 36px;
  background: #f9f1f1;
  border-radius: 18px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.date3::before {
  position: absolute;
  content: "";
  height: 50px;
  width: 1px;
  background: #b0251e;
  left: 35px;
  bottom: -140%;
}

.TZGG li:last-child .date3::before {
  display: none;
}

.TZGG li:hover {
  background: #b00000;
}

.TZGG li:hover .s1 {
  color: #fff;
}

.main3 {
  padding-top: 60px;
  padding-bottom: 47px;
  background: url(images/bg2.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.JZTZ {
  background: #fff;
  position: relative;
}

.JZTZ::before {
  position: absolute;
  content: "";
  width: 173px;
  height: 149px;
  background: url(images/bj_lecture.jpg) no-repeat;
  right: 0;
  bottom: 0;
}

.JZTZ li {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}

.JZTZ li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f9f1f1;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.JZTZ li:hover::before {
  transform: translateX(0);
}

.JZTZ li a {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.JZTZ li:hover {
  border-radius: 2px;
}

.JZTZ li:hover {
  background: #f9f1f1;
  border-radius: 2px 2px 2px 2px;
  transition: color 0.5s ease;
}

.date4 {
  width: 80px;
  height: 62px;
  background: #fff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #b00000;
  margin-right: 30px;
}

.date4 .day {
  font-family: ArialMT;
  font-size: 24px;
  color: #b00000;
  line-height: 30px;
  text-align: center;
}

.date4 .year {
  font-family: Adobe Heiti Std;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
  background: rgba(176, 0, 0, 1);
  width: 100%;
  text-align: center;
}

.XSHD li {
  padding: 15px;
  background: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0px 2px 6px 0px rgba(174, 174, 174, 0.2);
}

.XSHD li:hover {
  box-shadow: 0px 2px 6px 0px rgba(176, 0, 0, 0.3);
  transition: 0.5s ease;
}

.XSimg img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}

.XSHD li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.XSbox {
  width: 78%;
}

.XSbox .move-up {
  transform: translateY(-5px);
}

.XSbox div {
  margin-bottom: 5px;
}

.XSbox div img {
  margin-right: 5px;
}

.s3 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #000000;
  line-height: 26px;
}

.main4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.XUEBAO {
  margin-top: 30px;
  min-height: 410px;
  background: url(images/bj_journal.png) no-repeat;
  padding-left: 40%;
  padding-top: 5%;
  padding-right: 30px;
}

.s4 {
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #000000;
  line-height: 36px;
}

.s41{
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #5e5e5f;
  line-height: 32px;
}

footer {
  padding-top: 45px;
  padding-bottom: 35px;
  background: url(images/bj_bottom.jpg) no-repeat;
  background-size: cover;
}

.YQLJ {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.s5 {
  font-family: MicrosoftYaHei;
  font-size: 20px;
  color: #ffffff;
  line-height: 40px;
}

.s6 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
}

.f1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer1 {
  width: 70%;
}

.Footer2 {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f2 {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.s6_1 {
  position: absolute;
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  left:64%;
  top: 50%;
  transform: translateY(-50%);
}
.s6_1:hover{
  color: white;
}
.Footer3 {
  display: flex;
  align-items: center;
}

.HTOP {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.HTOP li {
  margin-right: 25px;
}

.HTOP li:last-child {
  margin-right: 0;
}

.HTOP li a {
  display: flex;
  align-items: center;
}

.mySwiper1 .swiper-pagination {
  display: flex;
  align-items: center;
  left: 80%;
  bottom: 5%;
}

.mySwiper1 .swiper-pagination-bullet {
  width: 74px;
  height: 77px;
  background: url(images/btn_banner_toggle.png) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ArialMT;
  font-size: 30px;
  color: rgba(176, 0, 0, 1) !important;
  line-height: 36px;
  text-align: center;
  opacity: 3;
  margin-right: 8px !important;
  border-radius: 0 !important;
  transition: 0.5s ease;
}

.mySwiper1 .swiper-pagination-bullet-active {
  width: 74px;
  height: 77px;
  background: url(images/btn_banner_toggle_h.png) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ArialMT;
  font-size: 30px;
  color: #ffffff !important;
  line-height: 36px;
  text-align: center;
  border-radius: 0 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.Title .more a::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 33px;
  background: url(images/btn_news_more.png) no-repeat;
  right: -20px;
  top: -13px;
  animation: drawMore 2s ease infinite;
}

@keyframes drawMore {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

.Title .more a:hover::before {
  animation: pulseMore 1s infinite;
}

@keyframes pulseMore {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.Title2 .more a {
  font-size: 16px;
  color: #b00000;
  line-height: 30px;
  position: relative;
  padding-right: 20px;
}

.Title2 .more a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: 0px;
  background: url(images/btn_more.png) no-repeat;
  animation: waveMore 2s ease infinite;
}

@keyframes waveMore {
  0% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-5px) scale(1.1);
  }

  50% {
    transform: translateY(0) scale(1);
  }

  75% {
    transform: translateY(5px) scale(0.9);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.Title2 .more a:hover::before {
  animation: spinMore 1.5s ease infinite;
}

@keyframes spinMore {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.wow {
  visibility: hidden;
}

/* 自定义动画效果 */
.wow.fadeInDown {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.wow.fadeInLeft {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.wow.fadeInRight {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.wow.fadeInUp {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.wow.fadeIn {
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

/* 添加动画延迟效果 */
[data-wow-delay="0.2s"] {
  animation-delay: 0.2s;
}

[data-wow-delay="0.4s"] {
  animation-delay: 0.4s;
}

[data-wow-delay="0.6s"] {
  animation-delay: 0.6s;
}

/* 添加动画效果 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sitelogo a img {
  width: 100%;
}

.logo li a img {
  width: 100%;
}

/*
 * Column Style
 */
.column-banner {
  background: url(images/banner01.jpg);
}

.column-img {
  max-width: 1920px;
  width: 100%;
  height: 370px;
  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;
}

.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: right;
}

.column-name {
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #b00000;
}

.column-name2 {
  position: relative;
  height: 145px;
  background: url(images/left.png) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: MicrosoftYaHei;
  font-size: 22px;
  color: #ffffff;
  padding: 0;
  padding-bottom: 15px;
}

.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: #b00000;
  background-color: #ededed;
}

.col-list>ul>li:last-child a {
  border-bottom: none;
}

.col-list>ul>li.selected>a {
  background: #eee;
  color: #b00000;
  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: #b00000;
  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: #b00000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
}

.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 #b00000;
}

.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}

.column-img-item:hover .title {
  color: #b00000;
  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 {
  padding: 12px 0;
  background-color: #f7f7f7;
  color: #b00000;
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.1);
}

.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: #b00000;
}

.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;
}

/* News List */
.home-list {
  padding: 20px 0 50px;
  background-color: #fff;
}

.news-date-list {
  min-height: 388px;
}

.news-date-item {
  position: relative;
  min-height: 60px;
  margin-bottom: 20px;
}

.news-date-item h3 {
  padding-top: 4px;
  padding-left: 100px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.news-date-item p {
  padding-left: 100px;
  font-size: 14px;
  color: #999;
}

.news-date-item:hover h3 {
  color: #b00000;
}

.img-list-item-special {
  position: relative;
  display: block;
  height: 160px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 4px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.img-list-item-special:hover {
  background-color: #b00000;
}

.img-list-item-special .photo {
  position: absolute;
  left: 17px;
  top: 16px;
  width: 160px;
  height: 128px;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}

.img-list-item-special .text {
  padding-top: 16px;
  padding-left: 210px;
}

.img-list-item-special .text h3 {
  min-height: 60px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.img-list-item-special .text p {
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.img-list-item-special .text .more {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  text-align: left;
}

.img-list-item-special .text .more i {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  background: url(../img/icon/icon_img_list_arrow.png) no-repeat center;
  vertical-align: middle;
}

.img-list-item-special:hover .text p {
  color: rgba(255, 255, 255, 0.5);
}

.img-list-item-special:hover .text h3 {
  color: #fff;
}

.img-list-item {
  display: block;
  height: 74px;
  line-height: 74px;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.img-list-item span {
  color: #999;
}

.img-list-item b {
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.img-list-item:hover {
  background-color: #f0f0f0;
}

.img-list-item:hover b {
  color: #b00000;
}

.block-tab {
  line-height: 45px;
  margin-bottom: 10px;
}

.block-tab ul {
  width: 100%;
}

.block-tab li,
.block-tab a {
  display: inline-block;
  vertical-align: middle;
}

.block-tab li {
  margin-right: 10px;
}

.block-tab li a {
  color: #fff;
  text-align: center;
  font-size: 24px;
  color: #999;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.block-tab li a:hover {
  color: #af251b;
}

.block-tab li.active a {
  padding: 0;
  color: #af251b;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
}

.block-tab-content {
  position: relative;
}

.block-tab-content>ul>li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  -webkit-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.block-tab-content>ul>li.active {
  position: relative;
  top: 0;
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  transition: 0.6s all ease;
}

.block-tab-content .tab-more {
  position: absolute;
  right: 0;
  top: -42px;
  font-size: 16px;
  font-weight: 700;
  color: #999;
}

.block-tab-content .tab-more:hover {
  color: #af251b;
}

.block-tab1 {
  line-height: 45px;
  margin-bottom: 10px;
}

.block-tab1 ul {
  width: 100%;
}

.block-tab1 li,
.block-tab a {
  display: inline-block;
  vertical-align: middle;
}

.block-tab1 li {
  margin-right: 10px;
}

.block-tab1 li a {
  color: #fff;
  text-align: center;
  font-size: 24px;
  color: #999;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.block-tab1 li a:hover {
  color: #af251b;
}

.block-tab1 li.active a {
  padding: 0;
  color: #af251b;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
}

.block-tab-content1 {
  position: relative;
}

.block-tab-content1>ul>li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  -webkit-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.block-tab-content1>ul>li.active {
  position: relative;
  top: 0;
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  transition: 0.6s all ease;
}

.block-tab-content1 .tab-more {
  position: absolute;
  right: 0;
  top: -42px;
  font-size: 16px;
  font-weight: 700;
  color: #999;
}

.block-tab-content1 .tab-more:hover {
  color: #af251b;
}

.BT1 {
  padding: 20px;
}

/* Add hover underline animation for menu items */
.menu-link,
.sub-link {
  position: relative;
  text-decoration: none;
}

.menu-link::after,
.sub-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #b00000;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.menu-link:hover::after,
.sub-link:hover::after {
  width: 100%;
}

.mySwiper1 .swiper-pagination {
  display: flex;
  align-items: center;
  left: 80%;
  bottom: 5%;
}

.mySwiper1 .swiper-pagination-bullet {
  width: 74px;
  height: 77px;
  background: url(images/btn_banner_toggle.png) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ArialMT;
  font-size: 30px;
  color: rgba(176, 0, 0, 1) !important;
  line-height: 36px;
  text-align: center;
  opacity: 3;
  margin-right: 8px !important;
  border-radius: 0 !important;
  transition: 0.5s ease;
}

.mySwiper1 .swiper-pagination-bullet-active {
  width: 74px;
  height: 77px;
  background: url(images/btn_banner_toggle_h.png) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ArialMT;
  font-size: 30px;
  color: #ffffff !important;
  line-height: 36px;
  text-align: center;
  border-radius: 0 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.YQLJ li {
  margin: 0px !important;
}

.col-sublist li.selected a {
  color: #b00000;
}

.col-list>ul>li>a {
  font-size: 18px;
  font-weight: 600px
}

.col-sublist>ul>li>a {
  font-size: 16px;
  font-weight: 600px
}

.col-list .col-sublist .col-sublist li a {
  font-size: 14px;
  font-weight: 500px
}

.col-list .col-sublist .col-sublist {
  padding-left: 20px;
}

.mySwiper1 {
  width: 100%;
  height: 100%;
}

.mySwiper1 .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
}

.mySwiper1 .swiper-slide-active img,
.swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

/* 回到顶部按钮样式 */
.BTNTOP {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.BTNTOP.show {
    opacity: 1;
    transform: translateY(0);
}

.BTNTOP a {
    display: block;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.BTNTOP a:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.BTNTOP img {
    width: 40px;
    height: 40px;
    display: block;
}

/* 侧边链接样式 */
.side-link {
    position: fixed;
    right:  0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-link-item {
   
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s ease;
    cursor: pointer;
     
}

.side-link-item:hover {
    transform: scale(1.02);
    
     
}

.side-link-item a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.side-link-item img {
    
    transition: all 0.3s ease;
}

.side-link-item:hover img {
    transform: scale(1.1);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .side-link {
        right: 0px;
    }
    
    .side-link-item {
        
    }
    
    .side-link-item img {
        
    }
}

@media screen and (max-width: 480px) {
  
    .side-link {
        right: 0px;
    }
    
    .side-link-item {
         
    }
    
    .side-link-item img {
        
      width: 45%;
    }
}