@charset "UTF-8";
@import url("./icon.css");
@font-face {
  font-family: "sy";
  src: url("../fonts/SourceHanSansCN-Normal.ttf");
}
/* clear */
body {
  font-family: sy, Arial;
  color: #333;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body ul,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
  padding: 0;
  margin: 0;
}

body li {
  list-style: none;
}

body a {
  text-decoration: none;
}

body a:hover {
  text-decoration: none;
}

.overlay-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.overlay {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.overlay .dialog {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 2px;
  box-sizing: border-box;
  width: 70%;
  padding: 15px;
  transform: translateY(-20%);
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.overlay .dialog.active {
  transform: translateY(0);
}

.overlay .dialog .iconfont {
  position: absolute;
  right: -30px;
  top: -38px;
  height: 40px;
  color: #fff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.overlay .dialog .dialog-video {
  display: block;
  width: 100%;
}


/* mixin */
:root {
  --theme-color: #e60012;
  --text-color: #333333;
  --white: #ffffff;
  --content-font-size: 14px;
  --content-line-height: 30px;
  --index-tb-gap: 100px;
  --index-lr-gap: 100px;
  --inside-gap-t: 90px;
}

.container {
  max-width: 1400px;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.arial {
  font-family: Arial !important;
  word-wrap: break-word;
  word-break: break-all;
}

/* 全局样式 */
.global-nav {
  width: 100%;
  z-index: 500;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0;
  height: 120px;
}

.global-nav .container-fluid {
  background-color: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  padding: 12px 40px;
  align-items: unset;
  justify-content: center;
}

.global-nav .container-fluid .navbar-brand {
  height: 100%;
  display: none;
  padding: 0;
}

.global-nav .container-fluid .navbar-brand img {
  height: 100%;
}

.global-nav .container-fluid .navbar-brand .img-n {
  display: block;
}

.global-nav .container-fluid .navbar-brand .img-t {
  display: none;
}

.global-nav .container-fluid .navbar-box {
  display: flex;
  height: 100%;
}

.global-nav .container-fluid .navbar-box .navbar-toggler {
  align-self: center;
  margin: 0;
  padding: 9px 0;
  cursor: pointer;
  z-index: 999;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon {
  display: block;
  height: 3px;
  border-radius: 1px;
  width: 28px;
  background-color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(1) {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(2) {
  display: none;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(3) {
  margin-top: -3px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
  height: 2px;
  width: 28px;
  background-color: var(--text-color);
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
  display: block;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2), .global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
  margin-top: 5px;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1), .global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.global-nav .container-fluid .navbar-box .navbar-collapse {
  align-items: unset;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
  min-width: 150px;
  margin-left: 10px;
  position: relative;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li:first-child {
  margin-left: 0;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-size: 18px;
  line-height: 38px;
  position: relative;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover, .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
  color: var(--theme-color);
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover::before, .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .iconfont {
  cursor: pointer;
  padding: 0 10px;
  font-size: 16px;
  color: var(--white);
  line-height: 1;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .iconfont:hover {
  color: var(--theme-color);
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
  display: none;
  overflow: hidden;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -ms-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item {
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 10px;
  color: var(--white);
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item:hover {
  color: var(--theme-color);
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item:last-child {
  margin-bottom: 0;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand {
  padding: 0;
  margin: 0 60px;
  display: flex;
  align-items: center;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand img {
  width: 100%;
  height: 100%;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand .img-n {
  display: block;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand .img-t {
  display: none;
}

.hover_img {
  overflow: hidden;
}

.hover_img img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.hover_img:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.global-learn-more, .newsItem_more, .index_cultural .cultural_content .cultural_more, .index_news .top .title h3 .news_more {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.global-learn-more .iconfont, .newsItem_more .iconfont, .index_cultural .cultural_content .cultural_more .iconfont, .index_news .top .title h3 .news_more .iconfont {
  display: inline-block;
  font-size: 14px;
  padding-left: 6px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.global-learn-more:hover, .newsItem_more:hover, .index_cultural .cultural_content .cultural_more:hover, .index_news .top .title h3 .news_more:hover {
  color: var(--theme-color);
}

.global-learn-more:hover .iconfont, .newsItem_more:hover .iconfont, .index_cultural .cultural_content .cultural_more:hover .iconfont, .index_news .top .title h3 .news_more:hover .iconfont {
  transform: translateX(8px);
}

.global-footer .footer_content {
  padding: 80px 0 25px;
  width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.global-footer .footer_content .footer_contact .f_contact_title {
  font-weight: 700;
  padding: 40px 0 20px;
  line-height: 1;
}

.global-footer .footer_content .footer_contact .contact_item {
  font-size: 14px;
  line-height: 30px;
  color: #666666;
}

.global-footer .footer_content .footer_main {
  display: flex;
  justify-content: space-between;
}

.global-footer .footer_content .footer_main .main_item {
  display: flex;
  flex-direction: column;
  padding-right: 80px;
}

.global-footer .footer_content .footer_main .main_item:last-child {
  padding-right: 0;
}

.global-footer .footer_content .footer_main .main_item .link_title {
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 34px;
  line-height: 1;
}

.global-footer .footer_content .footer_main .main_item .item_link {
  font-size: 14px;
  color: #999999;
  margin-bottom: 16px;
}

.global-footer .footer_content .footer_main .main_item a:hover {
  color: var(--theme-color);
}

.global-footer .footer_content .footer_attention .attention_title {
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 27px;
  line-height: 1;
}

.global-footer .footer_content .footer_attention .attention_text {
  font-size: 14px;
  line-height: 24px;
  max-width: 270px;
  color: #666666;
}

.global-footer .footer_content .footer_attention .attention_code {
  display: flex;
  margin: 25px 0 6px;
}

.global-footer .footer_content .footer_attention .attention_code .iconfont {
  margin-right: 20px;
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #dddddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-footer .footer_content .footer_attention .attention_code .iconfont img {
  display: none;
}

.global-footer .footer_content .footer_attention .attention_code .iconfont::before {
  font-size: 30px;
  color: var(--white);
}

.global-footer .footer_content .footer_attention .attention_code .iconfont:last-child {
  margin-right: 0;
}

.global-footer .footer_content .footer_attention .attention_code .iconfont:hover {
  background-color: #bbb;
}

.global-footer .footer_content .footer_attention .attention_code .weixin {
  cursor: pointer;
  position: relative;
}

.global-footer .footer_content .footer_attention .attention_code .weixin img {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -4px);
  width: 150px;
}

.global-footer .footer_content .footer_attention .attention_code .weixin:hover img {
  display: block;
}

.global-footer .footer_copyright {
  font-size: 14px;
  color: var(--white);
  background-color: #666666;
  line-height: 1;
  padding: 28px 0 31px;
  text-align: center;
}

.global-footer .footer_copyright a {
  color: var(--white);
}

.global-footer .footer_copyright a:hover {
  color: var(--theme-color);
}

.global_banner {
  padding-top: 560px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.global_banner .container {
  margin-bottom: 50px;
  transform: translateY(50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.global_banner .global_tags {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.global_banner .global_tags a {
  display: inline-block;
  height: 100px;
  line-height: 100px;
  font-size: 18px;
  color: var(--text-color);
  margin: 0 50px;
}

.global_banner .global_tags a:hover, .global_banner .global_tags a.active {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.newsItem_more {
  padding-top: 10px;
  color: var(--theme-color);
  border-top: 1px solid var(--theme-color);
  display: inline-block;
  font-size: 14px;
}

.global-pagination {
  padding: 60px 0 var(--index-tb-gap);
  display: flex;
  justify-content: center;
  border-bottom: 2px solid var(--theme-color);
}

.global-pagination a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  text-align: center;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  margin: 0 10px;
}

.global-pagination a.active, .global-pagination a:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.global-pagination a.btn {
  color: var(--text-color);
  padding: 0;
  line-height: 38px;
  width: auto;
  border: none;
}

.global-pagination a.btn:hover {
  color: var(--theme-color);
  background-color: transparent;
}

/* 首页样式 */
.index_banner img,
.index_banner video {
  width: 100%;
}

.index_banner .index-banner-pagination {
  left: 160px;
  bottom: 20px;
  width: auto;
  line-height: 8px;
}

.index_banner .index-banner-pagination .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 1;
}

.index_banner .index-banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 18px;
  background-color: var(--theme-color);
  border-radius: 4px;
}

.index_merit {
  padding: 100px 0 100px 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index_merit .merit-swiper .swiper-slide .imgBox img {
  width: 100%;
}

.index_merit .merit-swiper .swiper-slide .title {
  padding: 60px 0 58px;
}

.index_merit .merit-swiper .swiper-slide .title h3 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 24px;
  line-height: 1;
}

.index_merit .merit-swiper .swiper-slide .title h3 img {
  height: 100%;
  padding-left: 40px;
}

.index_merit .merit-swiper .swiper-slide .title h4 {
  font-size: 18px;
  color: #666666;
  line-height: 1;
}

.index_merit .merit-swiper .swiper-slide .number {
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  transform: scale(1, 1.1);
  font-family: 'Helvetica';
  color: #fff;
  text-shadow: -1px -1px 0 #666, 1px -1px 0 #666, -1px 1px 0 #666, 1px 1px 0 #666;
}

.index_merit .merit-swiper .swiper-slide:nth-child(2n+1) {
  display: flex;
  flex-direction: column-reverse;
}

.index_cultural {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index_cultural .cultural_content {
  color: var(--white);
  text-align: center;
  padding: 344px 0 372px;
}

.index_cultural .cultural_content h3 {
  font-size: 48px;
  font-weight: 700;
  padding-bottom: 32px;
  line-height: 1;
}

.index_cultural .cultural_content h4 {
  font-size: 24px;
  padding-bottom: 62px;
  line-height: 1;
}

.index_cultural .cultural_content .cultural_more {
  line-height: 1;
  color: var(--white);
}

.index_medal {
  display: block;
}

.index_medal img {
  width: 100%;
}

.index_news {
  width: 1600px;
  margin: 0 auto;
  padding: 96px 0 100px;
}

.index_news .top .title h3 {
  width: 100%;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 13px;
}

.index_news .top .title h3 span {
  display: inline-block;
  width: 269px;
}

.index_news .top .title h3 img {
  margin-top: 7px;
  vertical-align: top;
}

.index_news .top .title h3 .news_more {
  color: var(--theme-color);
  vertical-align: top;
  float: right;
  margin-top: 9px;
}

.index_news .top .title h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.index_news .news_list {
  margin: 0 -40px;
  padding-top: 45px;
}

.index_news .news_list .news_item {
  padding: 0 40px;
}

.index_news .news_list .news_item .imgBox img {
  width: 100%;
}

.index_news .news_list .news_item .time {
  color: #999;
  font-weight: 700;
  padding: 29px 0 15px;
  line-height: 1;
}

.index_news .news_list .news_item .text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_news .news_list .news_item:hover .imgBox {
  overflow: hidden;
}

.index_news .news_list .news_item:hover .imgBox img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.index_news .news_list .news_item:hover .text {
  color: var(--theme-color);
}

.index_news .news_list .news_item:hover .newsItem_more .iconfont {
  transform: translateX(8px);
}

.index_contact {
  position: relative;
}

.index_contact .contact_map {
  width: 100%;
  height: 635px;
}

.index_contact .contact_map .amap-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
}

.index_contact .contact_map .amap-icon img {
  width: 77px;
}

.index_contact .contact_content {
  z-index: 1;
  background-color: var(--white);
  padding: 60px;
  position: absolute;
  top: 50%;
  left: 13.4375%;
  transform: translateY(-50%);
  padding: 50px;
}

.index_contact .contact_content .title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 5px;
}

.index_contact .contact_content .message {
  width: 340px;
  color: #999999;
  padding-top: 28px;
  border-bottom: 1px solid #e5e5e5;
}

.index_contact .contact_content .message .iconfont {
  font-size: 24px;
  color: #bebebe;
}

.index_contact .contact_content .message p {
  font-size: 14px;
  line-height: 18px;
  padding: 8px 0 18px;
}

.index_contact .contact_content .message:last-child {
  border-bottom: none;
}

.index_contact .contact_content .message:last-child p {
  padding-bottom: 0;
}

/* 产品 */
.product_content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: var(--index-tb-gap);
}

.product_content .product_nav {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0 30px;
}

.product_content .product_nav .nav_item {
  min-width: 170px;
  height: 60px;
  border-radius: 5px;
  padding: 9px;
  font-size: 18px;
  background: #fff;
  margin-right: 35px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.product_content .product_nav .nav_item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url("/static/modules/cms/images/product_nav.png") no-repeat center/100% 100%;
}

.product_content .product_nav .nav_item.active {
  color: var(--theme-color);
}

.product_content .product_nav .nav_item.active span {
  background: url("/static/modules/cms/images/product_nav_s.png") no-repeat center/100% 100%;
}

.product_content .product_main {
  width: 1450px;
  margin: 0 auto;
  background: url("/static/modules/cms/images/product_main_bg.jpg") no-repeat top/100% 100%;
  padding: 25px;
  position: relative;
}

.product_content .product_main .product_swiper {
  width: 100%;
}

.product_content .product_main .product_swiper .swiper-slide {
  margin: 0;
}

.product_content .product_main .product_swiper .main_l {
  padding: 100px 57px 102px;
}

.product_content .product_main .product_swiper .main_l .imgBox {
  height: 438px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
}

.product_content .product_main .product_swiper .main_l .imgBox img {
  height: 100%;
}

.product_content .product_main .product_swiper .main_r {
  padding: 0 57px 33px 0;
}

.product_content .product_main .product_swiper .main_r .title {
  margin-top: 110px;
  margin-bottom: 45px;
}

.product_content .product_main .product_swiper .main_r .title h3 {
  font-weight: 900;
  font-size: 35px;
  line-height: 1;
  margin-bottom: 28px;
  display: flex;
  color: var(--theme-color);
}

.product_content .product_main .product_swiper .main_r .title h3 a {
  font-size: 14px;
  color: #fff;
  width: 120px;
  display: inline-block;
  line-height: 35px;
  text-align: center;
  margin-left: 30px;
  background: linear-gradient(to left, #ead3ad, #eedec5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_content .product_main .product_swiper .main_r .title h3 a.none {
  display: none;
}

.product_content .product_main .product_swiper .main_r .title h3 a span {
  font-size: 12px;
  margin-left: 10px;
}

.product_content .product_main .product_swiper .main_r .title h4 {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.product_content .product_main .product_swiper .main_r .text {
  font-size: 16px;
  line-height: 30px;
}

.product_content .product_main .dot_swiper {
  width: calc(150px * 4 + 80px);
  position: absolute;
  bottom: 58px;
  left: 50%;
  margin: 0;
}

.product_content .product_main .dot_swiper .swiper-slide {
  width: 150px !important;
    height: 113px;
    margin: 0 10px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}

.product_content .product_main .dot_swiper .swiper-slide.swiper-slide-thumb-active {
  background: url("/static/modules/cms/images/product_dot_bg.png") no-repeat center/100%;
}

.product_content .product_main .dot_swiper .swiper-slide img {
  height: 100%;
}

/* 工艺 */
.craft {
  background-color: #faf5eb;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  width: 100%;
  padding-bottom: var(--index-tb-gap);
  border-bottom: 2px solid var(--theme-color);
  padding-top: 1170px;
}

.craft .container {
  background-repeat: repeat-y;
  background-size: 100% 100%;
  background-position: top;
}

.craft .swiper-wrapper {
  display: block;
}

.craft .craft_item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.craft .craft_item:nth-child(2n) {
  flex-direction: row-reverse;
}

.craft .craft_item .item_l {
  width: 46%;
}

.craft .craft_item .item_l .title {
  width: 225px;
  margin-bottom: 13px;
}

.craft .craft_item .item_l .title img {
  width: 100%;
}

.craft .craft_item .item_l .text {
  font-size: 16px;
  line-height: 30px;
}

.craft .craft_item .item_l .text span {
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.craft .craft_item .item_l .text span img {
  width: 20px;
  margin-right: 6px;
}

.craft .craft_item .item_l .text span.num img {
  width: 25px;
}

.craft .craft_item .item_r {
  width: 54%;
}

.craft .craft_item .item_r img {
  width: 100%;
}

/*  */
.activity_recommend {
  margin: 100px auto 70px;
}

.activity_recommend .row {
  margin: 0 -16px;
}

.activity_recommend .recommend_item {
  cursor: pointer;
  padding: 0 16px;
  margin-bottom: 30px;
}

.activity_recommend .recommend_item .imgBox {
  width: 100%;
}

.activity_recommend .recommend_item .imgBox img {
  width: 100%;
}

.activity_recommend .recommend_item .text {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 30px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--text-color);
  background-color: #f9f9f9;
}

.activity_recommend .recommend_item .text span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.activity_recommend .recommend_item:hover .imgBox {
  overflow: hidden;
}

.activity_recommend .recommend_item:hover .imgBox img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.activity_recommend .recommend_item:hover .text {
  color: var(--theme-color);
}

.activity_list .activity_item {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
  color: var(--text-color);
  border-bottom: 1px solid #f0f1f0;
}

.activity_list .activity_item:last-child {
  margin-bottom: 0;
}

.activity_list .activity_item:hover .imgBox {
  overflow: hidden;
}

.activity_list .activity_item:hover .imgBox img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.activity_list .activity_item:hover .title {
  color: var(--theme-color);
}

.activity_list .activity_item:hover .newsItem_more .iconfont {
  transform: translateX(8px);
}

.activity_list .activity_item .imgBox {
  width: 28.6%;
  flex-shrink: 0;
}

.activity_list .activity_item .imgBox img {
  width: 100%;
}

.activity_list .activity_item .content {
  padding-left: 40px;
}

.activity_list .activity_item .content .time {
  font-size: 16px;
  font-weight: 700;
  color: #999999;
  margin: 40px 0 30px;
}

.activity_list .activity_item .content .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.activity_list .activity_item .content .text {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-bottom: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.activity_detail {
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: top;
  overflow: hidden;
}

.activity_detail .top_message {
  margin: var(--inside-gap-t) 0 40px;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  display: flex;
  justify-content: space-between;
}

.activity_detail .top_message a {
  color: #999999;
}

.activity_detail .top_message a:hover {
  color: var(--theme-color);
}

.activity_detail .top_message .iconfont {
  color: #bcbcbc;
  margin-right: 12px;
}

.activity_detail .top_message .top_r {
  font-size: 18px;
}

.activity_detail .top_message .top_r .iconfont {
  font-size: 20px;
  margin-right: 12px;
}

.activity_detail .top_message .top_r:hover {
  color: var(--theme-color);
}

.activity_detail .top_message .top_r:hover .iconfont {
  color: var(--theme-color);
}

.activity_detail .detail_content {
  background-color: #fff;
  margin-bottom: 40px;
  padding: 90px;
}

.activity_detail .detail_content .title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
  font-weight: 700;
}

.activity_detail .detail_content .message {
  font-size: 14px;
  line-height: 24px;
  color: #999999;
  padding: 13px 0 14px;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  margin-bottom: 40px;
}

.activity_detail .detail_content .content {
  font-size: 14px;
  line-height: 24px;
}

.activity_detail .detail_content .content img {
  max-width: 100%;
  margin: 15px auto;
  display: block;
}

.activity_detail .detail_content .content video {
  width: 100%;
  margin: 15px auto;
}

.activity_detail .detail_footer {
  background-color: #fff;
  margin-bottom: 90px;
  padding: 19px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity_detail .detail_footer a {
  font-size: 16px;
  line-height: 36px;
  color: #999999;
}

.activity_detail .detail_footer a:hover {
  color: var(--theme-color);
}

.activity_detail .detail_footer .footer_l {
  padding-right: 5px;
}

.activity_detail .detail_footer .footer_l a {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.activity_detail .detail_footer .footer_r {
  flex-shrink: 0;
  font-size: 18px;
}

.activity_detail .detail_footer .footer_r .iconfont {
  font-size: 20px;
  margin-right: 10px;
}

.museum .museum_list {
  margin: var(--index-tb-gap) -20px -40px;
}

.museum .museum_list .museum_item {
  margin-bottom: 40px;
  padding: 0 20px;
}

.museum .museum_list .museum_item .imgBox img {
  width: 100%;
}

.museum .museum_list .museum_item .content {
  padding: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  display: flex;
  align-items: center;
}

.museum .museum_list .museum_item .content .title {
  padding-left: 14px;
  position: relative;
}

.museum .museum_list .museum_item .content .title h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}

.museum .museum_list .museum_item .content .title h4 {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.museum .museum_list .museum_item .content .title::before {
  content: '';
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.museum .museum_list .museum_item:hover .imgBox {
  overflow: hidden;
}

.museum .museum_list .museum_item:hover .imgBox img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.contact_title {
  margin-top: var(--inside-gap-t);
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.contact_us {
  padding: 0 0 var(--inside-gap-t);
  border-bottom: 2px solid var(--theme-color);
}

.contact_us .contact_us_message {
  background-color: #f7f7f7;
  padding: calc(var(--inside-gap-t) - 2px) 0 var(--inside-gap-t);
  border-top: 2px solid var(--theme-color);
}

.contact_us .contact_us_message .message_item {
  padding: 0 5px;
  text-align: center;
  position: relative;
}

.contact_us .contact_us_message .message_item .iconfont {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--theme-color);
  font-size: 40px;
  color: #fff;
  margin: 0 auto 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_us .contact_us_message .message_item .label {
  margin-bottom: 16px;
}

.contact_us .contact_us_message .message_item .text,
.contact_us .contact_us_message .message_item .label {
  font-size: 16px;
  line-height: 20px;
}

.contact_us .contact_us_message .message_item:last-child::before {
  display: none;
}

.contact_us .contact_us_message .message_item::before {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  background-color: #dddddd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_us .follow_us {
  margin: 40px 0 0;
}

.contact_us .follow_us .follow_us_l {
  padding: 60px;
  background-color: #f7f7f7;
}

.contact_us .follow_us .follow_us_l .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
}

.contact_us .follow_us .follow_us_l .row {
  margin: 0 -15px -30px;
}

.contact_us .follow_us .follow_us_l .qrcode {
  padding: 0 15px;
  margin-bottom: 30px;
}

.contact_us .follow_us .follow_us_l .qrcode img {
  width: 100%;
}

.contact_us .follow_us .follow_us_l .qrcode .text {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
  margin-top: 4px;
  text-align: center;
}

.contact_us .follow_us .follow_us_r {
  padding: 0 0 0 40px;
}

.contact_us .follow_us .follow_us_r #contact_map {
  width: 100%;
  height: 100%;
}

.contact_us .follow_us .follow_us_r #contact_map .amap-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(230, 0, 18, 0.14);
}

.contact_us .follow_us .follow_us_r #contact_map .amap-icon img {
  width: 77px;
}

.recruit {
  overflow: hidden;
}

.recruit .recruit-content {
  background-color: #fff;
  overflow: initial;
}

.recruit .recruit-content .recruit-item {
  margin-bottom: 20px;
}

.recruit .recruit-content .recruit-item:last-child {
  margin-bottom: 0;
}

.recruit .recruit-content .recruit-item .item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  background-color: #f7f7f7;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.recruit .recruit-content .recruit-item .item-header span:last-child {
  cursor: pointer;
}

.recruit .recruit-content .recruit-item .item-header.active {
  background-color: var(--theme-color);
  color: #fff;
}

.recruit .recruit-content .recruit-item .item-content {
  height: 0;
  opacity: 0;
  box-shadow: 0 0 7px 4px rgba(232, 232, 232, 0.46);
  padding: 35px 40px 40px;
  box-sizing: content-box;
}

.recruit .recruit-content .recruit-item .item-content .text,
.recruit .recruit-content .recruit-item .item-content .message {
  font-size: 14px;
  line-height: 30px;
}

.recruit .recruit-content .recruit-item .item-content .text {
  margin-bottom: 30px;
}

.recruit .recruit-content .recruit-item .item-content .text span {
  font-weight: 700;
}

.recruit .recruit-content .recruit-item .item-content .message {
  color: var(--theme-color);
  border-top: 1px solid #dddddd;
  padding-top: 30px;
  font-weight: 700;
}

.leave_word {
  background-color: #f7f7f7;
  padding: var(--inside-gap-t) 0;
}

.leave_word .leave_container {
  overflow: hidden;
  background-color: #ffffff;
  padding: 0 var(--inside-gap-t) var(--inside-gap-t);
}

.leave_word .leave_container .contact_form {
  margin: 0 -20px 60px;
}

.leave_word .leave_container .contact_form .form_item {
  padding: 0 20px;
  margin-bottom: 40px;
}

.leave_word .leave_container .contact_form .form_item .label {
  color: #666666;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
}

.leave_word .leave_container .contact_form .form_item .label span {
  color: var(--theme-color);
}

.leave_word .leave_container .contact_form .form_item input,
.leave_word .leave_container .contact_form .form_item textarea {
  width: 100%;
  height: 55px;
  background-color: #f7f7f7;
  border: none;
  padding: 5px 10px;
}

.leave_word .leave_container .contact_form .form_item input:focus,
.leave_word .leave_container .contact_form .form_item textarea:focus {
  outline: none;
}

.leave_word .leave_container .contact_form .form_item textarea {
  height: 120px;
  resize: none;
}

.leave_word .leave_container .contact_form .submit {
  width: 200px;
  height: 55px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 18px;
  border: none;
  margin: 0 20px;
}

.leave_word .leave_container .leave_message {
  border-top: 1px solid #dddddd;
}

.leave_word .leave_container .leave_message .message {
  padding-top: 30px;
  font-size: 24px;
  line-height: 54px;
  font-weight: 700;
  text-align: center;
}

.leave_word .leave_container .leave_message .message span {
  font-size: 30px;
  line-height: 1;
  color: var(--theme-color);
  display: block;
}

#intro, #develop, #honor {
  scroll-margin-top: 120px;
}

.swiper_btn {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.swiper_btn.swiper-button-next::after {
  transform: translateX(2px);
}

.swiper_btn.swiper-button-prev::after {
  transform: translateX(-2px);
}

.swiper_btn::after {
  color: #fff;
  font-size: 22px;
}

.swiper_btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.brand_intro {
  margin-bottom: var(--inside-gap-t);
}

.brand_intro .intro_content {
  margin: 0;
  padding-top: 10px;
}

.brand_intro .intro_content .content_l {
  padding: 0 60px 0 0;
}

.brand_intro .intro_content .content_l .origin {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 1px solid #bfbfbf;
  position: relative;
}

.brand_intro .intro_content .content_l .origin::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(2px);
}

.brand_intro .intro_content .content_l .origin .year {
  color: var(--theme-color);
  line-height: 1;
  margin-top: 10px;
}

.brand_intro .intro_content .content_l .origin .year span {
  font-size: 50px;
}

.brand_intro .intro_content .content_l .text {
  font-size: 14px;
  line-height: 30px;
  margin-top: 30px;
}

.brand_intro .intro_content .content_r {
  padding: 0;
}

.brand_intro .intro_content .content_r:hover {
  overflow: hidden;
}

.brand_intro .intro_content .content_r:hover img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.brand_intro .intro_content .content_r img {
  width: 100%;
}

.brand_develop {
  padding-bottom: var(--inside-gap-t);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.brand_develop .contact_title {
  color: #fff;
}

.brand_develop .develop_swiper {
  height: 510px;
  padding: 0 1px;
}

.brand_develop .develop_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brand_develop .develop_swiper .swiper-slide:nth-child(2n) {
  justify-content: flex-end;
}

.brand_develop .develop_swiper .swiper-slide .title {
  width: fit-content;
  font-size: 24px;
  line-height: 1;
  padding: 10px 12px;
  border: 1px solid #cfa972;
  color: #fff;
  margin-bottom: 16px;
}

.brand_develop .develop_swiper .swiper-slide .text {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.brand_honor {
  padding-bottom: var(--inside-gap-t);
  border-bottom: 2px solid var(--theme-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 1px;
}

.brand_honor .honor_content {
  margin: 0 -15px;
}

.brand_honor .honor_content .date_swiper {
  padding: 0 15px;
  height: 400px;
}

.brand_honor .honor_content .date_swiper .swiper-wrapper {
  flex-direction: row;
}

.brand_honor .honor_content .date_swiper .swiper-scrollbar {
  background-color: #f6e1c8;
  width: 2px;
  overflow: initial;
  right: 12px;
  height: 100%;
}

.brand_honor .honor_content .date_swiper .swiper-scrollbar .swiper-scrollbar-drag {
  width: 23px !important;
  left: -10px;
  background: url("/static/modules/cms/images/brand_honor_scrollbar_bg.png") no-repeat center/100%;
}

.brand_honor .honor_content .date_swiper .swiper-slide {
  padding: 0 15px;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26.5% !important;
  height: 180px;
  margin-right: 54px;
  margin-left: 0 !important;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: .5;
}

.brand_honor .honor_content .date_swiper .swiper-slide .year {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 20px;
}

.brand_honor .honor_content .date_swiper .swiper-slide .text {
  font-size: 14px;
  line-height: 22px;
}

.brand_honor .honor_content .date_swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.brand_honor .honor_content .honor_swiper {
  padding: 40px 15px 0;
}

.brand_honor .honor_content .honor_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
  width: 400px;
  margin-bottom: 50px;
}

.brand_honor .honor_content .honor_swiper .swiper-slide .imgBox img {
  width: 100%;
}

.brand_honor .honor_content .honor_swiper .swiper-slide .text {
  width: 400px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #666666;
}

.brand_honor .honor_content .honor_swiper .swiper-slide:hover .imgBox {
  overflow: hidden;
}

.brand_honor .honor_content .honor_swiper .swiper-slide:hover .imgBox img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.brand_honor .honor_content .honor_swiper .swiper_btn {
  background-color: #fff;
}

.brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-next {
  right: 15px;
}

.brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-prev {
  left: 15px;
}

.brand_honor .honor_content .honor_swiper .swiper_btn::after {
  color: #666666;
}

.brand_honor .honor_content .honor_swiper .swiper_btn:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1800px) {
  .index_news {
    width: 100%;
    padding: 96px var(--index-lr-gap) 100px;
  }
  .global-footer .footer_content {
    width: 100%;
    padding: 80px var(--index-lr-gap) 25px;
  }
  .craft {
    padding-top: 980px;
  }
}

@media (max-width: 1600px) {
  :root {
    --index-tb-gap: 90px;
    --index-lr-gap: 80px;
    --inside-gap-t: 80px;
  }
  .container {
    max-width: 100%;
    padding-left: var(--index-lr-gap);
    padding-right: var(--index-lr-gap);
  }
  #intro, #develop, #honor {
    scroll-margin-top: 100px;
  }
  .global-nav {
    height: 100px;
  }
  .global-nav .container-fluid {
    height: 100px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    min-width: 100px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 16px;
  }
  .global_banner {
    padding-top: 500px;
  }
  .global_banner .container {
    margin-bottom: 45px;
  }
  .global_banner .global_tags a {
    height: 90px;
    line-height: 90px;
  }
  .global-footer .footer_content {
    padding: 70px var(--index-lr-gap) 25px;
  }
  .global-footer .footer_content .footer_main .main_item {
    padding-right: 60px;
  }
  .global-pagination {
    padding: 60px 0 90px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 50px 0 48px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 34px;
    padding-bottom: 20px;
  }
  .index_merit .merit-swiper .swiper-slide .title h4 {
    font-size: 16px;
  }
  .index_cultural .cultural_content {
    padding: 324px 0 352px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 44px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 22px;
  }
  .index_news {
    padding: 86px var(--index-lr-gap) 90px;
  }
  .index_news .top .title h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 13px;
  }
  .index_news .top .title h3 span {
    width: 269px;
  }
  .index_news .top .title h3 img {
    margin-top: 9px;
    height: 28px;
  }
  .index_news .top .title h4 {
    line-height: 22px;
  }
  .index_news .news_list .news_item .text {
    font-size: 18px;
    line-height: 28px;
  }
  .product_content {
    padding: 0 var(--index-lr-gap) var(--index-tb-gap);
  }
  .product_content .product_nav {
    padding: 60px 0 30px;
  }
  .product_content .product_nav .nav_item {
    min-width: 140px;
    height: 55px;
    padding: 9px;
    font-size: 16px;
    margin-right: 35px;
    margin-bottom: 10px;
  }
  .product_content .product_main {
    width: auto;
    padding: 25px;
  }
  .product_content .product_main .product_swiper .main_l {
    padding: 90px 50px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 400px;
  }
  .product_content .product_main .product_swiper .main_r {
    padding: 0 45px 25px 0;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 100px;
    margin-bottom: 45px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 14px;
    width: 120px;
    line-height: 35px;
    margin-left: 30px;
    border-radius: 18px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    font-size: 12px;
    margin-left: 10px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 18px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 16px;
    line-height: 30px;
  }
  .product_content .product_main .dot_swiper {
    width: 50%;
    bottom: 8.4%;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 130px !important;
    height: 113px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 900px;
  }
  .activity_recommend {
    margin: 90px auto 60px;
  }
  .activity_list .activity_item .imgBox {
    width: 32%;
  }
  .activity_detail .top_message .top_r {
    font-size: 16px;
  }
  .activity_detail .top_message .top_r .iconfont {
    font-size: 18px;
  }
  .activity_detail .detail_content {
    padding: 80px;
  }
  .activity_detail .detail_content .title {
    font-size: 28px;
    line-height: 38px;
  }
  .activity_detail .detail_footer {
    margin-bottom: 80px;
    padding: 16px 80px;
  }
  .activity_detail .detail_footer a {
    font-size: 14px;
    line-height: 32px;
  }
  .activity_detail .detail_footer .footer_r {
    font-size: 16px;
  }
  .activity_detail .detail_footer .footer_r .iconfont {
    font-size: 18px;
  }
  .museum .museum_list .museum_item .content .title h3 {
    font-size: 18px;
  }
  .contact_title {
    font-size: 28px;
    line-height: 36px;
  }
  .contact_us .follow_us .follow_us_l .title {
    font-size: 22px;
    line-height: 26px;
  }
  .brand_intro .intro_content .content_l .origin .year span {
    font-size: 45px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    margin-right: 40px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .year {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .text {
    line-height: 20px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    margin-bottom: 40px;
  }
}

@media (max-width: 1400px) {
  :root {
    --index-lr-gap: 60px;
    --index-tb-gap: 80px;
    --inside-gap-t: 70px;
  }
  .container.index_container {
    padding-left: var(--index-lr-gap);
    padding-right: var(--index-lr-gap);
  }
  #intro, #develop, #honor {
    scroll-margin-top: 80px;
  }
  .global-nav {
    height: 80px;
  }
  .global-nav .container-fluid {
    padding: 6px 40px;
    height: 80px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    min-width: 80px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    top: calc(100% + 6px);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 14px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    bottom: 20px;
  }
  .global_banner {
    padding-top: 440px;
  }
  .global_banner .container {
    margin-bottom: 40px;
  }
  .global_banner .global_tags a {
    height: 80px;
    line-height: 80px;
    font-size: 16px;
    margin: 0 40px;
  }
  .global-footer .footer_content {
    padding: 70px var(--index-lr-gap) 25px;
  }
  .global-footer .footer_content .footer_contact .f_contact_title {
    padding: 35px 0 18px;
    font-size: 14px;
  }
  .global-footer .footer_content .footer_contact .contact_item {
    font-size: 12px;
    line-height: 28px;
  }
  .global-footer .footer_content .footer_main .main_item {
    padding-right: 50px;
  }
  .global-footer .footer_content .footer_main .main_item .link_title {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .global-footer .footer_content .footer_main .main_item .item_link {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .global-footer .footer_content .footer_attention .attention_title {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .global-footer .footer_content .footer_attention .attention_text {
    font-size: 12px;
    max-width: 220px;
    line-height: 22px;
  }
  .global-footer .footer_content .footer_attention .attention_code {
    margin: 20px 0 6px;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont {
    margin-right: 15px;
    width: 40px;
    height: 40px;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont::before {
    font-size: 24px;
  }
  .global-footer .footer_copyright {
    font-size: 12px;
    padding: 24px 0 27px;
  }
  .global-pagination {
    padding: 50px 0 80px;
  }
  .index_banner .index-banner-pagination {
    left: 140px;
  }
  .index_merit {
    padding: 80px 0 80px 140px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 50px 0 48px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 32px;
    padding-bottom: 16px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 img {
    padding-left: 30px;
  }
  .index_merit .merit-swiper .swiper-slide .title h4 {
    font-size: 16px;
  }
  .index_merit .merit-swiper .swiper-slide .number {
    font-size: 55px;
    line-height: 60px;
    transform: scale(1, 1.1);
  }
  .index_cultural .cultural_content {
    padding: 244px 0 272px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 44px;
    padding-bottom: 30px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 22px;
    padding-bottom: 62px;
  }
  .index_news {
    padding: 76px var(--index-lr-gap) 80px;
  }
  .index_news .top .title h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .index_news .top .title img {
    margin-left: 10px;
  }
  .index_news .news_list {
    padding-top: 45px;
  }
  .index_news .news_list .news_item .text {
    font-size: 17px;
  }
  .index_contact .contact_map {
    height: 600px;
  }
  .index_contact .contact_map .amap-icon img {
    width: 77px;
  }
  .index_contact .contact_content {
    padding: 60px;
    left: 13.4375%;
    padding: 50px;
  }
  .index_contact .contact_content .title {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .index_contact .contact_content .message {
    width: 340px;
    padding-top: 28px;
  }
  .index_contact .contact_content .message .iconfont {
    font-size: 24px;
  }
  .index_contact .contact_content .message p {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 0 18px;
  }
  .product_content .product_nav {
    padding: 60px 0 30px;
  }
  .product_content .product_nav .nav_item {
    min-width: 140px;
    height: 55px;
    padding: 9px;
    font-size: 16px;
    margin-right: 35px;
    margin-bottom: 10px;
  }
  .product_content .product_main {
    padding: 25px;
  }
  .product_content .product_main .product_swiper .main_l {
    padding: 70px 40px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 380px;
  }
  .product_content .product_main .product_swiper .main_r {
    padding: 0 30px 25px 0;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 100px;
    margin-bottom: 38px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 14px;
    width: 120px;
    line-height: 35px;
    margin-left: 30px;
    border-radius: 18px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    font-size: 12px;
    margin-left: 10px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 16px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 14px;
    line-height: 28px;
  }
  .product_content .product_main .dot_swiper {
    width: 50%;
    bottom: 8.4%;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 20% !important;
    height: 100px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 760px;
  }
  .craft .swiper-wrapper {
    display: block;
  }
  .craft .craft_item .item_l {
    width: 46%;
  }
  .craft .craft_item .item_l .title {
    width: 180px;
    margin-bottom: 13px;
  }
  .craft .craft_item .item_l .text {
    font-size: 16px;
    line-height: 30px;
  }
  .craft .craft_item .item_l .text span {
    font-size: 18px;
  }
  .craft .craft_item .item_r {
    width: 54%;
  }
  .activity_recommend {
    margin: 80px auto 50px;
  }
  .activity_recommend .recommend_item .text {
    font-size: 18px;
    padding: 16px 25px;
  }
  .activity_list .activity_item .imgBox {
    width: 32%;
  }
  .activity_list .activity_item .content .time {
    font-size: 16px;
    margin: 30px 0 20px;
  }
  .activity_list .activity_item .content .title {
    font-size: 22px;
    line-height: 28px;
  }
  .activity_list .activity_item .content .text {
    margin-bottom: 46px;
  }
  .activity_detail .detail_content {
    padding: 70px;
  }
  .activity_detail .detail_content .title {
    font-size: 26px;
    line-height: 34px;
  }
  .activity_detail .detail_footer {
    margin-bottom: 70px;
    padding: 16px 70px;
  }
  .museum .museum_list {
    margin: var(--index-tb-gap) -15px -30px;
  }
  .museum .museum_list .museum_item {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .contact_us .contact_us_message .message_item .iconfont {
    width: 76px;
    height: 76px;
    font-size: 38px;
  }
  .contact_us .contact_us_message .message_item .label {
    margin-bottom: 10px;
  }
  .contact_us .contact_us_message .message_item .text,
  .contact_us .contact_us_message .message_item .label {
    font-size: 15px;
    line-height: 18px;
  }
  .contact_us .follow_us .follow_us_l {
    padding: 50px;
  }
  .contact_us .follow_us .follow_us_l #contact_map .amap-icon img {
    width: 77px;
  }
  .recruit .recruit-content .recruit-item .item-header {
    padding: 0 30px;
    height: 70px;
  }
  .recruit .recruit-content .recruit-item .item-content {
    padding: 25px 30px 30px;
  }
  .recruit .recruit-content .recruit-item .item-content .text {
    margin-bottom: 25px;
  }
  .recruit .recruit-content .recruit-item .item-content .message {
    padding-top: 25px;
  }
  .leave_word .leave_container .leave_message .message {
    font-size: 22px;
    line-height: 50px;
  }
  .leave_word .leave_container .leave_message .message span {
    font-size: 28px;
  }
  .brand_intro .intro_content .content_l {
    padding-right: 50px;
  }
  .brand_intro .intro_content .content_l .origin {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .brand_intro .intro_content .content_l .origin .year span {
    font-size: 40px;
  }
  .brand_intro .intro_content .content_l .text {
    line-height: 28px;
    margin-top: 20px;
  }
  .brand_intro .intro_content .content_r {
    display: flex;
    align-items: center;
  }
  .brand_develop .develop_swiper {
    height: 490px;
  }
  .brand_develop .develop_swiper .swiper-slide .title {
    font-size: 22px;
    padding: 8px 10px;
    margin-bottom: 14px;
  }
  .brand_honor .honor_content {
    margin: 0 -10px;
  }
  .brand_honor .honor_content .date_swiper {
    padding: 0 10px;
    height: 330px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    margin-right: 40px;
  }
  .brand_honor .honor_content .honor_swiper {
    padding: 30px 10px 0;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    width: 350px;
    margin-bottom: 30px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .text {
    width: 350px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-next {
    right: 10px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 1200px) {
  :root {
    --index-lr-gap: 50px;
    --inside-gap: 50px;
    --index-tb-gap: 70px;
    --inside-gap-t: 60px;
  }
  .container {
    padding-left: var(--index-lr-gap);
    padding-right: var(--index-lr-gap);
  }
  .global_banner {
    padding-top: 360px;
  }
  .global_banner .global_tags a {
    margin: 0 30px;
  }
  .global-learn-more, .newsItem_more, .index_cultural .cultural_content .cultural_more, .index_news .top .title h3 .news_more {
    font-size: 14px;
  }
  .global-footer .footer_content {
    padding: 60px var(--index-lr-gap) 20px;
  }
  .global-footer .footer_content .footer_contact img {
    width: 200px;
  }
  .global-footer .footer_content .footer_contact .f_contact_title {
    padding: 33px 0 16px;
  }
  .global-footer .footer_content .footer_main .main_item {
    padding-right: 25px;
  }
  .global-footer .footer_content .footer_main .main_item .link_title {
    margin-bottom: 28px;
  }
  .global-footer .footer_content .footer_attention .attention_title {
    margin-bottom: 23px;
  }
  .global-footer .footer_content .footer_attention .attention_text{
    max-width: 204px;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont {
    margin-right: 10px;
  }
  .global-footer .footer_copyright {
    padding: 22px 0 25px;
  }
  .newsItem_more {
    padding-top: 8px;
  }
  .global-pagination {
    padding: 50px 0 70px;
  }
  .index_banner .index-banner-pagination {
    left: 90px;
  }
  .index_merit {
    padding: 70px 0 70px 90px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 40px 0 38px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 30px;
    padding-bottom: 14px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 img {
    padding-left: 20px;
  }
  .index_merit .merit-swiper .swiper-slide .number {
    font-size: 50px;
    line-height: 50px;
  }
  .index_cultural .cultural_content {
    padding: 174px 0 192px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 40px;
    padding-bottom: 25px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 20px;
    padding-bottom: 52px;
  }
  .index_news {
    padding: 70px var(--index-lr-gap) 70px;
  }
  .index_news .top .title h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .index_news .top .title h3 span {
    width: 262px;
  }
  .index_news .top .title h4 {
    line-height: 20px;
  }
  .index_news .news_list {
    margin: 0 -30px;
    padding-top: 30px;
  }
  .index_news .news_list .news_item {
    padding: 0 30px;
  }
  .index_news .news_list .news_item .time {
    padding: 20px 0 8px;
    font-size: 14px;
  }
  .index_news .news_list .news_item .text {
    font-size: 16px;
    line-height: 26px;
  }
  .index_contact .contact_map {
    height: 550px;
  }
  .index_contact .contact_content {
    left: 10%;
    padding: 40px 30px;
  }
  .index_contact .contact_content .title {
    font-size: 20px;
  }
  .index_contact .contact_content .message {
    width: 300px;
    padding-top: 18px;
  }
  .index_contact .contact_content .message .iconfont {
    font-size: 22px;
  }
  .index_contact .contact_content .message p {
    padding: 6px 0 16px;
  }
  .product_content .product_nav {
    padding: 60px 0 30px;
  }
  .product_content .product_nav .nav_item {
    min-width: 120px;
    height: 50px;
    padding: 9px;
    font-size: 15px;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  .product_content .product_main {
    padding: 25px;
  }
  .product_content .product_main .product_swiper .main_l {
    padding: 60px 40px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 340px;
  }
  .product_content .product_main .product_swiper .main_r {
    padding: 0 30px 25px 0;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 80px;
    margin-bottom: 38px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 13px;
    width: 100px;
    line-height: 30px;
    margin-left: 30px;
    border-radius: 15px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    margin-left: 8px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 16px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 14px;
    line-height: 26px;
  }
  .product_content .product_main .dot_swiper {
    width: 50%;
    bottom: 8.4%;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 20% !important;
    height: 90px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 690px;
  }
  .craft .container {
    background-size: 100%;
  }
  .craft .swiper-wrapper {
    display: block;
  }
  .craft .craft_item {
    margin-bottom: 30px;
  }
  .craft .craft_item .item_l {
    width: 46%;
  }
  .craft .craft_item .item_l .title {
    width: 140px;
    margin-bottom: 13px;
  }
  .craft .craft_item .item_l .text {
    font-size: 14px;
    line-height: 26px;
  }
  .craft .craft_item .item_l .text span {
    font-size: 16px;
  }
  .craft .craft_item .item_r {
    width: 54%;
  }
  .activity_recommend {
    margin: 70px auto 50px;
  }
  .activity_recommend .row {
    margin: 0 -10px;
  }
  .activity_recommend .recommend_item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .activity_recommend .recommend_item .text {
    font-size: 16px;
    padding: 12px 20px;
  }
  .activity_list .activity_item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .activity_list .activity_item .imgBox {
    width: 34%;
  }
  .activity_list .activity_item .content {
    padding-left: 30px;
  }
  .activity_list .activity_item .content .time {
    font-size: 14px;
    margin: 22px 0 12px;
  }
  .activity_list .activity_item .content .title {
    font-size: 20px;
  }
  .activity_list .activity_item .content .text {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 38px;
  }
  .activity_detail .top_message {
    margin: 60px 0 30px;
    font-size: 12px;
    line-height: 20px;
  }
  .activity_detail .top_message .iconfont {
    margin-right: 10px;
  }
  .activity_detail .top_message .top_r {
    font-size: 14px;
  }
  .activity_detail .top_message .top_r .iconfont {
    font-size: 16px;
    margin-right: 10px;
  }
  .activity_detail .detail_content {
    margin-bottom: 30px;
    padding: 55px;
  }
  .activity_detail .detail_content .title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .activity_detail .detail_content .message {
    font-size: 12px;
    padding: 10px 0;
    margin-bottom: 30px;
  }
  .activity_detail .detail_footer {
    margin-bottom: 60px;
    padding: 12px 55px;
  }
  .activity_detail .detail_footer a {
    font-size: 12px;
    line-height: 30px;
  }
  .activity_detail .detail_footer .footer_r {
    font-size: 14px;
  }
  .activity_detail .detail_footer .footer_r .iconfont {
    font-size: 16px;
    margin-right: 10px;
  }
  .museum .museum_list .museum_item .content {
    padding: 15px;
  }
  .museum .museum_list .museum_item .content .title {
    padding-left: 12px;
  }
  .museum .museum_list .museum_item .content .title h3 {
    font-size: 16px;
  }
  .contact_title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .contact_us .contact_us_message .message_item .iconfont {
    width: 70px;
    height: 70px;
    font-size: 34px;
    margin: 0 auto 15px;
  }
  .contact_us .contact_us_message .message_item .text,
  .contact_us .contact_us_message .message_item .label {
    font-size: 14px;
    line-height: 16px;
  }
  .contact_us .follow_us {
    margin: 30px 0 0;
  }
  .contact_us .follow_us .follow_us_l {
    padding: 40px;
  }
  .contact_us .follow_us .follow_us_l .title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .contact_us .follow_us .follow_us_l .row {
    margin: 0 -10px -20px;
  }
  .contact_us .follow_us .follow_us_l .qrcode {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .contact_us .follow_us .follow_us_r {
    padding: 0 0 0 30px;
  }
  .recruit .recruit-content .recruit-item .item-header {
    font-size: 15px;
  }
  .recruit .recruit-content .recruit-item .item-content .text {
    margin-bottom: 20px;
  }
  .recruit .recruit-content .recruit-item .item-content .message {
    padding-top: 20px;
  }
  .leave_word .leave_container .contact_form {
    margin: 0 -15px 50px;
  }
  .leave_word .leave_container .contact_form .form_item {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .leave_word .leave_container .contact_form .form_item .label {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  .leave_word .leave_container .contact_form .form_item input,
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 50px;
    font-size: 14px;
  }
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 110px;
  }
  .leave_word .leave_container .contact_form .submit {
    width: 160px;
    height: 50px;
    font-size: 16px;
    margin: 0 15px;
  }
  .leave_word .leave_container .leave_message .message {
    padding-top: 25px;
    font-size: 20px;
    line-height: 48px;
  }
  .leave_word .leave_container .leave_message .message span {
    font-size: 26px;
  }
  .brand_intro .intro_content .content_l {
    padding-right: 40px;
  }
  .brand_intro .intro_content .content_l .origin {
    line-height: 20px;
    padding-bottom: 15px;
  }
  .brand_intro .intro_content .content_l .origin .year span {
    font-size: 35px;
  }
  .brand_intro .intro_content .content_l .text {
    line-height: 26px;
    margin-top: 15px;
  }
  .brand_develop .develop_swiper {
    height: 440px;
  }
  .brand_develop .develop_swiper .swiper-slide .title {
    font-size: 20px;
    padding: 6px 8px;
    margin-bottom: 10px;
  }
  .brand_develop .develop_swiper .swiper-slide .text {
    font-size: 13px;
    line-height: 22px;
  }
  .brand_honor .honor_content .date_swiper {
    height: 250px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    height: 140px;
    margin-right: 30px;
    padding: 0 15px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .year {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .text {
    font-size: 12px;
    line-height: 18px;
  }
  .brand_honor .honor_content .date_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    width: 20px !important;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    width: 300px;
    margin-bottom: 20px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .text {
    width: 300px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 992px) {
  :root {
    --index-tb-gap: 40px;
    --index-lr-gap: 40px;
    --inside-gap: 40px;
    --index-tb-gap: 55px;
    --inside-gap-t: 50px;
  }
  .overlay .dialog .iconfont {
    right: -22px;
    top: -30px;
    height: 34px;
    font-size: 24px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand {
    margin: 0 40px;
  }
  .global-footer .footer_content {
    padding: 50px var(--index-lr-gap) 20px;
    margin: 0 auto;
    max-width: 740px;
  }
  .global-footer .footer_content .footer_contact img {
    width: 180px;
  }
  .global-footer .footer_content .footer_main {
    display: none;
  }
  .newsItem_more {
    font-size: 12px;
  }
  .global-pagination {
    padding: 40px 0 55px;
  }
  .global-pagination a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin: 0 8px;
  }
  .global_banner {
    padding-top: 300px;
  }
  .global_banner .container {
    margin-bottom: 35px;
  }
  .global_banner .global_tags a {
    height: 70px;
    line-height: 70px;
    font-size: 15px;
    margin: 0 20px;
  }
  .index_merit {
    padding: 60px 0 60px 80px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 35px 0 33px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 28px;
    padding-bottom: 14px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 img {
    padding-left: 20px;
  }
  .index_merit .merit-swiper .swiper-slide .title h4 {
    font-size: 14px;
  }
  .index_merit .merit-swiper .swiper-slide .number {
    font-size: 46px;
    line-height: 46px;
  }
  .index_cultural .cultural_content {
    padding: 144px 0 152px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 36px;
    padding-bottom: 20px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 18px;
    padding-bottom: 48px;
  }
  .index_news {
    padding: 86px var(--index-lr-gap) 60px;
  }
  .index_news .top .title h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 11px;
  }
  .index_news .top .title h3 span {
    width: 241px;
  }
  .index_news .top .title h3 img {
    margin-top: 6px;
    height: 25px;
  }
  .index_news .top .title h4 {
    line-height: 18px;
    font-size: 13px;
  }
  .index_news .news_list {
    margin: 0 -20px;
    padding-top: 20px;
  }
  .index_news .news_list .news_item {
    padding: 0 20px;
  }
  .index_news .news_list .news_item .text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .index_contact .contact_map {
    height: 500px;
  }
  .index_contact .contact_content {
    left: 5%;
    padding: 35px 25px;
  }
  .index_contact .contact_content .title {
    font-size: 18px;
  }
  .index_contact .contact_content .message {
    width: 270px;
    padding-top: 16px;
  }
  .index_contact .contact_content .message .iconfont {
    font-size: 20px;
  }
  .index_contact .contact_content .message p {
    font-size: 13px;
    padding: 4px 0 14px;
  }
  .product_content .product_nav {
    padding: var(--index-tb-gap) 0 20px;
  }
  .product_content .product_nav .nav_item {
    min-width: 120px;
    height: 50px;
    padding: 9px;
    font-size: 14px;
    margin-right: 25px;
    margin-bottom: 10px;
  }
  .product_content .product_main {
    padding: 25px;
  }
  .product_content .product_main .product_swiper .main_l {
    width: 100%;
    padding: 40px 20px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 260px;
  }
  .product_content .product_main .product_swiper .main_r {
    width: 100%;
    padding: 0 30px;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 12px;
    width: 100px;
    line-height: 30px;
    margin-left: 30px;
    border-radius: 15px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    margin-left: 8px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 16px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  .product_content .product_main .dot_swiper {
    width: 60%;
    bottom: 0;
    left: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 20% !important;
    height: 90px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 570px;
  }
  .craft .swiper-wrapper {
    display: flex;
  }
  .craft .craft_item {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .craft .craft_item:nth-child(2n) {
    flex-direction: column;
  }
  .craft .craft_item .item_l {
    width: 100%;
  }
  .craft .craft_item .item_l .title {
    width: 140px;
    margin-bottom: 13px;
  }
  .craft .craft_item .item_l .text {
    font-size: 14px;
    line-height: 26px;
  }
  .craft .craft_item .item_l .text span {
    font-size: 16px;
  }
  .craft .craft_item .item_r {
    width: 100%;
    padding: 0px 80px;
  }
  .activity_recommend {
    margin: 50px auto 30px;
  }
  .activity_recommend .recommend_item .text {
    font-size: 15px;
    padding: 10px 15px;
  }
  .activity_list .activity_item .imgBox {
    width: 36%;
  }
  .activity_list .activity_item .content .time {
    margin: 14px 0 10px;
  }
  .activity_list .activity_item .content .title {
    font-size: 18px;
    line-height: 20px;
  }
  .activity_list .activity_item .content .text {
    line-height: 26px;
    margin-bottom: 28px;
  }
  .activity_detail .top_message {
    margin: var(--inside-gap-t) 0 30px;
  }
  .activity_detail .detail_content {
    padding: 40px;
  }
  .activity_detail .detail_content .title {
    font-size: 22px;
    line-height: 26px;
  }
  .activity_detail .detail_footer {
    margin-bottom: 50px;
    padding: 12px 40px;
  }
  .activity_detail .detail_footer a {
    line-height: 28px;
  }
  .museum .museum_list {
    margin: var(--index-tb-gap) -10px -20px;
  }
  .museum .museum_list .museum_item {
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .museum .museum_list .museum_item .content {
    padding: 10px 12px;
  }
  .museum .museum_list .museum_item .content .title {
    padding-left: 10px;
  }
  .museum .museum_list .museum_item .content .title h3 {
    font-size: 16px;
  }
  .contact_title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  .contact_us .contact_us_message .message_item .iconfont {
    width: 65px;
    height: 65px;
    font-size: 32px;
  }
  .contact_us .contact_us_message .message_item .label {
    margin-bottom: 8px;
  }
  .contact_us .contact_us_message .message_item .text,
  .contact_us .contact_us_message .message_item .label {
    font-size: 13px;
    line-height: 15px;
  }
  .contact_us .follow_us {
    margin: 25px 0 0;
  }
  .contact_us .follow_us .follow_us_l {
    padding: 25px;
  }
  .contact_us .follow_us .follow_us_l .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .contact_us .follow_us .follow_us_l .row {
    margin: 0 -8px -16px;
  }
  .contact_us .follow_us .follow_us_l .qrcode {
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .contact_us .follow_us .follow_us_l .qrcode .text {
    font-size: 12px;
    line-height: 26px;
    margin-top: 0;
  }
  .contact_us .follow_us .follow_us_r {
    padding: 0 0 0 25px;
  }
  .recruit .recruit-content .recruit-item .item-header {
    font-size: 14px;
    padding: 0 20px;
    height: 60px;
  }
  .recruit .recruit-content .recruit-item .item-content {
    padding: 20px 25px 25px;
  }
  .recruit .recruit-content .recruit-item .item-content .text,
  .recruit .recruit-content .recruit-item .item-content .message {
    font-size: 13px;
    line-height: 28px;
  }
  .recruit .recruit-content .recruit-item .item-content .text {
    margin-bottom: 15px;
  }
  .recruit .recruit-content .recruit-item .item-content .message {
    padding-top: 15px;
  }
  .leave_word .leave_container .contact_form {
    margin: 0 -10px 50px;
  }
  .leave_word .leave_container .contact_form .form_item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .leave_word .leave_container .contact_form .form_item .label {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .leave_word .leave_container .contact_form .form_item input,
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 45px;
  }
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 100px;
  }
  .leave_word .leave_container .contact_form .submit {
    width: 140px;
    height: 45px;
    font-size: 15px;
    margin: 0 10px;
  }
  .leave_word .leave_container .leave_message .message {
    padding-top: 25px;
    font-size: 18px;
    line-height: 46px;
  }
  .leave_word .leave_container .leave_message .message span {
    font-size: 24px;
  }
  .brand_intro .intro_content .content_l {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .brand_intro .intro_content .content_l .origin {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 15px;
    display: flex;
    align-items: flex-end;
  }
  .brand_intro .intro_content .content_l .origin .year {
    margin-top: 0;
    margin-left: 10px;
  }
  .brand_intro .intro_content .content_l .text {
    font-size: 14px;
    line-height: 28px;
  }
  .brand_develop .develop_swiper {
    height: 380px;
  }
  .brand_develop .develop_swiper .swiper-slide .title {
    font-size: 18px;
    padding: 6px 8px;
    margin-bottom: 10px;
  }
  .brand_develop .develop_swiper .swiper-slide .text {
    font-size: 13px;
    line-height: 22px;
  }
  .brand_honor .honor_content {
    flex-direction: column-reverse;
    margin: 0;
  }
  .brand_honor .honor_content .date_swiper {
    height: 380px;
    padding: 0 30px 0;
  }
  .brand_honor .honor_content .date_swiper .swiper-wrapper {
    justify-content: center;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    height: 140px;
    margin-right: 20px;
    padding: 0 15px;
    justify-content: flex-start;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .year {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 40px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .text {
    font-size: 12px;
    line-height: 18px;
  }
  .brand_honor .honor_content .date_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    width: 20px !important;
  }
  .brand_honor .honor_content .honor_swiper {
    padding: 0;
    margin-bottom: 40px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    width: 90%;
    margin-bottom: 20px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .text {
    width: 90%;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --content-font-size: 13px;
    --content-line-height: 28px;
    --index-tb-gap: 40px;
    --index-lr-gap: 30px;
    --inside-gap-sm: 30px;
    --inside-gap: 30px;
    --inside-gap-t: 30px;
  }
  .overlay .dialog {
    width: 90%;
    padding: 6px;
  }
  #intro, #develop, #honor {
    scroll-margin-top: 75px;
  }
  .global-nav {
    height: 75px;
  }
  .global-nav .container-fluid {
    height: 75px;
    justify-content: space-between;
    padding: 6px 30px;
  }
  .global-nav .container-fluid .navbar-brand {
    display: block;
  }
  .global-nav .container-fluid .navbar-box .navbar-toggler {
    order: 6;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 600;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 90px;
    margin-bottom: 20px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin: 0;
    padding: 0 30px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    color: var(--white);
    font-size: 16px;
    flex: 1;
    line-height: 40px;
    justify-content: flex-start;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    display: none;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover {
    color: var(--theme-color);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover::before {
    display: none;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
    color: var(--white);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active::before {
    display: none;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active:hover {
    color: var(--theme-color);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    background-color: unset;
    line-height: 36px;
    position: unset;
    transform: translateX(0%);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box {
    padding: 0;
    align-items: unset;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item {
    flex: 1;
    font-size: 14px;
    color: var(--white);
    margin-left: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item:hover {
    color: var(--theme-color);
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item:first-child {
    padding-top: 0;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .list-box .hide-item:last-child {
    padding-bottom: 0;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .navbar-brand {
    display: none;
  }
  .global_banner {
    padding-top: 240px;
  }
  .global_banner .container {
    margin-bottom: 30px;
  }
  .global_banner .global_tags a {
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    margin: 0 15px;
  }
  .global-footer .footer_content {
    padding: 40px var(--index-lr-gap) 20px;
  }
  .global-footer .footer_content .footer_contact img {
    width: 160px;
  }
  .global-footer .footer_content .footer_contact .f_contact_title {
    padding: 30px 0 14px;
  }
  .global-footer .footer_content .footer_contact .contact_item {
    line-height: 26px;
  }
  .global-footer .footer_content .footer_attention .attention_title {
    margin-bottom: 18px;
  }
  .global-footer .footer_content .footer_attention .attention_code {
    margin: 14px 0 6px;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont {
    width: 35px;
    height: 35px;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont::before {
    font-size: 22px;
  }
  .global-footer .footer_content .footer_attention .attention_code .weixin img {
    width: 120px;
  }
  .global-footer .footer_copyright {
    padding: 19px var(--index-lr-gap) 22px;
    line-height: 14px;
  }
  .newsItem_more {
    padding-top: 6px;
  }
  .global-pagination {
    padding: 30px 0 40px;
  }
  .global-pagination a {
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 6px;
  }
  .index_banner .index-banner-pagination {
    left: 60px;
  }
  .index_merit {
    padding: 50px 0 50px 60px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 25px 0 23px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 14px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 img {
    padding-left: 15px;
    height: 24px;
  }
  .index_merit .merit-swiper .swiper-slide .title h4 {
    font-size: 12px;
  }
  .index_merit .merit-swiper .swiper-slide .number {
    font-size: 38px;
    line-height: 38px;
  }
  .index_cultural .cultural_content {
    padding: 104px 0 112px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 16px;
    padding-bottom: 40px;
  }
  .index_news {
    padding: 50px var(--index-lr-gap) 50px;
  }
  .index_news .top .title h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .index_news .top .title h3 span {
    width: 219px;
  }
  .index_news .top .title h3 img {
    margin-top: 8px;
    height: 23px;
  }
  .index_news .top .title h3 .news_more {
    font-size: 12px;
  }
  .index_news .top .title h4 {
    font-size: 12px;
    line-height: 16px;
  }
  .index_news .news_list {
    margin: 0 -10px;
    padding-top: 15px;
  }
  .index_news .news_list .news_item {
    padding: 0 10px;
  }
  .index_news .news_list .news_item .time {
    padding: 14px 0 6px;
  }
  .index_news .news_list .news_item .text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 14px;
  }
  .index_contact .contact_map {
    height: 340px;
  }
  .index_contact .contact_map .amap-icon {
    width: 90px !important;
    height: 90px !important;
  }
  .index_contact .contact_map .amap-icon img {
    width: 60px;
  }
  .index_contact .contact_content {
    position: relative;
    width: 100%;
    height: 100%;
    left: auto;
    top: auto;
    transform: translateY(0);
    padding: 30px 20px;
  }
  .index_contact .contact_content .title {
    font-size: 18px;
  }
  .index_contact .contact_content .message {
    width: 100%;
    padding-top: 14px;
  }
  .index_contact .contact_content .message .iconfont {
    font-size: 18px;
  }
  .index_contact .contact_content .message p {
    padding: 4px 0 12px;
  }
  .product_content .product_nav {
    padding-bottom: 20px;
  }
  .product_content .product_nav .nav_item {
    min-width: 110px;
    height: 44px;
    padding: 9px;
    font-size: 13px;
    margin-right: 20px;
    margin-bottom: 8px;
  }
  .product_content .product_main {
    padding: 25px;
    background: url("/static/modules/cms/images/product_main_bg.png") no-repeat top/100% 100%;
  }
  .product_content .product_main .product_swiper .main_l {
    padding: 20px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 220px;
  }
  .product_content .product_main .product_swiper .main_r {
    padding: 0 20px;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 12px;
    width: 90px;
    line-height: 28px;
    margin-left: 28px;
    border-radius: 15px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    margin-left: 6px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 14px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .product_content .product_main .dot_swiper {
    width: 75%;
    bottom: 0;
    left: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 20% !important;
    height: 90px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 440px;
  }
  .craft .craft_item {
    margin-bottom: 10px;
  }
  .craft .craft_item .item_l {
    width: 100%;
  }
  .craft .craft_item .item_l .title {
    width: 140px;
    margin-bottom: 13px;
  }
  .craft .craft_item .item_l .text {
    font-size: 14px;
    line-height: 26px;
  }
  .craft .craft_item .item_l .text span {
    font-size: 15px;
  }
  .craft .craft_item .item_l .text span img {
    width: 16px;
  }
  .craft .craft_item .item_l .text span.num img {
    width: 20px;
  }
  .craft .craft_item .item_r {
    padding: 0px 60px;
  }
  .activity_recommend {
    margin: 40px auto 30px;
  }
  .activity_recommend .recommend_item .text {
    font-size: 14px;
  }
  .activity_list .activity_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .activity_list .activity_item .imgBox {
    width: 38%;
  }
  .activity_list .activity_item .content {
    padding-left: 25px;
  }
  .activity_list .activity_item .content .time {
    font-size: 12px;
    margin: 10px 0 6px;
  }
  .activity_list .activity_item .content .title {
    font-size: 16px;
    line-height: 20px;
  }
  .activity_list .activity_item .content .text {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .activity_detail .top_message {
    margin: var(--inside-gap-t) 0 20px;
    font-size: 12px;
    line-height: 20px;
  }
  .activity_detail .top_message .iconfont {
    margin-right: 10px;
  }
  .activity_detail .top_message .top_r {
    font-size: 14px;
  }
  .activity_detail .top_message .top_r .iconfont {
    font-size: 16px;
    margin-right: 10px;
  }
  .activity_detail .detail_content {
    margin-bottom: 20px;
    padding: 30px;
  }
  .activity_detail .detail_content .title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .activity_detail .detail_content .message {
    line-height: 20px;
    padding: 8px 0;
    margin-bottom: 20px;
  }
  .activity_detail .detail_content .content {
    font-size: 12px;
    line-height: 22px;
  }
  .activity_detail .detail_content .content img {
    margin: 10px auto;
  }
  .activity_detail .detail_content .content video {
    margin: 10px auto;
  }
  .activity_detail .detail_footer {
    margin-bottom: 30px;
    padding: 10px 30px;
  }
  .activity_detail .detail_footer a {
    line-height: 26px;
  }
  .museum .museum_list .museum_item .content .title h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .contact_title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .contact_us .contact_us_message .message_item .iconfont {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin: 0 auto 10px;
  }
  .contact_us .contact_us_message .message_item .label {
    margin-bottom: 6px;
  }
  .contact_us .contact_us_message .message_item .text,
  .contact_us .contact_us_message .message_item .label {
    font-size: 12px;
    line-height: 14px;
  }
  .contact_us .contact_us_message .message_item::before {
    height: 80px;
  }
  .contact_us .follow_us {
    margin: 20px 0 0;
  }
  .contact_us .follow_us .follow_us_l {
    padding: 20px;
  }
  .contact_us .follow_us .follow_us_l .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .contact_us .follow_us .follow_us_l .row {
    margin: 0 -5px -10px;
  }
  .contact_us .follow_us .follow_us_l .qrcode {
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .contact_us .follow_us .follow_us_l .qrcode .text {
    font-size: 12px;
    line-height: 22px;
  }
  .contact_us .follow_us .follow_us_r {
    padding: 0 0 0 20px;
  }
  .contact_us .follow_us .follow_us_r #contact_map .amap-icon {
    width: 90px !important;
    height: 90px !important;
  }
  .contact_us .follow_us .follow_us_r #contact_map .amap-icon img {
    width: 60px;
  }
  .recruit .recruit-content .recruit-item {
    margin-bottom: 15px;
  }
  .recruit .recruit-content .recruit-item .item-header {
    font-size: 12px;
    padding: 0 15px;
    height: 50px;
  }
  .recruit .recruit-content .recruit-item .item-content {
    padding: 15px 20px 20px;
  }
  .recruit .recruit-content .recruit-item .item-content .text,
  .recruit .recruit-content .recruit-item .item-content .message {
    font-size: 12px;
    line-height: 26px;
  }
  .recruit .recruit-content .recruit-item .item-content .text {
    margin-bottom: 10px;
  }
  .recruit .recruit-content .recruit-item .item-content .message {
    padding-top: 10px;
  }
  .leave_word .leave_container .contact_form {
    margin: 0 -10px 35px;
  }
  .leave_word .leave_container .contact_form .form_item .label {
    font-size: 14px;
    line-height: 16px;
  }
  .leave_word .leave_container .contact_form .form_item input,
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 40px;
    font-size: 12px;
  }
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 90px;
  }
  .leave_word .leave_container .contact_form .submit {
    width: 120px;
    height: 42px;
    font-size: 14px;
  }
  .leave_word .leave_container .leave_message .message {
    padding-top: 15px;
    font-size: 16px;
    line-height: 38px;
  }
  .leave_word .leave_container .leave_message .message span {
    font-size: 20px;
  }
  .swiper_btn {
    width: 50px;
    height: 50px;
  }
  .swiper_btn::after {
    font-size: 18px;
  }
  .brand_intro .intro_content .content_l {
    margin-bottom: 10px;
  }
  .brand_intro .intro_content .content_l .origin {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 10px;
  }
  .brand_intro .intro_content .content_l .origin .year {
    margin-left: 10px;
  }
  .brand_intro .intro_content .content_l .origin .year span {
    font-size: 30px;
  }
  .brand_intro .intro_content .content_l .text {
    font-size: 13px;
    line-height: 26px;
    margin-top: 10px;
  }
  .brand_develop .develop_swiper {
    height: 360px;
  }
  .brand_develop .develop_swiper .swiper-slide .title {
    font-size: 16px;
    padding: 5px 7px;
    margin-bottom: 8px;
  }
  .brand_develop .develop_swiper .swiper-slide .text {
    font-size: 12px;
    line-height: 20px;
  }
  .brand_honor .honor_content .date_swiper {
    height: 330px;
    padding: 0;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    height: 140px;
    margin-right: 20px;
    padding: 0 10px;
    justify-content: flex-start;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .year {
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 30px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .text {
    line-height: 16px;
  }
  .brand_honor .honor_content .date_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    width: 20px !important;
  }
  .brand_honor .honor_content .honor_swiper {
    margin-bottom: 20px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-next {
    right: 5px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-prev {
    left: 5px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    width: 100%;
    margin-bottom: 10px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .text {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  :root {
    --index-tb-gap: 25px;
    --index-lr-gap: 12px;
    --inside-gap-sm: 25px;
    --inside-gap: 25px;
    --inside-gap-t: 25px;
  }
  #intro, #develop, #honor {
    scroll-margin-top: 70px;
  }
  .global-nav {
    height: 70px;
  }
  .global-nav .container-fluid {
    padding: 6px 12px;
    height: 70px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 70px;
  }
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    padding: 0 20px;
  }
  .global_banner {
    padding-top: 150px;
  }
  .global_banner .container {
    margin-bottom: 25px;
  }
  .global_banner .global_tags a {
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    margin: 0 8px;
  }
  .global-learn-more, .newsItem_more, .index_cultural .cultural_content .cultural_more, .index_news .top .title h3 .news_more {
    font-size: 12px;
  }
  .global-footer .footer_content {
    padding: 20px var(--index-lr-gap) 10px;
    flex-direction: column;
    align-items: center;
  }
  .global-footer .footer_content .footer_contact {
    text-align: center;
    margin-bottom: 20px;
  }
  .global-footer .footer_content .footer_contact img {
    width: 140px;
  }
  .global-footer .footer_content .footer_contact .f_contact_title {
    padding: 20px 0 10px;
  }
  .global-footer .footer_content .footer_contact .contact_item {
    line-height: 22px;
  }
  .global-footer .footer_content .footer_attention {
    text-align: center;
  }
  .global-footer .footer_content .footer_attention .attention_title {
    margin-bottom: 10px;
  }
  .global-footer .footer_content .footer_attention .attention_text {
    max-width: 100%;
    line-height: 22px;
  }
  .global-footer .footer_content .footer_attention .attention_code {
    margin: 12px 0 6px;
    justify-content: center;
  }
  .global-footer .footer_content .footer_attention .attention_code .iconfont {
    margin-right: 8px;
  }
  .global-footer .footer_copyright {
    padding: 15px var(--index-lr-gap) 18px;
    line-height: 14px;
  }
  .global-pagination {
    padding: 20px 0 25px;
  }
  .global-pagination a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 4px;
  }
  .index_banner .index-banner-pagination {
    left: 20px;
    bottom: 15px;
  }
  .index_merit {
    padding: 30px 0 30px 20px;
  }
  .index_merit .merit-swiper .swiper-slide .title {
    padding: 22px 0 20px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 12px;
  }
  .index_merit .merit-swiper .swiper-slide .title h3 img {
    padding-left: 10px;
    height: 18px;
  }
  .index_merit .merit-swiper .swiper-slide .number {
    font-size: 32px;
    line-height: 32px;
  }
  .index_cultural .cultural_content {
    padding: 50px 0 55px;
  }
  .index_cultural .cultural_content h3 {
    font-size: 24px;
    padding-bottom: 16px;
  }
  .index_cultural .cultural_content h4 {
    font-size: 14px;
    padding-bottom: 30px;
  }
  .index_news {
    padding: 30px var(--index-lr-gap);
  }
  .index_news .top .title h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .index_news .top .title h3 span {
    width: 160px;
  }
  .index_news .top .title h3 img {
    margin-top: 6px;
    height: 20px;
  }
  .index_news .top .news_more {
    font-size: 12px;
  }
  .index_news .news_list {
    padding-top: 15px;
  }
  .index_news .news_list .news_item {
    margin-bottom: 20px;
  }
  .index_news .news_list .news_item:last-child {
    margin-bottom: 0;
  }
  .index_contact .contact_map {
    height: 280px;
  }
  .index_contact .contact_map .amap-icon {
    width: 70px !important;
    height: 70px !important;
  }
  .index_contact .contact_map .amap-icon img {
    width: 45px;
  }
  .index_contact .contact_content {
    padding: 20px 12px;
  }
  .index_contact .contact_content .title {
    font-size: 16px;
  }
  .index_contact .contact_content .message {
    padding-top: 12px;
  }
  .index_contact .contact_content .message .iconfont {
    font-size: 16px;
  }
  .index_contact .contact_content .message p {
    font-size: 12px;
    line-height: 18px;
    padding: 2px 0 10px;
  }
  .product_content .product_nav {
    padding-bottom: 10px;
  }
  .product_content .product_nav .nav_item {
    min-width: 95px;
    min-width: auto;
    height: 44px;
    padding: 9px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 8px;
  }
  .product_content .product_nav .nav_item span {
    padding: 0 10px;
  }
  .product_content .product_main {
    padding: 25px 20px;
  }
  .product_content .product_main .product_swiper .main_l {
    padding: 10px;
  }
  .product_content .product_main .product_swiper .main_l .imgBox {
    height: 170px;
  }
  .product_content .product_main .product_swiper .main_r {
    padding: 0;
  }
  .product_content .product_main .product_swiper .main_r .title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a {
    font-size: 12px;
    width: 85px;
    line-height: 25px;
    margin-left: 25px;
    border-radius: 15px;
  }
  .product_content .product_main .product_swiper .main_r .title h3 a span {
    margin-left: 6px;
  }
  .product_content .product_main .product_swiper .main_r .title h4 {
    font-size: 14px;
  }
  .product_content .product_main .product_swiper .main_r .text {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .product_content .product_main .dot_swiper {
    width: 75%;
    bottom: 0;
    left: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .product_content .product_main .dot_swiper .swiper-slide {
    width: 24% !important;
    height: 75px;
    margin: 0 10px;
  }
  .craft {
    padding-top: 260px;
  }
  .craft .craft_item {
    margin-bottom: 0;
  }
  .craft .craft_item .item_l .title {
    width: 120px;
    margin-bottom: 13px;
  }
  .craft .craft_item .item_l .text {
    font-size: 12px;
    line-height: 24px;
  }
  .craft .craft_item .item_l .text span {
    font-size: 14px;
  }
  .craft .craft_item .item_r {
    padding: 0px 30px;
  }
  .activity_recommend {
    margin: 25px auto 13px;
  }
  .activity_recommend .row {
    margin: 0 -6px;
  }
  .activity_recommend .recommend_item {
    padding: 0 6px;
    margin-bottom: 12px;
  }
  .activity_recommend .recommend_item .text {
    font-size: 12px;
    padding: 10px 10px;
    line-height: 18px;
  }
  .activity_list .activity_item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .activity_list .activity_item .imgBox {
    width: 100%;
    padding: 0 6px;
  }
  .activity_list .activity_item .content {
    padding-left: 0;
  }
  .activity_list .activity_item .content .title {
    line-height: 18px;
  }
  .activity_list .activity_item .content .text {
    line-height: 20px;
    margin-bottom: 16px;
  }
  .activity_detail .top_message {
    font-size: 12px;
    line-height: 20px;
  }
  .activity_detail .top_message .iconfont {
    margin-right: 10px;
  }
  .activity_detail .top_message .top_r {
    font-size: 14px;
  }
  .activity_detail .top_message .top_r .iconfont {
    font-size: 16px;
    margin-right: 10px;
  }
  .activity_detail .detail_content {
    margin-bottom: 15px;
    padding: 20px;
  }
  .activity_detail .detail_content .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .activity_detail .detail_content .message {
    line-height: 15px;
    padding: 8px 0;
    margin-bottom: 20px;
  }
  .activity_detail .detail_content .content {
    font-size: 12px;
    line-height: 22px;
  }
  .activity_detail .detail_content .content img {
    margin: 10px auto;
  }
  .activity_detail .detail_content .content video {
    margin: 10px auto;
  }
  .activity_detail .detail_footer {
    margin-bottom: 25px;
    padding: 8px 20px;
  }
  .activity_detail .detail_footer a {
    line-height: 22px;
  }
  .activity_detail .detail_footer .footer_r {
    font-size: 12px;
  }
  .activity_detail .detail_footer .footer_r .iconfont {
    font-size: 14px;
    margin-right: 8px;
  }
  .museum .museum_list {
    margin: var(--index-tb-gap) -10px -15px;
  }
  .museum .museum_list .museum_item {
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .museum .museum_list .museum_item .content {
    padding: 8px 10px;
  }
  .museum .museum_list .museum_item .content .title {
    padding-left: 10px;
  }
  .museum .museum_list .museum_item .content .title h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .contact_title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .contact_us .contact_us_message .message_item {
    margin-bottom: 15px;
  }
  .contact_us .contact_us_message .message_item:last-child {
    margin-bottom: 0;
  }
  .contact_us .contact_us_message .message_item .iconfont {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
  .contact_us .contact_us_message .message_item::before {
    display: none;
  }
  .contact_us .follow_us {
    margin: 15px 0 0;
  }
  .contact_us .follow_us .follow_us_l .title {
    text-align: center;
  }
  .contact_us .follow_us .follow_us_l .qrcode {
    text-align: center;
  }
  .contact_us .follow_us .follow_us_l .qrcode img {
    width: 80%;
  }
  .contact_us .follow_us .follow_us_l .qrcode .text {
    font-size: 14px;
    line-height: 26px;
  }
  .contact_us .follow_us .follow_us_r {
    padding: 0;
    height: 280px;
  }
  .contact_us .follow_us .follow_us_r #contact_map .amap-icon {
    width: 70px !important;
    height: 70px !important;
  }
  .contact_us .follow_us .follow_us_r #contact_map .amap-icon img {
    width: 45px;
  }
  .recruit .recruit-content .recruit-item {
    margin-bottom: 10px;
  }
  .recruit .recruit-content .recruit-item .item-header {
    font-size: 12px;
    line-height: 20px;
    padding: 8px 15px;
    height: auto;
    flex-wrap: wrap;
  }
  .recruit .recruit-content .recruit-item .item-header span {
    width: 50%;
  }
  .recruit .recruit-content .recruit-item .item-content {
    padding: 10px 15px 15px;
  }
  .recruit .recruit-content .recruit-item .item-content .text,
  .recruit .recruit-content .recruit-item .item-content .message {
    line-height: 22px;
  }
  .recruit .recruit-content .recruit-item .item-content .text {
    margin-bottom: 8px;
  }
  .recruit .recruit-content .recruit-item .item-content .message {
    padding-top: 8px;
  }
  .leave_word .leave_container .contact_form {
    margin: 0 -10px 25px;
  }
  .leave_word .leave_container .contact_form .form_item {
    margin-bottom: 14px;
  }
  .leave_word .leave_container .contact_form .form_item .label {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .leave_word .leave_container .contact_form .form_item input,
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 35px;
  }
  .leave_word .leave_container .contact_form .form_item textarea {
    height: 80px;
  }
  .leave_word .leave_container .contact_form .submit {
    width: 100px;
    height: 38px;
    font-size: 13px;
  }
  .leave_word .leave_container .leave_message .message {
    padding-top: 10px;
    font-size: 14px;
    line-height: 30px;
  }
  .leave_word .leave_container .leave_message .message span {
    font-size: 18px;
  }
  .swiper_btn {
    display: none;
    width: 40px;
    height: 40px;
  }
  .swiper_btn.swiper-button-next::after {
    transform: translateX(2px);
  }
  .swiper_btn.swiper-button-prev::after {
    transform: translateX(-2px);
  }
  .swiper_btn::after {
    font-size: 14px;
  }
  .brand_intro .intro_content .content_l {
    margin-bottom: 5px;
  }
  .brand_intro .intro_content .content_l .origin {
    padding-bottom: 5px;
  }
  .brand_intro .intro_content .content_l .origin .year {
    margin-left: 10px;
  }
  .brand_intro .intro_content .content_l .origin .year span {
    font-size: 25px;
  }
  .brand_intro .intro_content .content_l .text {
    font-size: 12px;
    line-height: 22px;
    margin-top: 5px;
  }
  .brand_develop .develop_swiper {
    height: auto;
  }
  .brand_develop .develop_swiper .swiper-slide:nth-child(2n) {
    justify-content: flex-start;
  }
  .brand_develop .develop_swiper .swiper-slide .title {
    font-size: 14px;
    padding: 4px 6px;
    margin-bottom: 6px;
  }
  .brand_develop .develop_swiper .swiper-slide .text {
    font-size: 12px;
    line-height: 20px;
  }
  .brand_honor .honor_content .date_swiper {
    height: 240px;
    padding: 0 10px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide {
    height: 140px;
    margin-right: 20px;
    padding: 0 10px;
    justify-content: flex-start;
    width: 40% !important;
    background-size: 100% 100%;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .year {
    font-size: 16px;
    margin-bottom: 4px;
    margin-top: 30px;
  }
  .brand_honor .honor_content .date_swiper .swiper-slide .text {
    line-height: 14px;
  }
  .brand_honor .honor_content .date_swiper .swiper-scrollbar .swiper-scrollbar-drag {
    width: 16px !important;
  }
  .brand_honor .honor_content .honor_swiper {
    margin-bottom: 20px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-next {
    right: 5px;
  }
  .brand_honor .honor_content .honor_swiper .swiper_btn.swiper-button-prev {
    left: 5px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .imgBox {
    width: 95%;
    margin-bottom: 10px;
  }
  .brand_honor .honor_content .honor_swiper .swiper-slide .text {
    width: 95%;
    font-size: 14px;
    line-height: 20px;
  }
}
.price{
  margin-top: 20px ;
  color:#FF0500;
  font-size:18px;
  text-align:center;
  font-weight: bold;
}
