:root {

  --primary-color: #3a86ff;
  --secondary-color: #ff006e;
  --dark-color: #14213d;
  --light-color: #f8f9fa;
  --deep-blue: #0a2540;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
      font-size: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333333 !important;
}

.mb-0 {
  margin-bottom: 0;
}

.fw-bold-size {
  font-size: 2rem;
}

.lead-size {
  font-size: 0.9rem;
      line-height: 1.5;
    color: #666666;
}

/* é¡¶éƒ¨ */
.top-bar {
  background-color: var(--dark-color);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.main-navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
  border-radius: 20px;
  padding: 8px 15px;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
  font-size: 14px;
}

.search-box:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
  color: #ffffff;
}

.search-box::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
  transition: all 0.3s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-register {
  background: var(--primary-color);
  border: none;
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
  transition: all 0.3s;
  font-size:14px;
}

.btn-register:hover {
  background: #2a75f0;
  transform: translateY(-2px);
  color: #fff;
}

.carousel-item {
  height: 450px;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.software-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background: white;
}

.software-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.software-img {
  max-height: 310px;
  background-color: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.software-img img {
  max-height: 230px;
  max-width: 100%;
  transition: transform 0.3s;
}

.software-card:hover .software-img img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.promo-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  border: none;
}

.promo-card:hover {
  transform: scale(1.03);
}

.about-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  padding: 80px 0;
  border-radius: 20px;
}


/* åº•éƒ¨ */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 20px 0;
}

.footer h5 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-download-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-download-link a {
  color: #ddd;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.copyright {
  text-align: center;
  color: #aaa;
}

/* åº•éƒ¨ */


/* é¦–é¡µä¸‹è½½ */
.stat-badge {
  background: rgba(58, 134, 255, 0.1);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: bold;
}

.nav-tabs .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  border-radius: 30px;
  margin: 0 5px;
  padding: 10px 20px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:hover:not(.active) {
  background: rgba(58, 134, 255, 0.1);
}


/* é¡¶éƒ¨æŒ‰é’®ç»„æ ·å¼ */
.top-button-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-group {
  position: relative;
  margin-right: 10px;
}

.search-group button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.search-group button:hover {
  color: white;
}

@media (max-width: 768px) {
  .top-button-group {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }

  .search-group {
    width: 100%;
    margin-right: 0;
  }

  .top-bar .btn-login,
  .top-bar .btn-register {
    padding: 4px 12px;
    font-size: 0.85rem;
  }

  .carousel-item {
    height: 300px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .feature-card {
    margin-bottom: 20px;
  }
}


/* ä¼˜åŠ¿æµ·æŠ¥æ¿å— */
.hero-section {
  background: linear-gradient(135deg, var(--deep-blue), #2d5d8c);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(30deg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary-color);
}

/* ä¼˜æƒ æ´»åŠ¨ */
.discount-banner {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 75, 43, 0.3);
}

/* ç‰ˆæœ¬è½®æ’­ */
.version-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  height: 100%;
}

.version-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.version-header {
  background: linear-gradient(135deg, var(--primary-color), #6a5af9);
  color: white;
  padding: 20px;
  text-align: center;
}

.version-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ç”¨æˆ·è¯„ä»· */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(58, 134, 255, 0.1);
  line-height: 1;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

/* ç”¨æˆ·è¯„ä»·è½®æ’­ */
.testimonial-slider-container {
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  /* çº¿æ€§è¿‡æ¸¡ï¼Œæ¶ˆé™¤å¡é¡¿æ„Ÿ */
}



/* çƒ­é—¨æŽ¨è */
.recommend-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recommend-img {
  height: auto;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.recommend-img img {
  max-width: 100%;
}

/* ä¸‹è½½æ³¨æ„äº‹é¡¹ */
.faq-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  border-radius: 20px;
  padding: 50px 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.btn-download {
  background: linear-gradient(135deg, var(--primary-color), #6a5af9);
  border: none;
  color: white;
  border-radius: 8px;
  padding: 10px;
  font-weight: bold;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.btn-download:hover a{ color:#fff;}
.btn-download:hover a:hover{ color:#fff;}

.btn-download:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
}

.btn-download:hover:after {
  left: 120%;
}



/* -----------æ”¯ä»˜å¼¹çª—----------- */
.payment-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.payment-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #555;
}

.payment-details {
  margin: 20px 0 0;
  color: #555;
  text-align: left !important;
}

.payment-content-title {
  font-size: 24px;
  color: #555;
  text-align: center;
}

/* .payment-details .form-group,
.payment-details .form-actions {
  display: flex;
  flex-wrap: wrap;
} */

.payment-submit-btn {
  background-color: #52c41a;
  border-color: #52c41a;
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.payment-submit-btn:hover {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}

.payment-type-btn {
  color: #949494;
  background-color: #e6e6e6;
  /* border-color: #adadad; */
  border: none;
}

.payment-type-btn:hover {
  color: #fff;
  background-color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-type-btn.active {
  color: #fff;
  background-color: #3498db;
  border-color: #3498db;
}

.payment-type-btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* -----------æ”¯ä»˜å¼¹çª—----------- */


/* ç›¸å…³æŽ¨è */
/* SwiperæŒ‰é’®æ ·å¼ */
.version-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.version-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.version-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.version-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.version-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.version-header p {
  opacity: 0.9;
  margin-bottom: 0;
}

.version-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4757;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.btn-download {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white !important;
  border: none;
  padding: 10px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-download-size {
  font-size: 1.10rem;
  font-weight: 300;
  padding: 6px 12px;
}


/* SwiperæŒ‰é’®æ ·å¼ */
.swiper-button-next,
.swiper-button-prev {
  color: #6a11cb;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background: #6a11cb;
}


/* ä¸‹è½½åˆ—è¡¨é¡µ */
.download-list .img-fluid {
  max-width: 100%;
}

@media (max-width: 992px) {
  .download-list .img-fluid {
    max-width: 90%;
  }
}

@media (max-width: 575px) {
  .download-list .img-fluid {
    max-width: 50%;
    margin-bottom: 30px;
  }
}

.login-username {
  display: block;
  color: #fff!important;
  font-size: 16px;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 15px;
}
.btn-login{
	font-size:14px;
}
.vip-info-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}





/* å³ä¾§æ‚¬æµ®æ’­æŠ¥å®¹å™¨æ ·å¼ */
.floating-broadcast-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  transition: all 0.3s ease;
}

/*@media (max-width: 768px) {*/
/*  .floating-broadcast-container {*/
/*    display: none;*/
/*  }*/
/*}*/

/* é»˜è®¤å±•å¼€çŠ¶æ€ */
.floating-broadcast-container.expanded {
  right: 0;
}

/* æŠ˜å çŠ¶æ€ */
.floating-broadcast-container:not(.expanded) {
  right: -390px;
}

/* æ’­æŠ¥å†…å®¹åŒºåŸŸæ ·å¼ */
.broadcast-content {
  width: 390px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 5px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .floating-broadcast-container:not(.expanded) {
    right: -240px;
  }

  .broadcast-content {
    width: 240px;
  }
}

/* æ’­æŠ¥å¤´éƒ¨æ ·å¼ */
.broadcast-header {
  padding: 10px 15px;
  background-color: #1890ff;
  color: white;
  font-size: 16px;
  text-align: center;
  border-radius: 5px 0 0 5px;
}

.broadcast-header h3 {
  font-size: 18px;
}

/* å±•å¼€/éšè—æŒ‰é’®æ ·å¼ - ä¿®æ”¹ä¸ºç«–æŽ’æ–‡å­— */
.broadcast-toggle-btn {
  width: 30px;
  height: 100px;
  background-color: #1890ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* writing-mode: vertical-rl; */
  text-orientation: mixed;
  padding: 10px 5px;
}

.broadcast-toggle-btn:hover {
  background-color: #40a9ff;
}

.toggle-text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2px;
}

/* Swiperå®¹å™¨æ ·å¼ */
.broadcast-swiper {
  padding: 10px;
  overflow: hidden;
}

.broadcast-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.broadcast-swiper .swiper-slide {
  height: auto;
      background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.broadcast-swiper .swiper-slide {
  width: calc(100% / 3) !important;
  height: auto;
}


@media (max-width: 992px) {
  .broadcast-swiper .swiper-slide {
    width: calc(100% / 2) !important;
  }
}

@media (max-width: 768px) {
  .broadcast-swiper .swiper-slide {
    width: 100% !important;
  }
}

/* æ’­æŠ¥é¡¹æ ·å¼ */
.broadcast-item {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  flex-direction: column;
  height: auto;
}

.broadcast-time {
  font-size: 12px;
    margin-bottom: 5px;
    background: #1890ff;
    width: 61px;
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.broadcast-text {
  /*font-size: 14px;*/
  color: #212529;
  line-height: 1.4;
}

.broadcast-foot-btn {
  display: flex;
}

.broadcast-foot-btn a {
  flex-grow: 1;
  font-size: 20px;
  color: #fff !important;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
}

.broadcast-foot-btn a:first-child {
  background: #006732;
}

.broadcast-foot-btn a:last-child {
  background: #fe0000;
}



/* ç‰ˆæœ¬é€‰æ‹© */
.system-type {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.system-type-p {
  padding: 0 10px;
}

.system-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-type-list a {
  display: flex;
  align-items: center;
  width: max-content;
  font-size: 1.10rem;
  color: #333;
  border: solid 1px #ccc;
  padding: 4px;
  border-radius: 4px;
  gap: 10px;
}

.system-type-list a img {
  width: 30px;
}

.system-type-list a:hover {
  background: #ccc;
}

.broadcast-system-type-list {
  padding: 10px;
  max-height: 210px;
  overflow-y: auto;
}


/* ä»˜è´¹å±•ç¤ºå†…å®¹ */
/*.purchase-successful {*/
/*  padding: 15px;*/
/*  background: white;*/
/*  border-radius: 15px;*/
/*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
/*}*/

/*.not-purchased {*/
/*  padding: 30px 15px;*/
/*  background: #efefef;*/
/*  border-radius: 15px;*/
/*}*/

/*.purchase-successful p,*/
/*.not-purchased p {*/
/*  margin: 0;*/
/*}*/

/*.not-purchased:hover {*/
/*  cursor: not-allowed;*/
/*}*/

.table-responsive table tr td:nth-child(2) {
  background-color: #efefef !important;
}

.table-responsive table tr td:nth-child(3) {
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  --bs-bg-opacity: 0.1;
}

.table-responsive table tr td:nth-child(4) {
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  --bs-bg-opacity: 0.1;
}

.table-responsive table tr td:nth-child(5) {
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  --bs-bg-opacity: 0.1;
}




#purchaseBtn,
#login-buy-btn {
  padding: 10px 60px;
  font-size: 1.5rem;
}


/* æ–°å¢žç›´æŽ¥è´­ä¹° */
.zjgm-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.tsktvip {
  font-size: 1.0rem;
  color: #dc3545;
}

.zjgm-btn {
     font-size: 1rem;
    color: #fff !important;
    line-height: 1.2;
}

.rounded{ border-radius: .95rem !important;}


.list-group-item {
    padding: 1.5rem 1rem;
}
.list-group-itemx {
    padding: 0.5rem 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
}


.btfen{ margin-bottom:10px; padding:0 0 8px 0; border-bottom:1px solid #cccccc;}

.sticky-top {
    z-index: 520;
}

.fa-apple {
    
    color: #000;
}
.fa-windows {
    
    color: #0078D7;
}


@media (max-width:640px) {
/* ç§»åŠ¨ç«¯æ ·å¼å°±åœ¨è¿™ä¸ªé‡Œé¢ */
.lead {
    font-size: 0.9rem;
    font-weight: 300;
}
.img-fluid {
    max-width: 100% !important;
    height: auto;
    padding-bottom:15px;
}


}




.download-list .container{
	 background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.xbt{
	border-bottom: 1px solid #f2f2f2;
}
.hx2{overflow: hidden;line-height: 1.4;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;min-height: 45px;font-size: 1rem;}
.copyright a{
	display:block;
	color:#aaa!important;
}
.banner_x{
	text-align: center;
    background: #4f628d;
    color: #fff;
    padding: 45px 0;
    font-size: 1.5rem;
}
.banner_z p{
	    font-size: 0.9rem;
    color: #fff;
	margin-bottom:0;
	    margin-top: 10px;
}
.banner_z p a{
	color: #fff!important;
}
.xrpagination{
        display: flex;
    align-items: center;
    justify-content: center;
}
.xrpagination li a{
	    border: 1px solid #f2f2f2;
    padding: 5px 10px;
    margin: 0 3px;
}
.xrpagination li.active a{
	    background: #2d6af7;
    color: #fff !important;
}
.xrpagination li a:hover{
	  background: #2d6af7;
    color: #fff !important;
}
.xrpagination .pagination{
	    justify-content: center;
	        margin-bottom: 0;
}
.post-item.item-list .entry-media {
    max-width: 155px;
    margin-right: 1rem;
}
.post-item .entry-media {
    display: block;
    position: relative;
    overflow: hidden;
}
.post-item .entry-media .media-img {
    border-radius: inherit;
    background-color: #e7e7e7;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.fyt{
    display: flex;
}
.fyt input{
        width: 85px;
    height: 35px;
    font-size: 12px;
    padding: 0 12px;
    box-sizing: border-box;
    border: 1px solid #dee2e6;
    transition: border-color 0.2s 
ease;
    border-radius: 0 !important;
    outline: none;
}
.input-group-btn button{
        height: 35px;
    font-size: 14px;
    padding: 0 15px;
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.2s 
ease;
    border-radius: 0 !important;
    color: #fff;
}
.input-group-btn button:hover{
    color:#fff!important;
}
.ratio::before {
    display: block;
    padding-top: var(--ri-aspect-ratio);
    content: "";
}
.ratio-3x2 {
    --ri-aspect-ratio: 66.6666666667%;
}
.post-item {
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    background-color: #fff;
    border-radius: .3rem;
}
.post-item.item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-width: 0;
    word-wrap: break-word;
    padding: .5rem;
	    margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
    .post-item.item-list .entry-media {
        max-width: 120px;
        margin-right: .5rem;
    }
}
.entry-wrapper h2{
	font-size:1.2rem!important;
	overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      line-height: 1.6;           
      word-wrap: break-word; 
}
.entry-desc{
	font-size:0.8rem;
	color:#666!important;
	overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-height: 1.6;           
      word-wrap: break-word; 
}
.nav-link {
	font-size:0.9rem;
}
.text-muted2{
	margin-bottom: 5px;
    font-size: 14px;
	padding-left: 15px;
	    font-weight: bold;
    color: #000 !important;
}
.text-muted2:after {
       content: " ";
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 15px;
    position: relative;
    left: -14px;
    top: -13px;
    border: 2px solid #2e68f6;
}
.yanse3{
	margin-left: 5px;
}
.hx3{
	overflow: hidden;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 42px;
}
.hx4{
	overflow: hidden;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 42px;
}
.xnr img{
	max-width:100%;
	    height: auto !important;
}
.nr_b{
	    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}
.nr_b2{
	    background: #fff;
    box-sizing: border-box;
    border-radius: 10px;
}
.bai3{
	background:#fff;
	box-sizing: border-box;
    border-radius: 10px;
	padding: 20px;
}
.xs2{
	background:#fff;
	--bs-gutter-x:0;
	    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}
.lead3{
    background: #f7faff;
    padding: 20px;
    font-size: 1rem;
    border-radius: 10px;
    box-sizing: border-box;	
}
.ximg{
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 226px;
}
.img_box{
	    width: 95%;
    height: 100%;
    overflow: hidden;
}
.xh1{
	font-size:1.5rem;
	border-bottom:1px solid #f2f2f2;
}
.article-meta li{
	    width: 100%;
    font-size: .875rem;
    color: #666;
    line-height: 1.8;
    list-style: none;
	float:left;
	margin: 3px 0;
}
.article-meta li:nth-child(4) {
	width: 100%;
}
.clear{
	clear:both;
}
.article-meta ul{
	    background: rgb(247 250 255);
    padding: 20px;
	border-radius:10px;
	box-sizing: border-box;
	    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 768px) {
	.article-meta li{
		width:100%;
	}
	.xmh{
		text-align:center;
	}
	.zjgm-btn{
		    width: 100%;
	}
	.img_box{
		 width: 100%;
	}
}
.nr_b2 .je{
    padding: .8rem 1rem;
    background-color: rgba(52, 73, 94, .83);
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
	    border-radius: 10px 10px 0 0;
}
.xzjgm-btn{
	    font-size: 1rem;
    color: #fff !important;
    line-height: 1.2;
	width: 50%;
	border-radius:50px;
}
.fk{
	text-align: center;
    padding: 20px 0;
}
.js{
	    padding: .8rem 1rem;
		    padding-bottom: 0;
}
.js li{
	    font-size: 0.8rem;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.js li:nth-child(4) {
	border-bottom: 0;
	padding-bottom: 0px;
    margin-bottom: 0px;
}
.fa{
	padding: 0 .8rem 1rem;
	font-size: 0.8rem;
	text-align:center;
	width:100%;
}
.sticky-sidebar {
            position: sticky;
            top:100px; 
            align-self: flex-start; 
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }
.price-header{
	    padding: 1rem 0;
    --ri-bg-opacity: 0.75;
    border-radius: 10px 10px 0 0;
    color: #fff;
}
.price-plan{
	font-size:1.5rem;
	font-weight:bold;
	    margin-bottom: 10px;
    display: block;
}
.price-sub{
	display:block;
	font-size: 0.9rem;
}
.price-ammount{
	margin:20px 0;
		display:block;
}
.price-desc li{
	font-size:1rem;
	color:#666;
	padding:3px 0;
}
.xbbh{
	    background-color: rgba(25, 26, 31, .1);
    margin-bottom: 20px;
}
.xh3{
	    font-size: 2rem;
}
.lead3{
	    background: rgb(247 250 255);
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 1rem;
}
.xbmmj{
	color:#fff;
	margin-right:8px;
}
@media (max-width: 768px) {
	.xh3{
		text-align:center;
	}
}
@media (max-width: 991px) {
    .xrpagination{
        display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.fyt{
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.pagination li{
    float:left;
    margin-bottom: 20px;
}
.pagination{
        display: inline-block;
}
}