<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
  -moz-transition: 0.5s all ease;
  -o-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;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
header {
  background: url(images/bj_top.jpg) no-repeat;
  height: 120px;
  width: 100%;
  background-size: cover;
  border-bottom: 8px solid rgba(250, 189, 21, 1);
}
.headertop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toptext {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toptext2 {
  display: flex;
}
.s1 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 35px;
}
.s2 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
}
.WECHATEWM img {
  width: 70px;
  height: 70px;
  margin-left: 5px;
}
.mySwiperbanner .swiper-button-next {
  width: 72px;
  height: 72px;
  right: 5%;
  background: url(images/btn_banner_right.png) no-repeat;
  transition: 0.5s;
}
.mySwiperbanner .swiper-button-prev {
  width: 72px;
  height: 72px;
  left: 5%;
  background: url(images/btn_banner_left.png) no-repeat;
  transition: 0.5s;
}
.mySwiperbanner .swiper-button-next:hover {
  width: 72px;
  height: 72px;
  background: url(images/btn_banner_right_h.png) no-repeat;
}
.mySwiperbanner .swiper-button-prev:hover {
  width: 72px;
  height: 72px;
  background: url(images/btn_banner_left_h.png) no-repeat;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.m1 {
  display: flex;
  position: relative;
  top: -70px;
  z-index: 999;
}
.m1 li a {
  width: 433px;
  height: 210px;
}
.m1-1 a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(45deg, #297cd1, #398ce2);
}
.s3 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  line-height: 22px;
}
.m1-2 a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(45deg, #0f6bc4, #1473ce);
}
.m1-3 a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(45deg, #005bb3, #0065c7);
}
.s4 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 32px;
  color: #000000;
  line-height: 32px;
}
.s5 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 32px;
}
.Title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.s6 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 50px;
}
.SHSY li {
  border-bottom: 1px solid rgba(215, 215, 215, 1);
  background: url(images/icon_reputation.png) left no-repeat;
  padding-left: 40px;
}
.main2 {
  padding-bottom: 50px;
}
.main3 {
  background: url(images/bj_profile.jpg) no-repeat;
  padding-top: 60px;
  padding-bottom: 100px;
  background-size: cover;
}
.s7 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 60px;
  color: #fabf1b;
  line-height: 30px;
  font-style: italic;
}
.m3text1 {
  display: flex;
  align-items: flex-end;
}
.m3text {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 50px;
}
.m3text12 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.s8 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
.main4 {
  padding-top: 50px;
  padding-bottom: 68px;
}
.Title2 {
  display: flex;
  align-items: flex-start;
  border-left: 3px solid rgba(0, 105, 189, 1);
  padding-left: 10px;
}
.m4left {
  width: 40%;
}
.s9 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.m4part1 {
  display: flex;
  justify-content: space-between;
}
.m4right {
  width: 58%;
}
.m4img1 {
  display: flex;
  justify-content: space-between;
}
.m4img2 {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  top: -80px;
}
.m4imgtext {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 999;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  display: none;
}
.liimg {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0);
}
.m4img2 li img {
  position: relative;
}
.liimg:hover {
  border: 2px solid rgba(0, 97, 175, 1);
  transition: 0.5s;
  cursor: pointer;
}
.liimg:hover .m4imgtext {
  display: flex;
}
.m42img {
  width: 61%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m4part2 {
  display: flex;
  justify-content: space-between;
}
.m42text {
  width: 35%;
}
.s10 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 97, 175, 1);
  line-height: 22px;
}
.m42text li {
  border-left: 2px solid #0069bd;
  padding-left: 26px;
  position: relative;
  padding-top: 9px;
  padding-bottom: 9px;
}
.m42text li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: -11px;
  background: url(images/dot_condition.png);
  background-size: cover;
}
.main5 {
  padding-top: 49px;
  padding-bottom: 72px;
  background: url(images/bj_achievement.jpg) no-repeat;
  background-size: cover;
}
.m5box {
  margin-top: 40px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.m5text {
  width: 530px;
  box-shadow: 0px 0px 6px 0px rgba(118, 118, 118, 0.3);
  border-radius: 6px 6px 0px 0px;
}
.m5text1 {
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m5text1 li {
  width: 100%;
  text-align: center;
}
.s9-1 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
}
.s11 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 22px;
  transition: 0.5s;
}
.m52text {
  background: #fff;
  padding: 9px;
  width: 100%;
  text-align: center;
}
.m5box2 li {
  width: 240px;
  margin-bottom: 10px;
}
.m5box2 {
  display: flex;
  width: 57%;
}
.m5box2 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.m5box2 li {
  border: 2px solid rgba(255, 255, 255, 0);
  transition: 0.5s;
}
.m5box2 li:hover {
  border: 2px solid rgba(0, 105, 189, 1);
  cursor: pointer;
}
.m5box2 li:hover .m52text {
  background: #0069bd;
  box-shadow: 0px 0px 6px 0px #0069bd;
  border-radius: 2px;
}
.m5box2 li:hover .s11,
.m5box2 li:hover .s12 {
  color: #fff !important;
}
.main6 {
}
.main6-1 {
  background: url(images/bj_talent02.jpg) no-repeat;
  background-size: cover;
  padding-top: 57px;
  padding-bottom: 38px;
}
.m6img {
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
}
.img6 {
  border: 4px solid rgba(255, 255, 255, 1);
}
.m6img li {
  width: 278px;
  margin-bottom: 40px;
}
.m6img li:hover {
  cursor: pointer;
}
.m6img2 img {
  width: 100%;
  object-fit: cover;
}
.main6 .Title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
}
.m6img2 {
  position: relative;
}
.main7 {
  padding-top: 50px;
  padding-bottom: 55px;
  background: url(images/bj_life.jpg) no-repeat;
  background-size: cover;
}
.s13 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 28px;
}
.m7box1 {
  background: #ffff !important;
  box-shadow: 0px 0px 6px 0px rgba(118, 118, 118, 0.3);
}
.m7box1 ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.m7text1 {
  background: #ffff !important;
  border-top: 1px solid rgba(249, 249, 249, 1);
}
.title1 {
  position: relative;
  padding-left: 10px;
}
.title1::before {
  width: 3px;
  height: 38px;
  background: #0069bd;
  position: absolute;
  content: "";
  left: -3px;
  top: -3px;
}
.m7box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.m7simg img {
  width: 100%;
}
.m7swiper {
  position: relative;
}
.m7swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 16px;
  height: 28px;
  background: url(images/btn_life_right.png) no-repeat;
}
.m7swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 28px;
  left: -40px;
  background: url(images/btn_life_left.png) no-repeat;
}
.m7swiper .swiper-button-next:hover {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 16px;
  height: 28px;
  background: url(images/btn_life_right_h.png) no-repeat;
}
.m7swiper .swiper-button-prev:hover {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 28px;
  left: -40px;
  background: url(images/btn_life_left_h.png) no-repeat;
}
.mySwiper1 .swiper-slide {
  text-align: center;
  transition: 0.5s;
}
.m7stext {
  padding: 20px;
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  font-size: 17px !important;
  line-height: 30px;
}
.mySwiper1 .swiper-slide {
  border: 2px solid rgba(255, 255, 255, 0);
  transition: 0.5s;
}
.mySwiper1 .swiper-slide:hover {
  border: 2px solid rgba(0, 105, 189, 1);
  transition: 0.5s;
  cursor: pointer;
}
.mySwiper1 .swiper-slide:hover .m7stext {
  background: rgba(0, 105, 189, 1);
  color: #fff !important;
}
.main8 {
  padding-top: 100px;
  padding-bottom: 70px;
}
.m8left {
  width: 64%;
}
.m8img {
  display: flex;
}
.m8right {
  width: 35%;
}
.s14 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.main9 {
  padding-top: 60px;
  padding-bottom: 52px;
  background: url(images/bj_setting.jpg) no-repeat;
  background-size: cover;
}
.m9XYZYli {
  width: 280px;
  margin-bottom: 30px;
}
.m9texttitle {
  width: 100%;
  height: 61px;
  background: url(images/setting_top.png) no-repeat;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  line-height: 55px;
  text-shadow: 0px 1px 2px #1f276f;
  display: flex;
  justify-content: center;
}
.m9text {
  padding: 10px;
  background: #fff;
}
.m9text li {
  padding: 10px;
  text-align: center;
}
.m9XYZY {
  display: flex;
  justify-content: space-between;
}
.m9t1 {
  position: relative;
}
.m9t1::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_1.png);
}
.m9t2 {
  position: relative;
}
.m9t2::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_2.png);
}
.m9t3 {
  position: relative;
}
.m9t3::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_3.png);
}
.m9t4 {
  position: relative;
}
.m9t4::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_4.png);
}
.m9t5 {
  position: relative;
}
.m9t5::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_5.png);
}
.m9t6 {
  position: relative;
}
.m9t6::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_6.png);
}

.m9t7 {
  position: relative;
}
.m9t7::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_7.png);
}
.m9t8 {
  position: relative;
}
.m9t8::before {
  width: 45px;
  height: 60px;
  content: "";
  left: 20px;
  position: absolute;
  background: url(images/setting_8.png);
}
footer {
  padding-top: 48px;
  padding-bottom: 48px;
  background: url(images/bj_bottom.jpg) no-repeat;
  background-size: cover;
}
.s15 {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.footerbox {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.s16 {
  font-family: Source Han Sans CN;
  font-weight: 300;
  font-size: 13px;
  color: #8c8fb5;
  line-height: 26px;
  text-align: center;
  margin-top: 29px;
}
.mySwiperbanner .swiper-slide img {
  width: 100%;
}
.bannerimgstar {
  width: 24px !important;
  height: 24px;
  object-fit: cover;
  margin-right: 15px;
}
.s17 {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
}
.mySwiperbanner .swiper-slide {
  position: relative;
}
.bannertext1 {
  position: absolute;
  top: 105px;
  left: 370px;
}
.bannertext2 {
  position: absolute;
  right: 840px;
  top: 67px;
  display: flex;
}
.s18 {
  font-family: Source Han Sans CN;
  font-weight: 800;
  font-size: 32px;
  color: #FFFFFF;
  text-shadow: 0 0 10px #007aff, 0 0 20px #007aff, 0 0 30px #007aff, 0 0 40px #007aff;
}
.bannertext3 {
  position: absolute;
  right: 300px;
  top: 45px;
}
.btn80 {
  position: relative;
}
.btn80::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  right: -35px;
  background: url(images/mark_profile03.png) no-repeat;
}
.btnLR {
  position: relative;
}
.btnLR::before {
  position: absolute;
  content: "";
  width: 41px;
  height: 32px;
  left: -35px;
  background: url(images/mark_profile01.png) no-repeat;
}
.btnLR::after {
  position: absolute;
  content: "";
  width: 41px;
  height: 32px;
  bottom: -30px;
  right: -100px;
  background: url(images/mark_profile02.png) no-repeat;
}
.m1 li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m1 li:hover .m1img{
  transform: translateY(-10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  -webkit-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -moz-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -ms-transition: transform 0.5s ease, box-shadow 0.5s ease;
  -o-transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.liimg {
  position: relative;
  overflow: hidden;
}
.liimg img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}
.liimg:hover img {
  transform: scale(1.1);
}
.m5boximgall li {
  position: relative;
  overflow: hidden;
}
.m5boximgall li img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.m5boximgall li:hover img {
  transform: scale(1.1);
}
.m6img li {
  position: relative;
  overflow: hidden;
}
.m6img li img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.m6img li:hover img {
  transform: scale(1.1);
}

.mySwiper1 .swiper-slide {
  position: relative;
  overflow: hidden;
}
.mySwiper1 .swiper-slide img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.mySwiper1 .swiper-slide:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.m9XYZY li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m9XYZY li:hover {
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.s7 {
  animation: fadeIn 1s ease-out;
}
.m1 {
  position: relative;
}
.m1::before {
  position: absolute;
  content: "";
  left: -50px;
  bottom: 0;
  height: 90px;
  width: 58px;
  background: url(images/shadow_spirit_left.png) no-repeat;
}
.m1::after {
  position: absolute;
  content: "";
  right: -57px;
  bottom: 0;
  height: 90px;
  width: 58px;
  background: url(images/shadow_spirit_right.png) no-repeat;
}
</pre></body></html>