


/* 删除 * 上的 font-family */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family 移走！ */
}

/* 改为在 body 上设置 */
body {
  background-color: #f9f9f9;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}



.jy-xzt-body {
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: background-color 0.5s;
}

.jy-xzt-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

/* 顶部 LOGO 区域 - 左上角 */
.jy-xzt-logo-container {
  position: fixed;
  top: 20px;
  left: 25px;
  z-index: 1002;
  animation: jy-xzt-fadeInDown 1s ease-out;
}

.jy-xzt-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ff6b8b;
  font-weight: 700;
  font-size: 18px;
  gap: 10px;
}

.jy-xzt-logo-img {
  height: 62px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.jy-xzt-logo-img:hover {
  transform: scale(1.1);
}

/* 顶部控制栏 - 全屏右上角显示 */
.jy-xzt-controls {
  position: fixed;
  top: 20px;
  right: 25px;
  display: flex;
  gap: 15px;
  z-index: 100;
  justify-content: flex-end;
  background: transparent;
}

.jy-xzt-lang-fixed {
  background: transparent;
  color: #475569;
  border: 2px solid #cbd5e1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.jy-xzt-lang-fixed:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #334155;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(148, 163, 184, 0.15);
}

.jy-xzt-menu-toggle {
  background: linear-gradient(135deg, #857aef 0%, #ff8e53 100%);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(255, 107, 139, 0.2);
  position: relative;
  overflow: hidden;
}

.jy-xzt-lang-fixed i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.jy-xzt-menu-toggle:hover {
  background: linear-gradient(135deg, #ff5577 0%, #ff7b3a 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 139, 0.3);
}

.jy-xzt-menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

.jy-xzt-menu-toggle i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.jy-xzt-menu-toggle:hover i {
  transform: rotate(90deg);
}

/* 菜单遮罩 */
.jy-xzt-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.jy-xzt-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 侧边菜单 */
.jy-xzt-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 20px 0 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(226, 232, 240, 0.5);
  visibility: hidden;
  opacity: 0;
}

.jy-xzt-sidebar.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* 菜单头部区域 */
.jy-xzt-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  margin-bottom: 20px;
}

/* 菜单标题 */
.jy-xzt-menu-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* 关闭菜单按钮 */
.jy-xzt-menu-close {
  background: transparent;
  color: #64748b;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 0;
}

.jy-xzt-menu-close:hover {
  background-color: #f1f5f9;
  color: #dc2626;
  transform: rotate(90deg);
}

.jy-xzt-menu-close:active {
  transform: rotate(90deg) scale(0.9);
}

/* 菜单内容区域 */
.jy-xzt-menu-content {
  padding: 0 25px;
  flex: 1;
  overflow-y: auto;
}

/* 菜单项 */
.jy-xzt-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 18px;
}

.jy-xzt-menu-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #ff6b8b;
  transform: translateX(5px);
}

.jy-xzt-menu-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* 进度条 */
.jy-xzt-progress-container {
  width: 100%;
  margin: 30px 0 30px 0;
}

.jy-xzt-progress-bar {
  height: 10px;
  background-color: rgba(255, 182, 193, 0.3);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.jy-xzt-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #ff6b8b, #ff8e53, #ffcc33);
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.jy-xzt-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 50px 50px;
  animation: jy-xzt-progressStripes 1s linear infinite;
}

/* 页面容器：欢迎页 / 问题页 / 信息页 */
.jy-xzt-welcome-page,
.jy-xzt-question-page,
.jy-xzt-info-page {
  padding: 40px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  animation: jy-xzt-fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

/* 欢迎页布局 */
.jy-xzt-welcome-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  margin-bottom: 30px;
}

.jy-xzt-welcome-text {
  flex: 1;
  min-width: 300px;
  line-height: 34px;
  font-size: 20px;
}

.jy-xzt-welcome-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6b8b;
  background: linear-gradient(90deg, #ff6b8b, #ff8e53);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jy-xzt-welcome-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.jy-xzt-welcome-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.jy-xzt-welcome-image:hover {
  transform: translateY(-5px);
}

.jy-xzt-welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jy-xzt-welcome-image:hover img {
  transform: scale(1.05);
}

/* 按钮容器 */
.jy-xzt-button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* 按钮样式 */
.jy-xzt-btn-next,
.jy-xzt-btn-prev {
  min-width: 150px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.jy-xzt-btn-next {
  background: linear-gradient(to right, #857aef, #ff8e53);
  color: white;
}

.jzs {
  margin: 0 auto;
}

.jy-xzt-btn-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 139, 0.3);
  background: linear-gradient(to right, #ff8e53, #857aef);
}

.jy-xzt-btn-prev {
  background: white;
  color: #ff6b8b;
  border: 2px solid #ff6b8b;
}

.jy-xzt-btn-prev:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 139, 0.2);
  background-color: #fff5f7;
  color: #ff5577;
  border-color: #ff5577;
}

.jy-xzt-btn-next:active,
.jy-xzt-btn-prev:active {
  transform: translateY(0);
}

/* 问题页样式 */
.jy-xzt-question-page,
.jy-xzt-info-page {
  display: none;
}

.jy-xzt-question-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #ffd6de;
}

.jy-xzt-question-counter {
  font-size: 16px;
  color: #ff6b8b;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #fff5f7;
  padding: 5px 15px;
  border-radius: 20px;
}

.jy-xzt-question-title {
  font-size: 28px;
  color: #ff4d6d;
  line-height: 1.4;
  padding: 0 10px;
  margin-bottom: 10px;
}

.jy-xzt-question-description {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
  font-style: italic;
}

/* 问题内容布局 - 居中（用于无图或全屏图） */
.jy-xzt-question-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  min-height: 300px;
  width: 100%;
}

/* 问题内容布局 - 左右 */
.jy-xzt-question-content-left-right {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  min-height: 300px;
}

.jy-xzt-question-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.jy-xzt-question-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.jy-xzt-question-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jy-xzt-question-image:hover img {
  transform: scale(1.05);
}

/* 选项容器 */
.jy-xzt-options-container {
  flex: 1;
  min-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 选项样式 */
.jy-xzt-option {
  background-color: #fff;
  border: 2px solid #ffd6de;
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  min-height: 80px;
}

.jy-xzt-option:hover {
  transform: translateX(5px);
  border-color: #ff8e53;
  background-color: #fff9f5;
  box-shadow: 0 5px 15px rgba(255, 142, 83, 0.1);
}

.jy-xzt-option.jy-xzt-selected {
  background: linear-gradient(135deg, #fff5f7 0%, #ffd6de 100%);
  border-color: #ff6b8b;
  box-shadow: 0 5px 20px rgba(255, 107, 139, 0.2);
  transform: translateX(5px);
}

.jy-xzt-option.jy-xzt-selected::after {
  content: '✓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff6b8b, #ff8e53);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(255, 107, 139, 0.3);
}

/* 选项内容包裹 */
.jy-xzt-option-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* 根据题型动态显示/隐藏左侧标签 */
.jy-xzt-question-page[data-question-type="single"] .jy-xzt-option-label {
  display: none !important;
}

.jy-xzt-question-page[data-question-type="multiple"] .jy-xzt-option-label {
  display: flex !important;
}

.jy-xzt-option-label {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fff5f7, #ffd6de);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 700;
  color: #ff6b8b;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.jy-xzt-option.jy-xzt-selected .jy-xzt-option-label {
  background: linear-gradient(135deg, #ff6b8b, #ff8e53);
  color: white;
  box-shadow: 0 3px 10px rgba(255, 107, 139, 0.3);
}

.jy-xzt-option-text {
  font-size: 18px;
  color: #ff4d6d;
  font-weight: 500;
  transition: color 0.3s ease;
  flex: 1;
}

.jy-xzt-option.jy-xzt-selected .jy-xzt-option-text {
  color: #ff4d6d;
  font-weight: 600;
}

/* 选项图片（右侧） */
.jy-xzt-option-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.jy-xzt-option:hover .jy-xzt-option-image {
  transform: scale(1.05);
}

.jy-xzt-option.jy-xzt-selected .jy-xzt-option-image {
  box-shadow: 0 5px 15px rgba(255, 107, 139, 0.2);
}

.jy-xzt-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 信息页布局 */
.jy-xzt-info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  margin-bottom: 30px;
  min-height: 300px;
}

.jy-xzt-info-text {
  flex: 1;
  min-width: 300px;
}

.jy-xzt-info-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff6b8b;
}

.jy-xzt-info-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.jy-xzt-info-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.jy-xzt-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 输入页 */
.jy-xzt-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.jy-xzt-input-title {
  font-size: 28px;
  color: #ff6b8b;
  margin-bottom: 30px;
  text-align: center;
}

.jy-xzt-input-group {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.jy-xzt-input-label {
  display: block;
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.jy-xzt-input-field {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #ffd6de;
  border-radius: 12px;
  background-color: white;
  transition: all 0.3s ease;
}

.jy-xzt-input-field:focus {
  outline: none;
  border-color: #ff6b8b;
  box-shadow: 0 0 0 3px rgba(255, 107, 139, 0.1);
}

.jy-xzt-input-unit {
    position: absolute;
    right: 40px;
    top: 55px;
    transform: translateY(-50%);
    color: #999;
    font-size: 38px;
    font-weight: bolder;
}

/* 身体部位高亮（用于互动图） */
.body-highlight {
  position: absolute;
  background-color: rgba(255, 107, 139, 0.5);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}

.highlight-arms {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 40px;
}

.highlight-belly {
  width: 100px;
  height: 100px;
  top: 130px;
  left: 150px;
}

.highlight-butt {
  width: 90px;
  height: 90px;
  top: 200px;
  left: 155px;
}

.highlight-legs {
  width: 70px;
  height: 120px;
  top: 180px;
  left: 100px;
}

.highlight-full {
  width: 250px;
  height: 300px;
  top: 0;
  left: 25px;
  border-radius: 20px;
}

/* 完成页面 */
.jy-xzt-completion-page {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  animation: jy-xzt-fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
 
  border-radius: 20px;
  padding: 40px;

}

/* 加载圆圈样式 */
.jy-jzsm-container {
  width: 100%;
  text-align: center;
  display: none;
}

.jy-jzsm-title {
  color: #ff6b8b;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 2.2rem;
}

.jy-jzsm-subtitle {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.jy-jzsm-circle-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
}

.jy-jzsm-circle-background {
  fill: none;
  stroke: #ffd6de;
  stroke-width: 10;
}

.jy-jzsm-circle-progress {
  fill: none;
  stroke: #ff6b8b;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.3s ease;
}

.jy-jzsm-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.jy-jzsm-percentage {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ff6b8b;
  margin-bottom: 5px;
}

.jy-jzsm-status-container {
  margin-top: 20px;
  height: 30px;
}

.jy-jzsm-status-text {
  font-size: 1.2rem;
  color: #555;
  min-height: 30px;
  font-weight: 500;
}

.jy-jzsm-button-container {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-bottom: 20px;
}

.jy-jzsm-action-button {
  padding: 16px 45px;
  background: linear-gradient(to right, #ff6b8b, #ff8e53);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
  transition: all 0.3s ease;
}

.jy-jzsm-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 139, 0.4);
  background: linear-gradient(to right, #ff8e53, #ff6b8b);
}

/* 动画效果 */
@keyframes jy-xzt-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jy-xzt-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jy-xzt-bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

@keyframes jy-xzt-progressStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 0;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .jy-xzt-welcome-page,
  .jy-xzt-question-page,
  .jy-xzt-info-page,
  .jy-xzt-completion-page {
    padding: 25px;
  }

  .jy-xzt-welcome-content,
  .jy-xzt-question-content-left-right,
  .jy-xzt-info-content {
    flex-direction: column;
  }

  .jy-xzt-welcome-image,
  .jy-xzt-question-image,
  .jy-xzt-info-image {
    min-width: 100%;
    height: 250px;
  }

  .jy-xzt-options-container {
    min-width: 100%;
  }

  .jy-xzt-welcome-text h1 {
    font-size: 30px;
  }

  .jy-xzt-question-title {
    font-size: 24px;
  }

  .jy-xzt-button-container {
    flex-direction: column;
    align-items: center;
  }

  .jy-xzt-btn-next,
  .jy-xzt-btn-prev {
    width: 100%;
    max-width: 300px;
  }

  .jy-xzt-sidebar {
    width: 280px;
  }

  .jy-xzt-controls,
  .jy-xzt-logo-container {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .jy-xzt-logo-link {
    font-size: 16px;
  }

  .jy-jzsm-circle-container {
    width: 240px;
    height: 240px;
  }

  .jy-jzsm-percentage {
    font-size: 2.8rem;
  }

  .jy-jzsm-title {
    font-size: 1.8rem;
  }

  .jy-xzt-option-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .jy-xzt-btn-next,
  .jy-xzt-btn-prev {
    min-width: 100%;
    padding: 15px 20px;
  }

  .jy-xzt-option {
    padding: 15px;
  }

  .jy-xzt-option-text {
    font-size: 16px;
  }

  .jy-xzt-sidebar {
    width: 100%;
    right: -100%;
  }

  .jy-xzt-option-image {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .jy-xzt-option-label {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 10px;
  }
}