@charset "UTF-8";
.metas-title {
  font-size: 2em !important;
  line-height: 1.45;
  color: #444;
  font-weight: bold;
  padding: 30px;
  text-align: center; }

.btbar {
  padding: 0;
  margin-top: -17px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: #fff; }
  @media (max-width: 767px) {
    .btbar {
      margin-bottom: 0;
      position: fixed;
      z-index: 1000;
      display: flex;
      align-items: stretch;
      height: 60px;
      border-top: 1px solid #ddd;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      background: #fff; } }
  .btbar .pull-left {
    float: left; }
    @media (max-width: 767px) {
      .btbar .pull-left {
        float: none;
        display: flex;
        flex: 2;
        background: #fff; } }
  .btbar .item {
    height: 60px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    line-height: 28px;
    color: #6e727b;
    font-size: 14px;
    float: left;
    cursor: pointer;
    transition: all 0.3s ease; }
    .btbar .item:not(:last-child) {
      border-right: 1px solid #eee; }
    @media (max-width: 767px) {
      .btbar .item {
        height: auto;
        padding: 8px 5px;
        font-size: 12px;
        line-height: 16px;
        flex: 1;
        float: none;
        position: relative;
        border-right: none;
        background: #fff;
        border-radius: 0;
        justify-content: center; }
        .btbar .item:not(:last-child)::after {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          height: 24px;
          width: 1px;
          background: #f0f0f0; }
        .btbar .item i {
          font-size: 18px;
          margin-bottom: 4px;
          color: #666;
          transition: all 0.3s ease; }
        .btbar .item span {
          font-size: 11px;
          font-weight: 500;
          color: #555; }
        .btbar .item:hover {
          background: #f8f9fa; }
          .btbar .item:hover i, .btbar .item:hover span {
            color: #1829b2; }
          .btbar .item:hover::after {
            opacity: 0; }
        .btbar .item:active {
          background: #f0f0f0; } }
    .btbar .item:hover {
      background-color: #f8f9fa;
      color: #1829b2; }
  .btbar .clearfix {
    clear: both; }
    @media (max-width: 767px) {
      .btbar .clearfix {
        display: none; } }

.test-button {
  cursor: pointer;
  width: 40%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  float: right;
  font-size: 20px;
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
  border: 0;
  transition: all 0.3s ease; }
  @media (max-width: 767px) {
    .test-button {
      width: auto;
      height: auto;
      line-height: 60px;
      font-size: 18px;
      float: none;
      flex: 2;
      background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
      border-radius: 0;
      margin: 0;
      box-shadow: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: block;
      padding: 0; } }
  .test-button:hover {
    background: linear-gradient(135deg, #e55f00 0%, #d6086b 100%); }
    @media (max-width: 767px) {
      .test-button:hover {
        background: linear-gradient(135deg, #e55f00 0%, #d6086b 100%);
        transform: none;
        box-shadow: none; } }
  .test-button:active {
    transform: scale(0.98); }
    @media (max-width: 767px) {
      .test-button:active {
        transform: scale(0.98); } }

@media (max-width: 767px) {
  .btbar {
    border-top: none; }
    .btbar .pull-left {
      border: none;
      border-right: none; }
    .btbar .item, .btbar .test-button {
      border: none;
      border-radius: 0; }
    .btbar .test-button {
      font-size: 18px;
      font-weight: 600;
      background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
      box-shadow: none;
      border-left: 1px solid rgba(255, 255, 255, 0.3); } }
.mental .panel-title {
  font-size: 1.8em !important;
  text-align: center; }
  .mental .panel-title::after {
    content: "";
    display: block;
    height: 6px;
    width: 8%;
    margin: 12px auto 0;
    border-radius: 6px;
    background: #007bff; }
  @media (max-width: 767px) {
    .mental .panel-title {
      font-size: 1.4em !important; }
      .mental .panel-title::after {
        width: 13%;
        margin: 10px auto 0;
        height: 3px; } }

.article-text li {
  margin-bottom: 20px;
  font-size: 1.2em; }

.mental .article-image > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center; }

/* testpage */
/* 进度条容器 */
.progress-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0.8rem 1.2rem;
  background: rgba(241, 245, 249, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(8px); }

/* 进度条轨道 */
.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden; }

/* 进度条填充 */
.progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress, 25%);
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.33, 1, 0.68, 1); }

/* 进度计数器 */
.progress-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  gap: 0.3rem; }

.progress-count span:first-child {
  color: #3b82f6; }

.progress-count span:last-child {
  color: #64748b; }

/* 响应式设计 */
@media (max-width: 768px) {
  .progress-container {
    padding: 0.6rem 1rem;
    gap: 1rem; }

  .progress-bar {
    height: 6px; }

  .progress-count {
    font-size: 1rem; } }
/*swiper*/
.swiper .question {
  font-size: 30px;
  color: #ff5a72;
  font-weight: bold;
  margin: 50px 0;
  height: auto;
  min-height: 50px;
  display: flex;
  justify-content: space-around;
  flex-direction: column; }
.swiper .swiper-slide {
  width: 0;
  height: 0;
  overflow: hidden; }
.swiper .swiper-slide-active {
  height: auto !important; }

/*selector*/
.option-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  gap: 0.8rem; }

.option-item {
  padding: 1.2rem 2rem 1.2rem 3rem;
  /* 增加左侧padding */
  background: #ffffff;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  margin-bottom: 1.2rem; }

/* 新增左侧装饰条 */
.option-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c7d2fe;
  /* 浅蓝色 */
  border-radius: 2px;
  transition: all 0.2s ease; }

/* 悬停状态 */
.option-item:not(.selected):hover {
  border-color: #c7d2fe;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.08); }

.option-item:not(.selected):hover::before {
  background: #3b82f6;
  /* 悬停时装饰条变主蓝色 */
  height: 100%; }

/* 选中状态 */
.option-item.selected {
  border-color: #3b82f6;
  background: #f8faff; }

.option-item.selected::before {
  background: #3b82f6;
  /* 主蓝色 */
  height: 80%;
  width: 5px; }

/* 字母标识（保留右侧圆形） */
.option-item::after {
  content: attr(data-key);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #3b82f6; }

.option-item.selected::after {
  background: #3b82f6;
  color: white; }

/* 文字内容 */
.option-text {
  font-size: 1.1rem;
  color: #1e293b;
  padding-right: 3rem; }

/* 移动端适配 */
@media (max-width: 768px) {
  .option-item {
    padding: 1rem 1.5rem 1rem 2.5rem;
    /* 调整左右padding */ }

  .option-item::before {
    width: 3px; }

  .option-text {
    font-size: 1rem; }

  .option-item::after {
    right: 1rem;
    width: 22px;
    height: 22px;
    font-size: 0.9rem; } }
/* Swiper styles */
.swiper {
  position: relative;
  overflow: hidden; }

.swiper-wrapper {
  display: flex; }

.swiper-slide {
  flex: 1 0 auto;
  opacity: 0;
  transition: opacity 0.3s; }

.swiper-slide-active {
  opacity: 1; }

.questionpic {
  width: 32%;
  float: left;
  margin-right: 1%; }
  .questionpic .option-text img {
    width: 80%; }

/*结果样式*/
#times, #title, #analysis, #echart, #table {
  /* 优化后的表格样式 */
  /* 优化列分割线 - 只在单元格内容区域添加 */
  /* 优化表头底部线 - 使用伪元素创建连续线 */
  /* 斑马纹表格行 */
  /* 确保表格本身也有边框 */
  /* 确保第一行和最后一行有上下边框 */
  /* 确保第一列和最后一列有左右边框 */
  /* 新增：响应式调整 */ }
  #times h2, #title h2, #analysis h2, #echart h2, #table h2 {
    display: block;
    text-align: center; }
  #times h2::after, #title h2::after, #analysis h2::after, #echart h2::after, #table h2::after {
    content: "";
    display: block;
    height: 6px;
    width: 8%;
    margin: 12px auto 0;
    border-radius: 6px;
    background: #007bff; }
  #times .table-container, #title .table-container, #analysis .table-container, #echart .table-container, #table .table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
  #times table, #title table, #analysis table, #echart table, #table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* 关键修改：使用固定布局确保列宽一致 */
    table-layout: fixed; }
  #times th, #times td, #title th, #title td, #analysis th, #analysis td, #echart th, #echart td, #table th, #table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    /* 添加文本溢出处理 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  #times th:not(:last-child), #times td:not(:last-child), #title th:not(:last-child), #title td:not(:last-child), #analysis th:not(:last-child), #analysis td:not(:last-child), #echart th:not(:last-child), #echart td:not(:last-child), #table th:not(:last-child), #table td:not(:last-child) {
    border-right: 1px solid #e8e8e8; }
  #times th, #title th, #analysis th, #echart th, #table th {
    background-color: #f2f6fc;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    /* 关键修改：为表头设置最小宽度 */
    min-width: 120px; }
  #times thead tr, #title thead tr, #analysis thead tr, #echart thead tr, #table thead tr {
    position: relative; }
  #times tbody tr:hover, #title tbody tr:hover, #analysis tbody tr:hover, #echart tbody tr:hover, #table tbody tr:hover {
    background-color: #f5f9ff; }
  #times tbody tr:nth-child(even):hover, #title tbody tr:nth-child(even):hover, #analysis tbody tr:nth-child(even):hover, #echart tbody tr:nth-child(even):hover, #table tbody tr:nth-child(even):hover {
    background-color: #f0f5ff; }
  #times .table-container, #title .table-container, #analysis .table-container, #echart .table-container, #table .table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
  #times table, #title table, #analysis table, #echart table, #table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    table-layout: fixed;
    border: 1px solid #e0e0e0;
    /* 添加表格边框 */ }
  #times tbody tr:first-child td, #title tbody tr:first-child td, #analysis tbody tr:first-child td, #echart tbody tr:first-child td, #table tbody tr:first-child td {
    border-top: 1px solid #e0e0e0; }
  #times tbody tr:last-child td, #title tbody tr:last-child td, #analysis tbody tr:last-child td, #echart tbody tr:last-child td, #table tbody tr:last-child td {
    border-bottom: 1px solid #e0e0e0; }
  #times th:first-child, #times td:first-child, #title th:first-child, #title td:first-child, #analysis th:first-child, #analysis td:first-child, #echart th:first-child, #echart td:first-child, #table th:first-child, #table td:first-child {
    border-left: 1px solid #e0e0e0; }
  #times th:last-child, #times td:last-child, #title th:last-child, #title td:last-child, #analysis th:last-child, #analysis td:last-child, #echart th:last-child, #echart td:last-child, #table th:last-child, #table td:last-child {
    border-right: 1px solid #e0e0e0; }
  #times .entry, #title .entry, #analysis .entry, #echart .entry, #table .entry {
    margin-bottom: 10px; }
  @media (max-width: 768px) {
    #times .col-1, #times .col-2, #times .col-3, #times .col-4, #times .col-5, #title .col-1, #title .col-2, #title .col-3, #title .col-4, #title .col-5, #analysis .col-1, #analysis .col-2, #analysis .col-3, #analysis .col-4, #analysis .col-5, #echart .col-1, #echart .col-2, #echart .col-3, #echart .col-4, #echart .col-5, #table .col-1, #table .col-2, #table .col-3, #table .col-4, #table .col-5 {
      width: auto; }
    #times th, #times td, #title th, #title td, #analysis th, #analysis td, #echart th, #echart td, #table th, #table td {
      padding: 8px 10px;
      font-size: 14px; } }

/* 底部基础样式 - 保持PC端原样 */
#footer {
  color: #9b9ea0;
  background: #333639; }

#footer a {
  text-decoration: none;
  color: #9b9ea0; }

#footer a:hover {
  color: #ddd; }

#footer .contact {
  margin-right: 0 !important; }

#footer .ewm {
  float: left;
  width: 130px;
  padding-top: 50px; }

#footer .ewm p {
  line-height: 38px;
  height: 38px;
  text-align: center; }

#footer .f2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

#footer .f2 .nav-bottom {
  text-align: right; }

#footer .list, #footer .contact {
  float: left;
  width: 20%;
  margin-right: 30px;
  padding: 50px 0; }

#footer .list dt, #footer .contact dt {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 20px; }

#footer .list dd, #footer .contact dd {
  border-right: 1px solid rgba(255, 255, 255, 0.1); }

#footer .list dd a, #footer .contact dd a {
  float: left;
  width: 40%;
  padding: 8px 0; }

#footer .f2 .copyright, #footer .f2 .nav-bottom {
  line-height: 50px;
  float: left;
  width: 50%;
  height: 50px; }

/* 移动端响应式调整 - 只在小于768px时生效 */
@media (max-width: 767px) {
  #footer .f1 {
    display: block;
    padding: 20px 15px; }

  #footer .list,
  #footer .contact {
    width: 100%;
    float: none;
    margin-right: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; }

  #footer .list:last-child,
  #footer .contact {
    border-bottom: none; }

  #footer .list dt,
  #footer .contact dt {
    font-size: 16px;
    margin-bottom: 10px; }

  #footer .list dd {
    border-right: none;
    display: flex;
    flex-wrap: wrap; }

  #footer .list dd a {
    width: 50%;
    padding: 6px 0;
    box-sizing: border-box; }

  #footer .contact {
    text-align: center; }

  #footer .contact dt.tel,
  #footer .contact dt.qq {
    display: inline-block;
    margin: 0 10px; }

  #footer .ewm {
    float: none;
    width: 100%;
    padding: 20px 0;
    text-align: center; }

  #footer .f2 {
    padding: 0 15px; }

  #footer .f2 .copyright,
  #footer .f2 .nav-bottom {
    width: 100%;
    float: none;
    text-align: center;
    line-height: 1.5;
    padding: 10px 0; }

  #footer .f2 .nav-bottom em {
    display: inline-block;
    margin: 0 5px; } }
/* 重置Layer可能影响的样式 */
.layui-layer-page .layui-layer-content {
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important; }

.layui-layer-page.popup {
  border-radius: 100% !important;
  width: auto !important; }

/* 你的自定义样式 */
.payment-modal {
  width: 100%;
  max-width: 850px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }

.payment-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
  position: relative; }

.payment-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  position: relative;
  display: inline-block; }

.payment-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 3px;
  background: #07C160;
  border-radius: 2px; }

.payment-content {
  display: flex;
  min-height: 400px; }

/* 优化后的订单信息区域 */
.order-section {
  flex: 1;
  padding: 32px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column; }

.order-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.order-item {
  display: flex;
  margin-bottom: 24px;
  font-size: 15px;
  position: relative;
  padding-left: 24px; }

.order-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #07C160; }

.order-label {
  width: 100px;
  color: #666;
  flex-shrink: 0;
  font-weight: 500; }

.order-value {
  color: #333;
  font-weight: 500;
  flex: 1;
  text-align: right;
  word-break: break-word; }

.amount-display {
  margin-top: 20px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px dashed #ddd; }

.amount {
  font-size: 36px;
  font-weight: 700;
  color: #FF5F57;
  letter-spacing: 1px;
  position: relative; }

.amount:before {
  content: "¥";
  font-size: 24px;
  margin-right: 4px; }

/* 支付区域优化 */
.payment-section {
  width: 380px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-left: 1px solid #e9ecef; }

.qrcode-container {
  text-align: center;
  margin-bottom: 24px; }

.qrcode-box {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  padding: 16px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden; }

.qrcode-img {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  border-radius: 6px; }

.qrcode-tip {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px; }

.qrcode-logo {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.qrcode-logo i {
  color: #07C160;
  font-size: 22px; }

.mobile-payment {
  display: none;
  width: 100%;
  text-align: center; }

.pay-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #07C160, #06AD56);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center; }

.pay-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 193, 96, 0.4); }

.pay-button i {
  margin-right: 8px;
  font-size: 20px; }

.payment-tip {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 16px; }

.qr-code-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
  background: #f5f5f5;
  border-radius: 4px; }

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #09bb07;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px; }

.loading-text {
  color: #666;
  font-size: 14px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* 响应式设计 */
@media (max-width: 768px) {
  .payment-content {
    flex-direction: column;
    min-height: auto; }

  .order-section {
    padding: 24px;
    border-bottom: 1px solid #e9ecef; }

  .payment-section {
    width: 100%;
    padding: 24px;
    border-left: none; }

  .qrcode-box {
    width: 220px;
    height: 220px; }

  .qrcode-payment {
    display: none; }

  .mobile-payment {
    display: block; } }
/* 分隔线 */
.sidebar {
  /* meta 区域样式独立，避免继承自其它 a 的样式 */
  /* 缩略图（右侧） */ }
  .sidebar .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    background: transparent;
    transition: background .12s ease; }
  .sidebar .content {
    flex: 1 1 auto;
    min-width: 0;
    /* 允许文本换行截断，防止溢出 */ }
  .sidebar .title {
    margin: 0 0 6px 0;
    line-height: 1.4;
    word-break: break-word; }
  .sidebar .title a {
    text-decoration: none;
    display: inline-block; }
  .sidebar .title a:hover {
    color: var(--accent);
    text-decoration: underline; }
  .sidebar .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    padding-top: 20px; }
  .sidebar .meta .count {
    white-space: nowrap;
    color: #828a92; }
  .sidebar .meta .action {
    text-decoration: none;
    font-size: 14px;
    color: #ff5722; }
  .sidebar .meta .action:hover {
    text-decoration: underline; }
  .sidebar .thumb {
    flex-shrink: 0;
    width: 84px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f2f4; }
  .sidebar .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .sidebar .thumb img:hover {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }

.sidebar .item:hover {
  background: rgba(0, 0, 0, 0.02); }

.sidebar .item + .item {
  border-top: 1px solid  #eceff1; }

.countdown-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3); }

.countdown-warning {
  background: #dc3545 !important;
  animation: pulse 0.5s infinite alternate; }

/*# sourceMappingURL=mental.css.map */
