a:hover {
  color: #782e8e;
}
.swiper-pagination-bullet-active {
  background-color: #782e8e !important;
}
.headtop {
  background: #782e8e;
}
.headtop .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}
.headtop h1 {
  color: #fff;
}
.headtop .language {
  position: relative;
  width: 120px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headtop .language h2 {
  color: #fff;
}
.headtop .language img {
  height: 20px;
}
.headtop .language i {
  font-size: 20px;
  color: #fff;
}
.headtop .language .down {
  position: absolute;
  background: #fff;
  top: 30px;
  left: 0;
  z-index: 9999;
  height: 0;
  width: 120px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.headtop .language .down a {
  text-align: center;
}
.headtop .language .down a:hover {
  background: #782e8e;
  color: #fff;
}
.headtop .language:hover .down {
  border: 1px #333 solid;
  height: auto;
}
.header {
  position: relative;
}
.header .page {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header .rg {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.header .logo {
  margin: 0 auto;
}
.header .head-tel {
  display: flex;
  align-items: center;
}
.header .head-tel .iconfont {
  font-size: 40px;
  color: #782e8e;
  margin-right: 13px;
}
.header .head-tel p {
  font-size: 15px;
  color: #782e8e;
  margin-top: 4px;
}
.header .head-tel span {
  font-size: 28px;
  font-weight: bold;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #782e8e;
}
.header .nav-left {
  width: 4%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header .nav-left .menu-trigger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .nav-left .menu-trigger .line1 {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .nav-left .menu-trigger.active .line1:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .nav-left .menu-trigger.active .line1:nth-child(2) {
  opacity: 0;
}
.header .nav-left .menu-trigger.active .line1:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header .sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
}
.header .sidebar.active {
  transform: translate3d(0, 0, 0);
}
.header .sidebar .sidebar-nav {
  flex: 1;
  padding: 20px 0;
  margin-top: 130px;
}
.header .sidebar .sidebar-nav > li {
  width: 100%;
  position: relative;
}
.header .sidebar .sidebar-nav > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
.header .sidebar .sidebar-nav > li > a:hover {
  background: #f8f8f8;
  color: #782e8e;
}
.header .sidebar .sidebar-nav > li.has-children > a {
  position: relative;
  padding-right: 40px;
}
.header .sidebar .sidebar-nav > li.has-children > a i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s ease;
}
.header .sidebar .sidebar-nav > li.has-children.active i {
  transform: translateY(-50%) rotate(180deg);
}
.header .sidebar .sidebar-nav > li.has-children.active .sidebar-2nav {
  display: block;
}
.header .sidebar .sidebar-nav > li .sidebar-2nav {
  background: #f9f9f9;
  display: none;
  padding-left: 20px;
}
.header .sidebar .sidebar-nav > li .sidebar-2nav li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.header .sidebar .sidebar-nav > li .sidebar-2nav li a:hover {
  color: #782e8e;
  background: #fff;
}
.header .sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(2px);
}
.header .sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header .nav {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: space-between;
}
.header .nav li {
  flex: 1;
  text-align: center;
  font-size: 18px;
}
.header .nav li a {
  height: 100px;
  line-height: 100px;
}
.header .nav .active {
  position: relative;
}
.header .nav .active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  height: 4px;
  width: 80%;
  background: #782e8e;
}
body.sidebar-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
/*网站标题*/
.wz-bt {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt p {
  font-size: 40px;
  position: relative;
  font-weight: bold;
  color: #782e8e;
}
.wz-bt span {
  font-size: 20px;
  margin-top: 10px;
  color: #666666;
}
.home-video {
  padding: 50px 0 0;
}
.home-video .top-h img {
  margin: 0 auto;
  height: 100px;
}
.home-video .top-h span {
  text-align: center;
  font-size: 27px;
  margin: 40px auto;
}
.home-video .main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.pro-w {
  padding: 100px 0 0;
  background: url(../images/pro-homebg.jpg) center / cover no-repeat;
}
.pro-w .top-h {
  display: flex;
  align-items: end;
  margin-bottom: 80px;
}
.pro-w .top-h .lf {
  width: 50%;
  padding-right: 5%;
}
.pro-w .top-h .lf p {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 14px;
}
.pro-w .top-h .rg {
  width: 50%;
  display: flex;
}
.pro-w .top-h .rg li {
  flex: 1;
  border: 1px #333 solid;
  margin-right: 1%;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.pro-w .top-h .rg li:hover {
  background: #782e8e;
  border: 1px #782e8e solid;
}
.pro-w .top-h .rg li:hover a {
  color: #fff;
}
.pro-w .con-box {
  margin: 0 auto;
}
.pro-w .con-box ul {
  display: flex;
  flex-wrap: wrap;
}
.pro-w .con-box ul li {
  width: 18%;
  margin-right: 2%;
  margin-bottom: 80px;
}
.pro-w .con-box ul li .pic {
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  background: #fff;
  display: flex;
  align-items: center;
}
.pro-w .con-box ul li .pic img {
  width: 100%;
  object-fit: cover;
}
.pro-w .con-box ul li p {
  margin-top: 20px;
  font-size: 12px;
  color: #782e8e;
  text-align: center;
}
.pro-w .con-box ul li span {
  font-size: 12px;
  text-align: center;
  transition: all 0.2s linear;
}
.pro-w .con-box ul li:hover span {
  background-color: #782e8e;
  color: #fff;
  transition: all 0.2s linear;
}
.intr-w {
  padding: 100px 0;
  background: url(../images/intr-bg.jpg) center / cover no-repeat;
}
.intr-w .box {
  display: flex;
}
.intr-w .pic {
  margin-top: 60px;
  max-width: 50%;
  margin-left: 50px;
  border-radius: 20px;
  overflow: hidden;
}
.intr-w .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intr-w .con {
  flex: 1;
}
.intr-w .con em {
  display: block;
  font-size: 100px;
  font-weight: bold;
  opacity: 0.1;
  color: #782e8e;
  line-height: 1;
  margin-bottom: -25px;
  font-family: '思源宋体';
}
.intr-w .con img {
  height: 30px;
  margin-bottom: 80px;
}
.intr-w .con h2 {
  font-size: 32px;
  margin-top: 15px;
  font-family: '思源宋体';
}
.intr-w .con h2 i {
  font-size: 50px;
  color: #782e8e;
}
.intr-w .con .text {
  margin-top: 20px;
  line-height: 2;
  color: #666;
}
.intr-w .con .more {
  width: 150px;
  line-height: 40px;
  border: 1px #782e8e solid;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
  color: #782e8e;
  transition: all 0.3s ease;
}
.intr-w .con .more:hover {
  background-color: #782e8e;
  color: #fff;
}
.intr-w .con ul {
  display: flex;
  margin-top: 100px;
}
.intr-w .con ul li {
  flex: 1;
}
.intr-w .con ul li h6 {
  font-size: 22px;
  position: relative;
}
.intr-w .con ul li h6 span {
  font-size: 50px;
  font-weight: bold;
  color: #782e8e;
  display: inline-block;
  position: relative;
  font-family: Impact;
  /* 倒影效果 */
}
.intr-w .con ul li h6 span::after {
  content: attr(data-number);
  position: absolute;
  top: calc(100% - 24px);
  /* 在字底下，稍有一点间距 */
  left: 0;
  width: 100%;
  height: 80%;
  /* 倒影高度为原字的一半 */
  /* 创建倒影渐变消失效果 */
  background: linear-gradient(to bottom, rgba(120, 46, 142, 0.7) 0%, rgba(120, 46, 142, 0.5) 20%, rgba(120, 46, 142, 0.3) 40%, rgba(120, 46, 142, 0.1) 60%, rgba(120, 46, 142, 0) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* 倒影翻转（因为是反射，所以需要翻转） */
  /* 轻微模糊效果 */
  filter: blur(0.8px);
  pointer-events: none;
}
.history-w {
  background: url(../images/history-bg.jpg) center / cover no-repeat;
  padding: 80px 0;
}
.history-w .top-h h1 {
  font-size: 80px;
  font-family: '宋体';
  font-weight: bold;
  color: #fff;
}
.history-w .hisSwiper {
  margin-bottom: 50px;
}
.history-w .hisSwiper ul li {
  padding-left: 10px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: all 0.3s ease;
}
.history-w .hisSwiper ul li .pic {
  height: 300px;
  width: 90%;
  overflow: hidden;
  border-radius: 20px;
}
.history-w .hisSwiper ul li .pic img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.history-w .hisSwiper ul li .text {
  height: 200px;
}
.history-w .hisSwiper ul li .text * {
  color: #fff;
}
.history-w .hisSwiper ul li .text h4 {
  line-height: 2;
  font-size: 32px;
  font-weight: bold;
  font-family: Impact;
}
.history-w .hisSwiper ul li .text p {
  line-height: 1.6;
}
.history-w .hisSwiper ul li a {
  color: #fff;
  height: 0;
  width: 150px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
  border: 0 #fff solid;
  transition: all 0.3s ease;
}
.history-w .hisSwiper ul li a:hover {
  background: #fff;
  color: #782e8e;
}
.history-w .hisSwiper ul li:hover a {
  height: 40px;
  border: 1px #fff solid;
}
.history-w .hisSwiper ul li:hover .pic img {
  transform: scale(1.1);
}
.history-w .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history-w .btn .lf {
  position: relative;
  width: 80%;
}
.history-w .btn .lf .hisswiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff31;
}
.history-w .btn .lf .hisswiper-pagination span {
  background: #fff;
}
.history-w .btn .rg {
  position: relative;
  display: flex;
  height: 40px;
}
.history-w .btn .rg .iconfont {
  display: block;
  margin-right: 30px;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #fff solid;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.history-w .btn .rg .iconfont:hover {
  background: #fff;
  color: #782e8e;
}
.factory-w {
  padding: 120px 0 80px;
}
.factory-w .top-h img {
  margin: 10px auto;
  height: 75px;
}
.factory-w .top-h span {
  font-size: 18px;
  color: #666;
  text-align: center;
}
.factory-w ul {
  display: flex;
  margin-top: 60px;
}
.factory-w ul li {
  width: 23%;
  margin-right: 2.66%;
}
.factory-w ul li .pic {
  width: 100%;
  height: 350px;
  border-radius: 50px 0 50px 0;
  transition: all 0.3s ease;
}
.factory-w ul li .pic img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.factory-w ul li h2 {
  text-align: center;
  font-family: '宋体';
  font-weight: bold;
  font-size: 27px;
  margin-top: 30px;
}
.factory-w ul li a {
  margin: 0 auto;
  text-align: center;
  width: 120px;
  height: 30px;
  font-size: 14px;
  color: #782e8e;
  line-height: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.factory-w ul li a:hover {
  border: 1px #782e8e solid;
  color: #fff;
  background: #782e8e;
}
.factory-w ul li:last-child {
  margin-right: 0;
}
.factory-w ul li:hover .pic img {
  transform: scale(1.1);
}
.adv-w {
  padding: 80px 0 120px;
  background: url(../images/adv-bg.jpg) center / cover no-repeat;
}
.adv-w .page {
  display: flex;
}
.adv-w .page .lf {
  width: 42%;
}
.adv-w .page .lf em {
  font-size: 120px;
  opacity: 0.15;
  color: #782e8e;
  font-weight: bold;
  font-family: '宋体';
  text-transform: uppercase;
}
.adv-w .page .lf img {
  margin-top: -40px;
  margin-bottom: 50px;
}
.adv-w .page .lf .adv-tabs {
  height: 300px;
  overflow: hidden;
}
.adv-w .page .lf .adv-tabs ul li {
  display: flex;
}
.adv-w .page .lf .adv-tabs ul li h2 {
  width: 65%;
  font-size: 27px;
  font-weight: bold;
  color: #00000054;
}
.adv-w .page .lf .adv-tabs ul .swiper-slide-thumb-active h2 {
  color: #782e8e;
}
.adv-w .page .btn {
  width: 10%;
  display: flex;
  align-items: end;
  justify-content: center;
}
.adv-w .page .btn .iconfont {
  display: block;
  margin-right: 10px;
  color: #fff;
  background: #a8a8a8;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.adv-w .page .btn .iconfont:hover {
  background: #782e8e;
  color: #fff;
}
.adv-w .page .rg {
  width: 48%;
}
.adv-w .page .rg li {
  width: 100%;
  height: 480px;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}
.adv-w .page .rg li a {
  width: 100%;
  height: 480px;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  position: relative;
}
.adv-w .page .rg li a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00000060;
  height: 60px;
  width: 100%;
  text-align: center;
  border-radius: 40px 0 40px 0;
  z-index: 9;
}
.adv-w .page .rg li a .text p {
  line-height: 60px;
  font-size: 20px;
  color: #fff;
}
.news-w {
  padding: 70px 0;
  background: url(../images/news-bg.jpg) center / cover no-repeat;
}
.news-w .page {
  max-width: 1400px;
}
.news-w .top-h {
  text-align: center;
}
.news-w .top-h * {
  color: #fff;
}
.news-w .top-h h1 {
  font-size: 42px;
  font-weight: bold;
  font-family: '宋体';
  line-height: 1.5;
}
.news-w .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 45px 0 35px;
  padding-right: 30px;
  border-bottom: 1px solid #e2e2e2;
}
.news-w .top .news-tab {
  margin: 0;
}
.news-w .top .news-tab li {
  width: auto !important;
  position: relative;
}
.news-w .top .news-tab li::after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #782e8e;
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}
.news-w .top .news-tab li a {
  color: #fff;
  opacity: 0.75;
}
.news-w .top .news-tab .news-active::after {
  display: block;
}
.news-w .top .news-tab .news-active a {
  opacity: 1;
}
.news-w .top a {
  padding-bottom: 20px;
  font-size: 20px;
}
.news-w .top .more {
  font-size: 16px;
  font-weight: lighter;
  padding-bottom: 10px;
  color: #fff;
}
.news-w .news-box {
  width: calc(100% + 10px);
  transform: translateX(-5px);
}
.news-w .news-box ul {
  display: flex;
}
.news-w .news-box ul li {
  width: 32%;
  margin-right: 2%;
  padding: 5px;
}
.news-w .news-box ul li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.news-w .news-box ul li img:hover {
  transform: scale(1.1);
}
.news-w .news-box ul li .text {
  padding: 30px;
}
.news-w .news-box ul li .text p {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.news-w .news-box ul li .text span {
  font-size: 15px;
  color: #808080;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-w .news-box ul li .text .btm {
  margin-top: 25px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px #808080 dotted;
}
.news-w .news-box ul li .text .btm em {
  font-size: 14px;
  color: #fff;
}
.news-w .news-box ul li .text .btm i {
  font-size: 14px;
  color: #fff;
}
.news-w .news-box ul li .text .btm i:hover {
  text-decoration: underline;
}
.news-w .news-box ul li .text a {
  font-size: 15px;
  display: flex;
}
.news-w .news-box ul li .text a i {
  margin: 0 0 0 auto;
}
.footer {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5);
}
.footer a {
  color: rgba(0, 0, 0, 0.5);
}
.footer a:hover {
  color: #222;
}
.footer h5 {
  color: #222;
}
.footer .page {
  max-width: 1400px;
}
.footer .page .top {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .page .top a {
  margin: 0 20px;
}
.footer .page .top a i {
  font-size: 32px;
}
.footer .page .main {
  padding: 50px 100px;
  border-top: 1px solid #aaa;
}
.footer .page .main h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.footer .page .main .f-nav {
  display: flex;
  justify-content: space-between;
}
.footer .page .main .f-nav ul {
  flex: auto;
  text-align: center;
}
.footer .page .main .f-nav ul li {
  line-height: 36px;
}
.footer .page .main .f-nav ul li a {
  font-size: 15px;
}
.footer .page .box-info {
  border-top: 1px solid #aaa;
  padding: 30px 100px;
}
.footer .page .box-info ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .page .box-info ul li {
  display: flex;
  align-items: center;
}
.footer .page .box-info ul li * {
  color: #222;
}
.footer .page .box-info ul li i {
  font-size: 20px;
  margin-right: 5px;
}
.footer .page .box-info ul li p {
  font-size: 18px;
}
.footer .page .btm {
  border-top: 1px solid #aaa;
  padding: 25px 0 40px;
  display: flex;
  justify-content: center;
}
.footer .page .btm .rg {
  display: flex;
  text-align: right;
  justify-content: center;
}
.footer .page .btm .rg p {
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
  transform: translateY(5px);
}
#clickTop {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 26px;
  text-align: center;
  line-height: 55px;
  color: #fff;
  opacity: 0.4;
  background-color: rgba(0, 0, 0, 0.75);
}
#clickTop:hover {
  opacity: 1;
}
