:root {
  --theme-color: #78b124;
  --product-info-hover-bg-color: rgba(120, 177, 36, 0.8);
  --menu-active-color: #fff;
  --search-sub-icon-color: var(--theme-color);
  --home-about-title-color: var(--theme-color);
  --home-about-title-span-color: var(--menu-active-color);
  --send-btn-color: var(--menu-active-color);
  --send-btn-hover-color: var(--theme-color);
  --im-l-color: var(--menu-active-color);
  --product-left-color: var(--menu-active-color);
  --pagination-color: var(--theme-color);
  --pagination-active-color: var(--menu-active-color);
  --class-h1-color: var(--theme-color);
  --submit-btn-hover-color: var(--menu-active-color);
}

:root[data-theme="blue"] {
  --theme-color: #0176ac;
  --product-info-hover-bg-color: rgba(1, 118, 172, 0.8);
}

/* --menu-active-color: #333; menu li.current会出问题，另外写一个menu-active-color2 */
:root[data-theme="pink"] {
  --theme-color: #ffe9b5;
  --product-info-hover-bg-color: rgba(234, 227, 226, 0.8);
  /* --menu-active-color: #333; */
  --menu-active-color2: #333;
  --search-sub-icon-color: var(--menu-active-color2);
  --home-about-title-color: var(--menu-active-color2);
  --home-about-title-span-color: var(--home-about-title-color);
  --send-btn-color: var(--menu-active-color2);
  --send-btn-hover-color: var(--send-btn-color);
  --im-l-color: var(--menu-active-color2);
  --product-left-color: var(--menu-active-color2);
  --pagination-color: var(--menu-active-color2);
  --pagination-active-color: var(--menu-active-color2);
  --class-h1-color: var(--menu-active-color2);
  --submit-btn-hover-color: var(--menu-active-color2);
}

:root[data-theme="grey"] {
  --theme-color: #D3D3D3;
  --product-info-hover-bg-color: rgba(211, 211, 211, 0.8);
}

::-webkit-scrollbar {
  /* 垂直滚动条宽度，水平滚动条用height */
  width: 8px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道背景色 */
  border-radius: 4px;
  /* 轨道圆角，和滑块一致更美观 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  /* 滑块默认颜色 */
  border-radius: 4px;
  /* 滑块圆角，柔化边缘 */
}

/* 滑块hover状态：高亮 */
::-webkit-scrollbar-thumb:hover {
  background: #689d19;
  /* hover时加深颜色 */
  cursor: pointer;
  /* 鼠标移上显示手型 */
}

/* 分页样式 */
.page-pagination {
  text-align: center;
  width: 100%;
}

.page-pagination .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 30px 0;
  border-radius: 8px;
}

.page-pagination .pagination>li {
  display: inline;
}

.page-pagination .pagination>li>a,
.page-pagination .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--pagination-color);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-pagination .pagination>li:first-child>a,
.page-pagination .pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-pagination .pagination>li:last-child>a,
.page-pagination .pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.page-pagination .pagination>li>a:focus,
.page-pagination .pagination>li>a:hover,
.page-pagination .pagination>li>span:focus,
.page-pagination .pagination>li>span:hover {
  z-index: 2;
  color: var(--pagination-color);
  background-color: #eee;
  border-color: #ddd;
}

.page-pagination .pagination>.active>a,
.page-pagination .pagination>.active>a:focus,
.page-pagination .pagination>.active>a:hover,
.page-pagination .pagination>.active>span,
.page-pagination .pagination>.active>span:focus,
.page-pagination .pagination>.active>span:hover {
  z-index: 3;
  color: var(--pagination-active-color);
  cursor: default;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.page-pagination .pagination>.disabled>a,
.page-pagination .pagination>.disabled>a:focus,
.page-pagination .pagination>.disabled>a:hover,
.page-pagination .pagination>.disabled>span,
.page-pagination .pagination>.disabled>span:focus,
.page-pagination .pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-pagination .pagination .jumpto {
  display: inline-block;
  margin-left: 2px;
}

.page-pagination .pagination .jumpto input {
  padding: 6px;
  /* line-height: 1.42857143; */
  color: #2c3e50;
  background-color: #fff;
  border: 1px solid #ddd;
  float: left;
  height: 31px;
}

.page-pagination .pagination .jumpto .page_number {
  width: 45px;
  margin-right: -1px;
  height: 17px;
}

.page-pagination .pager {
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
}

/* 详情页的上一页下一页 */
.next-prev {
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.next-prev .next-prev-left,
.next-prev .next-prev-right {
  font-size: 14px;
  color: #666;
}

.next-prev .next-prev-right {
  text-align: right;
}

.next-prev a {
  color: var(--theme-color);
}

video {
  max-width: 100%;
}
/* ================================ nav.html START ================================ */
.header .logo {
  width: 190px;
}

.header .logo img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header .logo {
    width: auto;
  }
}

.header .layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-contact .header-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.header-contact .header-img img {
  max-width: 100%;
}

.language-info .language-ico {
  border-color: #000 transparent transparent transparent;
}

.nav-bar {
  width: 100%;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: box;
  display: flexbox;
  display: flex;
  justify-content: center;
}

.header .nav {
  width: auto;
  margin: auto;

}

.nav ul li ul {
  left: 0;
  transform-origin: top;
  /* 或者 center */
}

.layout .language .language-cont ul li>a,
.layout .language .language-flag>a {
  display: flex;
  align-items: center;
  padding: 3px 0;
}

.layout .language .language-flag>a span {
  color: #666;
}

.layout .language .country-flag img {
  width: 20px;
}

.language .language-cont {
  width: 165px;
}

.language .language-cont ul li {
  width: auto;
}

.header .nav li a {
  line-height: 30px !important;
  min-height: 60px;
  display: flex !important;
  align-items: center;
  padding: 5px 0;
  box-sizing: border-box;
}

.owl-carousel .owl-stage-outer {
  width: 100%;
}

#home-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#home-banner img {
  width: 100%;
}

#home-banner .swiper-horizontal>.swiper-pagination-bullets,
#home-banner .swiper-pagination-bullets.swiper-pagination-horizontal,
#home-banner .swiper-pagination-custom,
#home-banner .swiper-pagination-fraction {
  bottom: 20px;
}

#home-banner .swiper-pagination-bullet-active {
  background: var(--theme-color);
}

@media screen and (max-width: 991px) {
  .header .nav ul {
    float: none;
  }

  .header .nav nav ul ul {
    min-width: unset;
  }

  .header .nav li a {
    box-sizing: content-box;
  }

  .header-contact {
    display: block !important;
    padding: 0;
  }

  .header .header-contact .head-phone,
  .header .header-contact .head-mail {
    display: none;
  }

  .language-cont {
    top: 50px !important;
  }

  #home-banner .swiper-horizontal>.swiper-pagination-bullets,
  #home-banner .swiper-pagination-bullets.swiper-pagination-horizontal,
  #home-banner .swiper-pagination-custom,
  #home-banner .swiper-pagination-fraction {
    bottom: 10px;
  }

  #home-banner {
    margin-top: 50px;
  }
}

/* ================================ nav.html END ================================ */




/* ================================ index.html START ================================ */
.index .index-product.swiper-container {
  overflow: hidden;
  position: relative;
}

.index .index-product.swiper-container .swiper-wrapper {
  padding-bottom: 40px;
}

.index .index-product.swiper-container .swiper-slide .item {
  float: none;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
}

.index .index-product.swiper-container .swiper-pagination {
  bottom: 0 !important;
}

.index .index-product.swiper-container .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
}

.index .index-product.swiper-container .swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.index .index-product.swiper-container .swiper-button-prev,
.index .index-product.swiper-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.index .index-product.swiper-container .swiper-button-prev:hover,
.index .index-product.swiper-container .swiper-button-next:hover {
  background: var(--theme-color);
}

.index .index-product.swiper-container .swiper-button-prev::after,
.index .index-product.swiper-container .swiper-button-next::after {
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .index .index-product.swiper-container .swiper-button-prev,
  .index .index-product.swiper-container .swiper-button-next {
    display: none;
  }
}


.index .index-product .item span {
  height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
}

/* .index .about-content {
    height: auto;
} */

.index-product .item .product-info {
  background-size: 15%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  line-height: 18px;
}

@media screen and (min-width: 992px) {
  .index.product .layout {
    display: flex;
    align-items: center;
  }

  .index.about {
    /* background-size: 40% 100%; */
    background-size: contain;
    background-position: left center;
  }

  .index .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ================================ index.html END ================================ */



/* ================================ footer.html START ================================ */
/*顶部社交*/
.social-link {
  margin: 15px 0;
  overflow: hidden;
}

.social-link ul {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

.social-link ul li {
  margin-right: 5px;
}

.social-link a {
  position: relative;
  color: #fff;
  margin-right: 5px;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .social-link a:hover {
    background-color: #191919;
    color: var(--theme-color);
} */
.social-link span.iconfont {
  color: #fff;
  font-size: 30px;
}

.social-link svg.icon {
  width: 30px;
  height: 30px;
}

/* ================================ footer.html END ================================ */


/* ================================ list_video.html START ================================ */
.block .class-content .news-item {
  padding: 15px;
}

.block .class-content .news-item .news-img {
  position: relative;
}

.block .classes .class-info p {
  margin-bottom: 10px;
}

/* list_product.html */
.plistdeul {
  /* margin-top: 20px; */
  padding: 20px 0;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  border-bottom: solid 1px var(--theme-color);
}

/* ================================ list_video.html END ================================ */


/* 内页统一设置 */
.block .classes p,
.block .product-right .product-info p,
.block .product-right .product-info a p {
  text-align: left;
}

.block .class-content .news-item .news-info .news-btn {
  margin: 20px auto;
}

.block .class-content .news-item .news-img img {
  height: auto;
}

.block .classes {
  padding-bottom: 40px;
}

.block .classes h1 {
  margin-bottom: 20px;
}

.layout-mobile {
  padding: 30px 40px;
}

/* detail_contact */
.block .class-content .form .form-item input[type="button"] {
  background-color: #303030;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  width: 200px;
  margin-top: 20px;
}

.block .class-content .form .form-item input[type="button"]:hover {
  background-color: var(--theme-color);
  color: var(--submit-btn-hover-color);
}

.block .class-content .form .form-item textarea,
.block .class-content .form .form-item input {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.search-content #search {
  box-sizing: border-box;
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .search-content #search i {
    display: none;
  }
  .search-content #search .txt {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .search-content #search .txt {
    display: none;
  }
  .search-content #search i {
    font-size: 22px;
    color: var(--search-sub-icon-color);
  }
}

/* detail_product.html */
.shown_products_b_a .descr {
  font-size: 14px;
}

.search-block {
  padding-top: 80px;
}

.block .product-right .opt a {
  color: var(--theme-color);
}

/* 手机版 */
@media screen and (max-width: 991px) {

  .header .layout,
  .header .logo,
  .header .logo a {
    height: 100%;
  }

  .header .logo img {
    height: 100%;
    object-fit: contain;
  }

  .language .language-cont ul li {
    width: 100%;
    text-align: left;
  }

  #owl-banner .owl-dots {
    width: 100%;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 25px;
    height: 8px;
  }

  .index {
    margin: 35px 0 15px 0;
  }

  div.index.product {
    margin-bottom: 0;
  }

  div.index.about {
    background-size: 100% 100%;
    background-attachment: fixed;
  }

  .cont .banner {
    padding-top: 50px;
  }

  .index .about-content span,
  .index .about-content p {
    color: #666 !important;
  }

  .index .about-content p {
    text-align: left !important;
  }

  .layout-mobile {
    padding: 10px;
  }

  .block .class-content .news-item {
    padding: 10px;
  }

  .footer-cont .footer-news .footer-news {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer {
    padding: 0px 15px 40px;
  }

  .footer-wrapper {
    padding-top: 0 !important;
  }

  .block .classes img {
    max-width: 100%;
  }

  .im {
    bottom: 50px !important;
  }

  .search-block {
    padding-top: 0;
  }
}




@media screen and (min-width: 992px) {
  .co-30 .index.about .layout {
    display: flex;
    align-items: center;
  }

  .co-30 .layout {
    width: 94%;
  }

  .co-30 .index .index-product .item {
    width: calc(25% - 20px);
    box-sizing: border-box;
  }

  .co-30 .index .about-content {
    flex: 1;
  }

  .co-30 .index .index-product {
    width: 100%;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    flex-wrap: wrap;
  }
}


/* 合州欣石体床用品自限公司co-49 */
.co-49 .footer-wrapper .social-link {
  display: none;
}

.co-49 .header-contact .social-link {
  margin: 0;
}

.co-49 .header-contact .social-link span.iconfont {
  color: #000;
  font-size: 24px;
}

.co-49 .header-contact .social-link li a {
  display: flex;
}

.co-49 .social-link svg.icon {
  width: 24px;
  height: 24px;
}

.co-202 .nav ul li ul {
  min-width: 320px;
}

.co-110 .index .about-content p {
  font-size: 18px;
}


/* ================================ index.html news START ================================ */
.index-news {
  width: 1220px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.index-news .news-item {
  display: -webkit-flex;
  display: flex;
  width: calc(50% - 10px);
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}

.index-news .news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.index-news .news-img {
  width: 280px;
  min-width: 280px;
  overflow: hidden;
}

.index-news .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.index-news .news-item:hover .news-img img {
  transform: scale(1.05);
}

.index-news .news-info {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-news .news-info h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-news .news-time {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.index-news .news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
  .index-news {
    width: 100%;
    padding: 0 10px 20px;
    box-sizing: border-box;
  }

  .index-news .news-item {
    width: 100%;
  }

  .index-news .news-img {
    width: 140px;
    min-width: 140px;
  }

  .index-news .news-info {
    padding: 12px;
  }

  .index-news .news-info h4 {
    font-size: 14px;
  }

  .index-news .news-time {
    font-size: 12px;
  }

  .index-news .news-desc {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}
/* ================================ index.html news END ================================ */

/* ================================ 245 顶部调整 ================================ */

.co-245 .layout{
  width: 100% !important;
}

/* ================================ 198 背景图处理 ================================ */
.co-198 .index.about{
  background-image: none !important;
  background-color:#eee ;
}
.co-198 .index .about-content{
  background-color:#eee ;
}
/* ================= 社媒卡片整体 ================= */
.co-198 .contact-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
}

.co-198 .contact-group {
    flex: 1 1 220px;
    min-width: 220px;
    padding: 22px 18px;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.co-198 .contact-group-title {
    margin-bottom: 16px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* ================= 图标列表 ================= */
.co-198 .contact-social-item .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.co-198 .contact-social-item .social-links li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ================= 图标外层通用 ================= */
.co-198 .contact-social-item .social-links .social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none !important;
    line-height: 1 !important;
    text-align: center !important;
    transition: all 0.3s ease;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* 隐藏原来的 iconfont，避免空白占位 */
.co-198 .contact-social-item .social-links .fb-icon .iconfont,
.co-198 .contact-social-item .social-links .ig-icon .iconfont,
.co-198 .contact-social-item .social-links .wa-icon .iconfont {
    display: none !important;
}

/* TikTok 图标：黑色圆形 + 白色中间图案 */
.co-198 .contact-social-item .social-links .tt-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

/* 控制 TikTok SVG 大小 */
.co-198 .contact-social-item .social-links .tt-icon svg {
    display: block;
    width: 42px;
    height: 42px;
}

/* 当前 SVG 自带圆形，直接填充黑色 */
.co-198 .contact-social-item .social-links .tt-icon svg path {
    fill: #000 !important;
}

/* Facebook：不用 iconfont，直接用 SVG 背景 */
.co-198 .contact-social-item .social-links .fb-icon {
    background-color: #1877f2 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06H297V6.26S260.43 0 225.36 0C152.14 0 104.11 44.38 104.11 124.72v70.62H22.89V288h81.22v224h100.34V288z'/%3E%3C/svg%3E") !important;
    background-size: 14px 24px !important;
}

/* Instagram：渐变背景 + SVG 相机 */
.co-198 .contact-social-item .social-links .ig-icon {
    background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='5' fill='none' stroke='%23ffffff' stroke-width='2.2'/%3E%3Ccircle cx='12' cy='12' r='3.6' fill='none' stroke='%23ffffff' stroke-width='2.2'/%3E%3Ccircle cx='17' cy='7' r='1.4' fill='%23ffffff'/%3E%3C/svg%3E"),
            linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%) !important;
    background-size: 23px 23px, 100% 100% !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: center center, center center !important;
}

/* WhatsApp：不用 iconfont，直接用 SVG 背景 */
.co-198 .contact-social-item .social-links .wa-icon {
    background-color: #25d366 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.5-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.5-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") !important;
    background-size: 24px 24px !important;
}

/* 悬停效果 */
.co-198 .contact-social-item .social-links .social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.88;
}

/* 防止你原 contact 区域里的 a/span 样式覆盖 */
.co-198 .block .classes .contact .contact-content .social-links a,
.co-198 .contact-content .social-links a,
.co-198 .contact-social-item .social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

.co-198 .block .classes .contact .contact-content .social-links span,
.co-198 .contact-content .social-links span,
.co-198 .contact-social-item .social-links span {
    line-height: 1 !important;
}

