/* ===== 内页顶栏 ===== */
.inner-topbar {
  background-color: #f5f7fa;
  border-bottom: 1px solid #f2f4f9;
  height: 50px;
  line-height: 50px;
}

.inner-topbar-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.inner-topbar-welcome {
  font-size: 16px;
  color: #444;
}

.inner-topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #444;
  margin-left: 100px;
}

.inner-topbar-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.inner-topbar-phone-icon img {
  width: 100%;
  height: 100%;
}

.inner-topbar-phone-num {
  font-size: 16px;
  color: #444;
}

.inner-topbar-auth {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 12px;
}

.inner-topbar-login {
  display: inline-block;
  padding: 2px 18px;
  height: 26px;
  line-height: 26px;
  background-color: #1677ff;
  color: #fff;
  font-size: 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.inner-topbar-login:hover {
  background-color: #0e5ed4;
  color: #fff;
}

.inner-topbar-register {
  display: inline-block;
  padding: 2px 18px;
  height: 26px;
  line-height: 26px;
  background-color: #e9f3fd;
  color: #3b87f9;
  font-size: 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.inner-topbar-register:hover {
  color: #1677ff;
}

/* ===== 内页头部 ===== */
.inner-header {
  background-color: #fff;
  height: 60px;
  margin-top: 20px;
}

.inner-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.inner-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.inner-logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

/* ===== 内页导航 ===== */
.inner-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 50px;
}

.inner-nav-item {
  position: relative;
  font-size: 17px;
  color: #333;
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.inner-nav-item:hover {
  color: #1677ff;
}

.inner-nav-item.active {
  color: #1677ff;
  font-weight: 500;
}

.inner-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background-color: #1677ff;
  border-radius: 2px;
}

/* ===== 内页面包屑 ===== */
.inner-breadcrumb {
  background-color: #fff;
  height: 20px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 55px;
}

.inner-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.inner-breadcrumb-item {
  font-size: 16px;
  color: #666;
}

.inner-breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.inner-breadcrumb-item a:hover {
  color: #1677ff;
}

.inner-breadcrumb-sep {
  font-size: 12px;
  color: #999;
}

.inner-breadcrumb-current {
  color: #333;
}

.inner-search-group {
  background: #fafafa;
  border-radius: 6px;
  padding: 10px 20px;
}

.inner-search-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  height: 56px;
  padding: 0 20px;
  width: 760px;
  margin-bottom: 10px;
}

.inner-search-icon {
  font-size: 22px;
  color: #999;
  margin-right: 10px;
  flex-shrink: 0;
}

.inner-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
}

.inner-search-input::placeholder {
  color: #bbb;
}

.inner-search-btn {
  flex-shrink: 0;
  height: 50px;
  padding: 0 30px;
  background-color: #e8722a;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-right: -16px;
  transition: background-color 0.2s ease;
  border-radius: 6px;
}

.inner-search-btn:hover {
  background-color: #d0621e;
}

.resource-section {
  margin-top: 20px;
}

.resource-section__title {
  font-size: 30px;
  color: #222;
  font-weight: bold;
  padding-left: 55px;
  background: url(../images/s1.png) no-repeat 0 5px;
  background-size: 47px;
  border-bottom: 1px solid #f2f4f9;
  padding-bottom: 20px;
}

/* ===== 仪器资源列表 ===== */
.resource-section__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 24px 0;
}

/* 卡片整体 */
.resource-card {
  background-color: #fff;
  border: 1px solid #eaeef3;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

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

/* 卡片封面图 */
.resource-card__cover {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 比例 */
  overflow: hidden;
  flex-shrink: 0;
}

.resource-card__cover a {
  position: absolute;
  inset: 0;
  display: block;
}

.resource-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.resource-card:hover .resource-card__cover img {
  transform: scale(1.04);
}

/* 创新券标签（CSS 生成） */
.resource-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 10px;
  /* background-color: #e8722a; */
  background-color: #e8722a;
  color: #fff;
  font-size: 12px;
  border-bottom-left-radius: 6px;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* 卡片内容区 */
.resource-card__body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

/* 仪器名称 */
.resource-card__title {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 用户/机构信息 */
.resource-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.resource-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  width: 50%;
  flex-shrink: 0;
  word-break: break-all;
}

.resource-card__meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card__meta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 统计数据 */
.resource-card__stats {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.resource-card__stats-sep {
  color: #ddd;
}

/* 价格 */
.resource-card__price {
  font-size: 18px;
  font-weight: bold;
  color: #e8722a;
  margin-top: auto;
}

/* 操作按钮行 */
.resource-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.resource-card__btn {
  flex: 1;
  height: 34px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: opacity 0.2s;
}

.resource-card__btn:hover {
  opacity: 0.85;
}

.resource-card__btn--primary {
  background-color: #e8f3ff;
  color: #1677ff;
  border: 1px solid #b3d4ff;
}

.resource-card__btn--default {
  background-color: #fff;
  color: #0995ED;
  border: 1px solid #0995ED;
}

.resource-card__btn-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-card__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dept-section {
  margin-top: 20px;
}

.dept-section__title {
  font-size: 30px;
  color: #222;
  font-weight: bold;
  padding-left: 55px;
  background: url(../images/s1.png) no-repeat 0 5px;
  background-size: 47px;
  border-bottom: 1px solid #f2f4f9;
  padding-bottom: 20px;
}

/* 部门列表网格：一行两列 */
.dept-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 30px;
}

/* 部门卡片 */
.dept-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  transition: box-shadow 0.2s;
}

/* 封面图 */
.dept-card__cover {
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  border: 1px dashed #d0d5e0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-card__cover img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 右侧信息区 */
.dept-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 220px;
  min-width: 0;
}

/* 标题行：徽标 + 名称 */
.dept-card__header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.dept-card__badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #fff;
  background-color: #ff6a36;
  border-radius: 0 6px 0 6px;
  line-height: 20px;
  margin-top: 3px;
}

.dept-card__name {
  font-size: 17px;
  font-weight: bold;
  color: #222;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 摘要描述 */
.dept-card__desc {
  font-size: 14px;
  color: #888;
  margin: 0 0 12px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 统计数据行 */
.dept-card__stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.dept-card__stats-sep {
  color: #ccc;
}

/* 预约按钮 */
.dept-card__footer {
  margin-top: auto;
}

.dept-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border: 1px solid #1677ff;
  border-radius: 4px;
  color: #1677ff;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.dept-card__btn:hover {
  background-color: #1677ff;
  color: #fff;
}

.dept-card__btn img {
  display: block;
}

/* ===== 仪器/单位 详情页 (idetail-) ===== */

/* 顶部两栏布局 */
.idetail-top {
  display: flex;
  gap: 40px;
  padding: 30px 0 0;
}

/* 左侧封面图 */
.idetail-cover {
  flex-shrink: 0;
  width: 740px;
  height: 550px;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f7fa;
}

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

/* 右侧元信息区 */
.idetail-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 标题 */
.idetail-title {
  display: flex;
  align-items: flex-start;
  font-size: 30px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.idetail-title .coupon-badge {
  margin: 8px 10px 0 0;
}

/* 文字信息列表 */
.idetail-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.idetail-info__item {
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 28px;
}

.idetail-info__label {
  flex-shrink: 0;
  color: #555;
}

.idetail-info__value {
  color: #333;
}

.idetail-info__value--price {
  color: #e8722a;
  font-weight: 500;
}

/* 服务商信息框 */
.idetail-provider {
  background: #f7f9fc;
  border: 1px solid #e8edf3;
  border-radius: 6px;
  padding: 14px 38px;
  margin: 30px 0;
}

.idetail-provider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.idetail-provider__name {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
}

.idetail-provider__more {
  font-size: 13px;
  color: #1677ff;
  text-decoration: none;
  flex-shrink: 0;
}

.idetail-provider__more:hover {
  text-decoration: underline;
}

.idetail-provider__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.idetail-provider__stats-row {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #666;
}

.idetail-provider__stats-row > span {
  width: 24%;
}

.idetail-provider__stats-row b {
  font-weight: normal;
  color: #333;
}

/* 操作按钮行 */
.idetail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 20px;
}

.idetail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.idetail-btn--primary {
  background-color: #1677ff;
  color: #fff;
  border: 1px solid #1677ff;
}

.idetail-btn--primary:hover {
  background-color: #0e5ed4;
  color: #fff;
}

.idetail-btn--outline {
  background-color: #fff;
  color: #1677ff;
  border: 1px solid #1677ff;
}

.idetail-btn--outline:hover {
  background-color: #e8f3ff;
  color: #1677ff;
}

.idetail-btn img {
  display: block;
}

/* ===== Tab 标签 ===== */
.idetail-tabs {
  margin-top: 30px;
  margin-bottom: 30px;
}

.idetail-tabs__nav {
  display: inline-flex;
  background-color: #EFEFEF;
  border: 3px solid #EFEFEF;
  border-radius: 30px;
  margin-left: 10px;
  gap: 0;
}

.idetail-tabs__item {
  padding: 10px 28px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  border-bottom: none;
  border-radius: 30px;
  transition: color 0.2s;
  background: transparent;
}

.idetail-tabs__item:hover {
  color: #1677ff;
}

.idetail-tabs__item.is-active {
  color: #1a1a1a;
  border-color: #e0e4ea;
  background: #fff;
}

/* Tab 内容面板 */
.idetail-tabs__body {
  margin-top: 30px;
  border-top: 1px solid #DDDDDD;
  background: #fff;
  padding: 12px 0;
}

.idetail-tabs__panel {
  display: none;
  font-size: 15px;
  color: #444;
  line-height: 2;
}

.idetail-tabs__panel.is-active {
  display: block;
}

.idetail-tabs__panel p {
  margin: 0 0 6px;
}

.new-page-banner {
  height: 160px;
  background: url(../images/new-page-banner.png) no-repeat center;
  background-size: cover;
  margin-top: 10px;
}

.news-article {
  padding-bottom: 200px;
}

.news-article .news-title {
  color: #1a1a1a;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  color: #222222;
  margin-bottom: 20px;
}

.news-article .news-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  margin-bottom: 30px;
}

.news-article .news-content {
  font-size: 16px;
  color: #666666;
  line-height: 32px;
}

.news-article .news-content img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
}

.news-article .news-content p {
  text-indent: 2em;
}

/* ===== 新闻列表 ===== */
.news-list {
  padding: 0 0 60px;
}

.news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e8eaf0;
}

.news-list-item:first-child {
  border-top: 1px solid #e8eaf0;
}

.news-date-box {
  flex-shrink: 0;
  width: 80px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid #0A4CE3;
}

.news-date-ym {
  font-size: 18px;
  width: 100%;
  color: #fff;
  min-height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #0A4CE3;
}

.news-date-d {
  height: 36px;
  line-height: 36px;
  font-size: 28px;
  color: #0A4CE3;
}

.news-info {
  flex: 1;
  min-width: 0;
}

.news-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.2s;
}

.news-item-title:hover {
  color: #1677ff;
}

.news-item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-more {
  font-size: 14px;
  color: #1677ff;
  text-decoration: none;
  transition: color 0.2s;
}

.news-item-more:hover {
  color: #0e5ed4;
}

.coupon-page-banner {
  height: 360px;
  background: url(../images/ibaner2.png) no-repeat center;
  background-size: cover;
}

/* ===== 创新券订单表单 ===== */
.coupon-form {
  background: #fff;
  border-radius: 6px;
  padding: 36px 58px 58px;
  margin: 20px 0 40px;
}

.coupon-form-title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin: 0 0 28px;
}

/* 步骤条 */
.coupon-steps {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  width: 70%;
}

.coupon-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-step__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #bbb;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coupon-step--active .coupon-step__circle {
  background-color: #1677ff;
  color: #fff;
}

.coupon-step__name {
  font-size: 14px;
  color: #bbb;
}

.coupon-step--active .coupon-step__name {
  color: #1677ff;
  font-weight: 500;
}

.coupon-step__date {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.coupon-step__line {
  flex: 1;
  height: 1px;
  border-top: 1px dashed #e0e0e0;
  margin: 0 24px;
}

.coupon-form-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 0 0 28px;
}

/* 表单行 */
.coupon-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.coupon-row--double {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.coupon-col {
  flex: 1;
  display: flex;
  align-items: center;
}

/* 标签 */
.coupon-label {
  flex-shrink: 0;
  width: 115px;
  font-size: 14px;
  color: #333;
  padding-top: 8px;
  line-height: 1.5;
}

.coupon-row--double .coupon-label {
  padding-top: 0;
}

.coupon-label--required::after {
  content: ' *';
  color: #f5222d;
}

/* 字段容器 */
.coupon-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 下拉 */
.coupon-select {
  width: 100%;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 30px 0 12px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.coupon-select:focus {
  border-color: #1677ff;
}

/* 多行输入 */
.coupon-textarea {
  width: 100%;
  height: 110px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.coupon-textarea--sm {
  height: 70px;
}

.coupon-textarea:focus {
  border-color: #1677ff;
}

/* 单行输入 */
.coupon-input {
  width: 100%;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  flex-shrink: 0;
}

.coupon-input:focus {
  border-color: #1677ff;
}

.coupon-unit {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 文件上传 */
.coupon-field--upload {
  gap: 14px;
  align-items: center;
}

.coupon-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
  background-color: #1677ff;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.coupon-upload-btn:hover {
  background-color: #0e5ed4;
}

.coupon-upload-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
}

.coupon-upload-hint {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* 底部按钮 */
.coupon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.coupon-btn-submit {
  padding: 0 44px;
  height: 38px;
  background-color: #1677ff;
  color: #fff;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.coupon-btn-submit:hover {
  background-color: #0e5ed4;
}

.coupon-btn-back {
  padding: 0 44px;
  height: 38px;
  background-color: #fff;
  color: #1677ff;
  font-size: 15px;
  border: 1px solid #1677ff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.coupon-btn-back:hover {
  background-color: #e6f0ff;
}

.coupon-form {
  position: relative;
  top: -80px;
  background: #fff;
  border-radius: 6px;
  padding: 36px 48px 48px;
  margin: 0 auto;
  width: 1400px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
}

.normal-page-banner {
  height: 360px;
  background: url(../images/ibaner1.png) no-repeat center;
  background-size: cover;
}

.coupon-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #fff;
  background-color: #ff6a36;
  border-radius: 0 6px 0 6px;
  line-height: 20px;
  margin-top: 3px;
}