* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #3d3d3d;
  background: #f5f5f5;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

select,
textarea {
  font: inherit;
}

.wrap {
  width: 1190px;
  max-width: calc(100% - 28px);
  margin: 0 auto;
}

.topbar {
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}

.welcome span {
  margin-left: 4px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-links a,
.link-button {
  color: #fff;
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header {
  width: 100%;
  background: #fff;
}

/* Filter link selected state */
.hotel-filter-list .con ul.list li a.selected,
.hotel-filter-list .con ul.any li a.selected {
  background: #ff5000;
  color: #fff;
  border-color: #ff5000;
}

.compact-header .header-main {
  min-height: 105px;
}

.header-main {
  display: flex;
  align-items: center;
  min-height: 130px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 75px;
  max-width: 100%;
  object-fit: contain;
}

.search-box {
  display: flex;
  align-items: stretch;
  width: 520px;
  max-width: 52%;
  height: 42px;
  margin-left: auto;
}

.search-tabs {
  display: flex;
  border: 2px solid #ff5000;
  border-right: 0;
  background: #fff;
}

.search-tabs button {
  width: 58px;
  border: 0;
  background: #fff;
  color: #333;
  cursor: pointer;
}

.search-tabs button.active {
  background: #ff5000;
  color: #fff;
  font-weight: 700;
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 2px solid #ff5000;
  border-left: 0;
  border-right: 0;
  padding: 0 14px;
  outline: none;
}

.search-submit {
  width: 90px;
  border: 0;
  background: #ff5000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.nav {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav .wrap {
  display: flex;
  align-items: center;
  height: 48px;
}

.nav a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 34px;
  color: #fff;
  font-size: 16px;
}

.nav a:hover,
.nav a.current {
  background: #ff5000;
}

.hero {
  height: 330px;
  overflow: hidden;
  background: #ddd;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module {
  padding-top: 24px;
}

.module .wrap {
  background: #fff;
  padding: 0 0 18px;
}

.module-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 2px solid #f0f0f0;
}

.module-head h2 {
  margin: 0;
  color: #222;
  font-size: 24px;
  line-height: 1;
}

.module-head h2 span {
  margin: 0 9px;
  color: #b9b9b9;
  font-weight: 400;
}

.module-head a {
  color: #999;
}

.sub-title {
  margin: 18px 18px 12px;
  padding-left: 12px;
  border-left: 4px solid #ff5000;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.nearby-title {
  margin-top: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.card {
  height: 228px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card a {
  display: block;
  height: 100%;
}

.card-image {
  position: relative;
  height: 132px;
  overflow: hidden;
  background: #e8e8e8;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-row {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: flex;
  gap: 5px;
}

.badge-row span {
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-size: 12px;
}

.card-info {
  padding: 10px 10px 8px;
}

.card-title {
  height: 38px;
  overflow: hidden;
  color: #333;
  line-height: 19px;
}

.card-meta {
  height: 19px;
  overflow: hidden;
  margin-top: 3px;
  color: #999;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.price {
  margin-top: 5px;
  color: #ff5000;
  font-size: 18px;
  font-weight: 700;
}

.price em {
  font-style: normal;
  font-size: 13px;
}

.small-grid .card-image {
  height: 118px;
}

.small-grid .card-title {
  height: 36px;
}

html.w1190 {
  width: auto;
  max-width: none;
  margin: 0;
}

.w1190 {
  width: 1190px;
  max-width: calc(100% - 28px);
  margin: 24px auto 0;
  background: #fff;
}

.trip-copyright {
  color: #3d3d3d;
  text-align: center;
  line-height: 1.9;
}

/* 确保详情页底部ICP备案样式与首页一致 */
.footer-copyright {
  color: #3d3d3d;
}
.trip-footer-20142 {
  border-top: none;
  background: #fff;
}
.trip-footer-20142 .trip-copyright {
  width: auto;
}

.trip-copyright p {
  margin: 0;
}

.trip-copyright a {
  color: #3d3d3d;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-bar strong {
  margin-right: 8px;
  color: #333;
}

.filter-bar a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #555;
  font-size: 13px;
  transition: all 0.15s ease;
}

.filter-bar a:hover,
.filter-bar a.active {
  background: #ff5000;
  color: #fff;
  border-color: #ff5000;
}

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-row {
  border-bottom: 1px solid #f0f0f0;
}

.guide-row a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  transition: background 0.15s ease;
}

.guide-row a:hover {
  background: #fff8f5;
}

.guide-title {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.pay-tag {
  color: #e4393c;
  font-weight: 700;
}

.guide-btn {
  flex-shrink: 0;
  margin-left: 24px;
  padding: 8px 20px;
  background: #888;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  white-space: nowrap;
}

.publish-wrapper {
  width: 850px;
  max-width: calc(100% - 28px);
  margin: 40px auto;
  padding: 50px 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.publish-title {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 600;
  color: #222;
  text-align: center;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.form-control {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  font-size: 15px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  background: #fdfdfd;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #1677ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1);
}

textarea.form-control {
  height: 140px;
  padding: 12px 15px;
  resize: none;
  line-height: 1.6;
}

select.form-control {
  appearance: auto;
}

.btn-publish {
  display: block;
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #1677ff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-publish:hover {
  background: #0f63d9;
}

@media (max-width: 600px) {
  .publish-wrapper {
    padding: 30px 20px;
  }
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-panel {
  position: relative;
  width: 900px;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 72px);
  margin: 36px auto;
  overflow: hidden;
  background: #fff;
}

.modal-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #eee;
}

.modal-panel h2 {
  margin: 0;
  font-size: 18px;
}

.modal-panel button {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.safe-content {
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding: 20px 28px;
  line-height: 1.85;
}

.page-shell {
  width: 1190px;
  max-width: calc(100% - 28px);
  margin: 24px auto;
}

.form-card,
.static-card,
.detail-card {
  background: #fff;
  border: 1px solid #eee;
}

.form-card {
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  padding: 34px 42px 38px;
}

.wide-form,
.publish-card {
  width: 660px;
}

.form-card h1,
.static-card h1 {
  margin: 0 0 24px;
  color: #222;
  font-size: 24px;
}

.form-card label {
  display: block;
  margin-bottom: 16px;
  color: #555;
}

.form-card input,
.form-card select,
.form-card textarea,
.booking-form input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ddd;
  padding: 11px 12px;
  color: #333;
  background: #fff;
  outline: none;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.booking-form input:focus {
  border-color: #ff5000;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.check-row input {
  width: auto;
  margin: 0;
}

.primary-btn {
  width: 100%;
  border: 0;
  padding: 12px 18px;
  background: #ff5000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.form-links {
  margin: 18px 0 0;
  text-align: right;
}

.form-links a {
  color: #ff5000;
}

.list-page {
  min-height: 460px;
}

.detail-card {
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}

.detail-card > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.detail-info {
  padding: 24px 34px;
}

.detail-info .sub-title {
  margin-left: 0;
}

.detail-info h1 {
  margin: 18px 0;
  color: #222;
  font-size: 26px;
  line-height: 1.35;
}

.detail-type,
.detail-feature,
.detail-address,
.detail-phone {
  color: #777;
  line-height: 1.8;
}

.detail-price {
  margin: 22px 0;
  color: #ff5000;
  font-size: 30px;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form input {
  margin: 0;
}

.detail-sections {
  grid-column: 1 / -1;
  padding: 4px 34px 34px;
  border-top: 1px solid #eee;
}

.detail-sections section {
  padding-top: 24px;
}

.detail-sections h2 {
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 4px solid #ff5000;
  color: #222;
  font-size: 20px;
}

.detail-sections p {
  margin: 0;
  color: #555;
  line-height: 1.9;
}

.static-card {
  padding: 34px 42px;
  line-height: 2;
}

.article-list {
  padding: 18px;
}

.article-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.article-list strong {
  font-size: 18px;
}

.article-list span {
  color: #999;
}

.ticket-page {
  background: #f5f5f5;
  padding: 20px 0 34px;
}

.ticket-content {
  width: 1190px;
  max-width: calc(100% - 28px);
  margin: 0 auto;
}

.ticket-nav {
  height: 38px;
  color: #777;
  font-size: 12px;
  line-height: 38px;
}

.ticket-nav a {
  color: #666;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 950px) 220px;
  gap: 20px;
  align-items: start;
}

.scenic-main {
  min-width: 0;
}

.scenic-desc-wrap,
.scenice-info,
.supplier-card,
.booking-card {
  background: #fff;
  border: 1px solid #e6e6e6;
}

.scenic-desc-wrap {
  padding: 18px 20px 20px;
}

.scenic-tit-wrap {
  position: relative;
  min-height: 48px;
  padding-right: 210px;
  border-bottom: 1px solid #eee;
}

.scenic-tit {
  display: inline;
  margin: 0;
  color: #333;
  font-size: 24px;
  line-height: 38px;
}

.scenic-subtit {
  display: inline-block;
  margin-left: 12px;
  padding: 2px 8px;
  background: #f6f6f6;
  color: #999;
  font-size: 12px;
}

.scenic-price {
  position: absolute;
  right: 0;
  top: 4px;
  color: #666;
}

.pi-price {
  color: #ff5000;
  font-weight: 700;
}

.pi-price-lgt {
  font-size: 28px;
}

.scenic-summary {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 20px;
  padding-top: 20px;
}

.scenic-img-wrap {
  width: 600px;
  height: 270px;
  overflow: hidden;
  background: #eee;
}

.scenic-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scenic-sell-info-wrap {
  padding-top: 2px;
}

.scenic-sell-info-wrap dl {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px dotted #ddd;
  line-height: 1.6;
}

.scenic-sell-info-wrap dt {
  color: #999;
  text-align: right;
}

.scenic-sell-info-wrap dd {
  margin: 0;
  color: #333;
}

.sell-count em {
  color: #ff5000;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
}

.scenice-info {
  margin-top: 18px;
}

.des-wrap {
  padding: 0 20px 22px;
}

.tip {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 18px;
}

.tip h2 {
  display: inline-block;
  margin: 0;
  padding: 16px 0 10px;
  border-bottom: 2px solid #ff5000;
  color: #222;
  font-size: 22px;
}

.rich-detail {
  color: #444;
  line-height: 1.9;
}

.rich-detail .title h3 {
  margin: 18px 0 8px;
  color: #222;
  font-size: 18px;
}

.rich-detail .content {
  margin-bottom: 12px;
}

.rich-detail p {
  margin: 0 0 14px;
}

.rich-detail img {
  display: block;
  max-width: 100%;
  margin: 14px auto;
}

.map-placeholder {
  height: 168px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  background: linear-gradient(135deg, #eef3f5 25%, #f8fafb 25%, #f8fafb 50%, #eef3f5 50%, #eef3f5 75%, #f8fafb 75%);
  background-size: 28px 28px;
  color: #9aa6ad;
  text-align: center;
  line-height: 168px;
}

.detail-aside {
  display: grid;
  gap: 16px;
}

.supplier-card,
.booking-card {
  padding: 18px;
}

.supplier-name {
  color: #b8b8b8;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.supplier-card p {
  color: #555;
  line-height: 1.8;
}

.supplier-card span {
  display: inline-block;
  padding-left: 24px;
  color: #f3a400;
  font-size: 16px;
}

.supplier-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-card li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.booking-card h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .topbar-inner,
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
  }

  .top-links {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .logo,
  .search-box {
    width: 100%;
    max-width: 100%;
  }

  .nav .wrap {
    height: auto;
    overflow-x: auto;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 0 18px;
  }

  .hero {
    height: 220px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .scenic-summary {
    grid-template-columns: 1fr;
  }

  .scenic-img-wrap {
    width: 100%;
  }

  .scenic-tit-wrap {
    padding-right: 0;
  }

  .scenic-price {
    position: static;
    margin-top: 6px;
  }

  .article-list a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .search-box {
    height: auto;
    flex-wrap: wrap;
  }

  .search-tabs,
  .search-box input,
  .search-submit {
    height: 40px;
  }

  .search-box input {
    flex-basis: calc(100% - 90px);
    border-left: 2px solid #ff5000;
  }

  .search-tabs {
    width: 100%;
    border-right: 2px solid #ff5000;
    border-bottom: 0;
  }

  .search-tabs button {
    flex: 1;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== List Row Styles (original site format) ========== */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hotel-page {
  background: #f5f5f5;
  padding-bottom: 30px;
}

.hotel-content {
  width: 1190px;
  margin: 0 auto;
}

.hotel-layout {
  background: #fff;
  padding: 20px;
  margin-top: 10px;
}

.hotel-filter-list {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.hotel-filter-list .tit {
  float: left;
  width: 60px;
  font-size: 14px;
  color: #666;
  line-height: 28px;
  font-weight: 400;
}

.hotel-filter-list .con {
  margin-left: 60px;
}

.hotel-filter-list .con ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: middle;
}

.hotel-filter-list .con ul.any li,
.hotel-filter-list .con ul.list li {
  display: inline-block;
  margin: 0 4px;
}

.hotel-filter-list .con ul li a {
  display: block;
  padding: 2px 12px;
  line-height: 24px;
  color: #333;
  border-radius: 3px;
  font-size: 12px;
}

.hotel-filter-list .con ul li a:hover,
.hotel-filter-list .con ul li a.selected {
  background: #f60;
  color: #fff;
  text-decoration: none;
}

.list-head {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.list-head .tab-box {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-item.fleft {
  float: left;
}

.tab-title {
  font-size: 14px;
  color: #666;
  line-height: 30px;
}

.list-body {
  min-height: 300px;
}

/* List Row */
.list-row {
  padding: 0;
}

.row-box {
  padding: 15px 0;
  border-bottom: 1px dashed #e0e0e0;
  overflow: hidden;
}

.row-box:last-child {
  border-bottom: none;
}

.row-left.fleft {
  float: left;
  width: 210px;
  height: 140px;
  overflow: hidden;
}

.row-left.fleft img {
  width: 210px;
  height: 140px;
  object-fit: cover;
  display: block;
}

.row-right.fright {
  float: right;
  width: 120px;
  text-align: center;
}

.row-sub-right.fright {
  float: right;
  width: 130px;
  text-align: center;
}

.row-center {
  margin-left: 230px;
  margin-right: 270px;
}

.row-center .box {
  padding: 5px 0;
}

.row-index {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #f60;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

.row-title {
  display: inline;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
}

.row-title a {
  color: #333;
  text-decoration: none;
}

.row-title a:hover {
  color: #f60;
  text-decoration: underline;
}

.row-subtitle {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}

.row-address {
  margin: 8px 0 0;
  font-size: 12px;
  color: #666;
}

.row-address .area a {
  color: #666;
  text-decoration: none;
}

.row-address .area a:hover {
  color: #f60;
  text-decoration: underline;
}

.row-someone-book {
  margin: 8px 0 0;
  font-size: 12px;
  color: #999;
}

.row-other {
  margin-top: 8px;
}

.comment-score {
  display: inline-block;
  text-decoration: none;
}

.score {
  margin: 0;
}

.score .value {
  color: #f60;
  font-size: 28px;
  font-weight: 700;
}

.score .estimate {
  color: #999;
  font-size: 12px;
}

.box-price {
  height: 40px;
}

.no-price {
  margin: 0;
}

.view-detail {
  margin: 20px 0 0;
}

.btn {
  display: inline-block;
  padding: 6px 20px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.pi-btn-primary {
  background: #f60;
  color: #fff;
  border: 1px solid #f60;
}

.pi-btn-primary:hover {
  background: #e55a00;
  color: #fff;
  text-decoration: none;
}

.pi-btn-md {
  padding: 8px 24px;
  font-size: 14px;
}

.list-row-page {
  margin: 30px 0;
  text-align: center;
}

/* ========== Guide Detail Page ========== */
.spi-block {
  background: #fff;
  height: 20px;
  width: 1190px;
  margin: 0 auto;
}

.spi-nav-bar {
  width: 1154px;
  margin: 0 auto;
  padding: 15px 18px;
  background: #fff;
  font-size: 12px;
}

.spi-nav-bar a {
  color: #666;
  text-decoration: none;
}

.spi-nav-bar a:hover {
  color: #f60;
}

.spi-nav-bar-arrow {
  margin: 0 6px;
  color: #ccc;
}

.spi-nav-bar .html_title {
  display: inline;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.index-wrapper {
  width: 1190px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.index-wrapper .wrapper {
  padding: 0 18px 30px;
}

.sideL {
  float: left;
  width: 100%;
}

.brief {
  padding: 20px 0 10px;
}

.l-topic h1 {
  margin: 0;
  font-size: 24px;
  color: #333;
  line-height: 1.4;
}

.sub-tit {
  margin-top: 12px;
  color: #999;
  font-size: 12px;
}

.sub-tit .user {
  color: #1c7ed6;
}

.sub-tit .some {
  margin-left: 15px;
}

.content_main {
  margin-top: 20px;
  line-height: 1.8;
  color: #444;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.content_main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.content_main .mains h2 {
  font-size: 22px;
  color: #222;
  margin: 20px 0 12px;
}

.content_main .mains h3 {
  font-size: 18px;
  color: #333;
  margin: 18px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #f60;
}

.content_main .mains h4 {
  font-size: 15px;
  color: #444;
  margin: 14px 0 8px;
}

.content_main .mains p {
  margin: 0 0 12px;
  text-indent: 2em;
}

.content_main .mains strong {
  color: #333;
}

.pay-bar {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.pay-btn {
  display: inline-block;
  background-color: #e4393c;
  color: #fff;
  padding: 6px 24px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.pay-btn:hover {
  background-color: #c1272a;
}
