/** Shopify CDN: Minification failed

Line 536:15 Expected ":"

**/


.clipboard--bubble {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1); }


.blog-post-detail--wrapper {
  display: grid;
  gap: 40px;
  max-width: 850px;
  margin: 0 auto; }
  .blog-post-detail--wrapper-has-sidebar-true .blog-post-detail--wrapper--inner {
    position: relative; }
    .blog-post-detail--wrapper-has-sidebar-true .blog-post-detail--wrapper--inner:after {
      display: block;
      position: absolute;
      background-color: var(--color-border);
      z-index: 1;
      width: 1px;
      top: 0;
      bottom: 0;
      right: -40px; }
  @media only screen and (min-width: 1068px) {
    .blog-post-detail--wrapper-has-sidebar-true {
      max-width: 100%;
      gap: 80px;
      grid-template-columns: auto minmax(250px, 370px); }
      .blog-post-detail--wrapper-has-sidebar-true .blog-post-detail--wrapper--inner:after {
        content: ''; } }

.blog-post-detail--meta {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 15px; }
  .blog-post-detail--meta aside {
    display: inline-flex;
    margin: 0 25px 0 0;
    position: relative; }
    .blog-post-detail--meta aside:after {
      content: "";
      display: inline-block;
      width: 8px;
      height: 1px;
      background: var(--color-body);
      opacity: 0.8;
      position: absolute;
      top: 50%;
      margin-top: -1px;
      right: -18px; }
    .blog-post-detail--meta aside:last-child {
      margin-right: 0; }
      .blog-post-detail--meta aside:last-child:after {
        content: none; }

.blog-post-detail--title {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 850px; }
  @media only screen and (min-width: 768px) {
    .blog-post-detail--title {
      margin-bottom: 55px; } }
  .blog-post-detail--title .entry-title {
    margin-bottom: 30px; }

.blog-post-detail .featured-image {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  margin-bottom: 35px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .blog-post-detail .featured-image {
      margin-bottom: 55px;
      margin-left: 0;
      margin-right: 0;
      width: 100%; } }

.blog-post-detail .post-content {
  margin-bottom: 30px; }
  .blog-post-detail .post-content p + h1,
  .blog-post-detail .post-content p + h2,
  .blog-post-detail .post-content p + h3,
  .blog-post-detail .post-content p + h4,
  .blog-post-detail .post-content p + h5,
  .blog-post-detail .post-content p + h6 {
    margin-top: 40px; }

.blog-post-detail--sidebar .widget {
  margin-bottom: 25px; }
  .blog-post-detail--sidebar .widget label {
    font-weight: var(--font-body-medium-weight, 500); }

.blog-post-detail--sidebar .share-article {
  display: block;
  margin: 0; }
  .blog-post-detail--sidebar .share-article a {
    margin-right: 0;
    padding: 0; }
  .blog-post-detail--sidebar .share-article svg {
    height: 20px; }

.blog-post-detail--sidebar .product-cart-item--meta {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6; }

@media only screen and (min-width: 1068px) {
  .blog-post-detail--sidebar-inner {
    position: sticky;
    top: calc(var(--header-height, 0px) + 30px);
    left: 0; } }

.blog-post-detail--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.share-article {
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center; }
  .share-article svg {
    height: 16px;
    width: auto; }
  .share-article label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-body-medium-weight, 500);
    margin-right: 12px; }
  .share-article .social {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    width: 26px;
    height: 26px;
    padding: 5px;
    white-space: nowrap;
    color: var(--color-body); }

.clipboard {
  position: relative; }
  .clipboard--bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
    background-color: var(--color-body);
    color: var(--bg-body);
    white-space: nowrap;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 1px;
    opacity: 0;
    pointer-events: none;
    line-height: 1.25; }
    .clipboard--bubble:after {
      content: '';
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 3px 2.5px 0 2.5px;
      border-color: var(--color-body) transparent transparent transparent;
      transform: translateX(-2.5px);
      position: absolute;
      bottom: -3px;
      left: 50%; }
  .clipboard-success .clipboard--bubble {
    opacity: 1; }


/* 主容器 - 使用grid布局，调整为2:1比例 */
.parker-container {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 图片预览区占2/3，内容区占1/3 */
  gap: 20px;
  max-width: 1350px;
  margin: 50px auto;
  padding: 0 10px;
}

/* 图片预览区 */
.parker-preview-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: 1fr 1fr; */
  gap: 10px;
  height: 100%;
  min-height: 500px; /* 确保预览区有足够高度 */
}

.parker-preview-image {
  aspect-ratio: 9/16; /* 270x480的比例 (270÷30=9, 480÷30=16) */
  overflow: hidden;
  border-radius: 16px;
}

/* 确保所有内容填满容器 */
.parker-preview-image img,
.parker-preview-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 移除视频的固定尺寸 */
.parker-preview-image video {
  width: 100% !important;
  height: 100% !important;
}

.parker-preview-image:hover img {
  transform: scale(1.03);
}

.parker-image-border {
  border: 2px solid #cecece
}

/* 播放按钮和加载指示器 */
.parker-play-btn, .parker-loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.parker-play-btn:hover {
  opacity: 0.8 !important;
}

.parker-play-btn svg {
    width: 36px;
    height: 36px;
    margin-left: 4px; /* 微调三角形位置使其视觉居中 */
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5)); /* 添加阴影增强对比度 */
}

.parker-play-btn path {
    fill: #ffffff; /* 确保三角形为纯白色 */
}


.video-wrapper:hover .parker-play-btn {
  opacity: 1;
}

.video-wrapper {
  position: relative;
}

.parker-loading-indicator {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 3px solid #000;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 右侧内容区 */
.parker-content-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 下载选项区 */
.parker-download-section {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.parker-format-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.parker-format-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.parker-format-option:hover {
  color: #333;
}

.parker-radio-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.parker-radio-btn.checked::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
}

.parker-download-btn {
  width: 265px;
  background-color: #FFCC00;
  color: #fff;
  border: none;
  padding: 40px 10px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: fit-content;
  margin-top: 5px;
  transition: all 0.2s ease;
}

.parker-download-btn:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

/* 标题和评分 */
.parker-title-section h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.parker-rating {
  color: #FFCC00;
  display: inline-block;
}

.parker-reviews {
  color: #666;
  font-size: 14px;
  display: inline-block;
}

/* FAQ部分 */
.parker-faq-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.parker-faq-section h3 {
  font-size: 24px;
  margin-bottom: -12px;
}

.parker-faq-intro {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.parker-contact-btn {
  background-color: #FFCC00;
  color: #033c86;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  margin-bottom: 15px;
  transition: all 0.2s ease;
}

.parker-contact-btn:hover {
  background-color: #ffd633;
}

.parker-faq-item {
  border-bottom: 1px solid #eee;
  padding-top: 10px;
}

.parker-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.parker-faq-question:hover {
  color: #333;
}

.parker-faq-question::after {
  content: "▼";
  font-size: 12px;
  color: #666;
  transition: transform 0.3s ease;
}

.parker-faq-question.active::after {
  transform: rotate(180deg);
}

.parker-faq-answer {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .parker-container {
      grid-template-columns: 1fr; /* 移动端堆叠布局 */
  }
  
  .parker-preview-section {
      min-height: 400px;
  }
  
  /* 下载区域在移动端改为垂直排列 */
  .parker-download-section {
      flex-direction: column;
  }
  
  .parker-download-btn {
      width: 100%;
      padding: 15px 20px;
  }

  .parker-format-options  {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0 30px;
  }
}

/* 小屏幕适配 */
@media (max-width: 480px) {
  .parker-preview-section {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      min-height: 300px;
  }
  
  .parker-title-section h2 {
      font-size: 20px;
      text-align: center;
  }
}

.parker-download-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-container {
    position: relative;
    width: 32px;
    height: 32px;
}

.download-icon, .loading-icon {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.parker-download-btn:active {
    transform: scale(0.97);
}

.parker-download-btn.loading {
    opacity: 0.8;
    cursor: wait;
}

.loading-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 添加模态框样式 */
.parker-modal {
    position: fixed;
    top: 0;
    left: 0; hj    
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.parker-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.parker-modal-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
}

.parker-modal-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.parker-modal-link {
    margin: 20px 0;
}

.parker-link-container {
    display: flex;
    gap: 10px;
}

#parker-download-link {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#parker-copy-link, #parker-modal-close {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#parker-copy-link {
    background-color: #4CAF50;
    color: white;
    white-space: nowrap;
}

#parker-copy-link:hover {
    background-color: #45a049;
}

#parker-modal-close {
    background-color: #f44336;
    color: white;
    margin-top: 10px;
    width: 100%;
}

#parker-modal-close:hover {
    background-color: #d32f2f;
}

/* 响应式调整 */
@media (max-width: 600px) {
    .parker-modal-content {
        width: 90%;
        padding: 15px;
    }
    
    .parker-link-container {
        flex-direction: column;
    }
    
    #parker-copy-link {
        width: 100%;
    }
}