:root {
  --vt-color-primary: #007aff;
  --vt-color-success: #4cd964;
  --vt-color-warning: #f0ad4e;
  --vt-color-danger: #dd524d;
  --vt-font-size-sm: 13px;
  --vt-font-size-base:17px;
  --vt-font-size-lg: 22px;
  --vt-text-color: #333;
  --vt-text-color-inverse: #fff;
  --vt-text-color-grey: #999;
  --vt-text-color-placeholder: #8c8c8c;
  --vt-text-color-disable: #e2e4eb;
  --vt-bg-color: #fff;
  --vt-bg-color-grey: #f1f1f1;
  --vt-bg-color-hover: #f2f2f2;
  --vt-bg-color-mask: rgba(50, 50, 50, 0.5);
  --vt-bg-color-card: #ffffff;
  --vt-border-radius: 8px;
  --vt-border-color: #D4D9D9;
  --vt-shadow-color: #d1d2d3;
}

body.dark-mode {
  --vt-text-color: #b9b9b9;
  --vt-text-color-inverse: #333;
  --vt-text-color-grey: #999;
  --vt-text-color-placeholder: #808080;
  --vt-text-color-disable: #404244;
  --vt-bg-color: #2e2e2e;
  --vt-bg-color-grey: #5a5a5a;
  --vt-bg-color-hover: #979797;
  --vt-bg-color-mask: rgba(50, 50, 50, 0.5);
  --vt-bg-color-card: #272727;
  --vt-border-color: #303030;
  --vt-shadow-color: #181818;
}

body.dark-mode img {
  filter: brightness(70%);
}
body.dark-mode .logo {
  filter: brightness(200%);
}

@media (prefers-color-scheme: dark) {
  body.dark-mode-auto {
    --vt-text-color: #b9b9b9;
    --vt-text-color-inverse: #333;
    --vt-text-color-grey: #999;
    --vt-text-color-placeholder: #808080;
    --vt-text-color-disable: #404244;
    --vt-bg-color: #2e2e2e;
    --vt-bg-color-grey: #5a5a5a;
    --vt-bg-color-hover: #979797;
    --vt-bg-color-mask: rgba(50, 50, 50, 0.5);
    --vt-bg-color-card: #272727;
    --vt-border-color: #303030;
    --vt-shadow-color: #181818;
  }
  body.dark-mode-auto img {
    filter: brightness(70%);
  }
  body.dark-mode-auto .logo {
    filter: brightness(200%);
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}


/* logo 闪烁 */
.flash.logo {
  position: relative;
  overflow: hidden;
}

.flash.logo::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  opacity: 0.7;
  animation: logoLights 2s ease-in 1s infinite;
}

@keyframes logoLights {
  0% {
    left: -160px;
    top: 0;
  }
  to {
    left: 160px;
    top: 0;
  }
}
.flash.logo::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  opacity: 0.8;
  animation: logoLights2 2s ease-in 1s infinite;
}

@keyframes logoLights2 {
  0% {
    left: -130px;
    top: 0;
  }
  to {
    left: 190px;
    top: 0;
  }
}
.dark-mode .flash.logo::after, .dark-mode .logo::before {
  display: none;
}

@charset "UTF-8";
/*
 * 默认的样式
 */
html {
  -webkit-text-size-adjust: none;
}

* {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img {
  border: 0;
  height: auto;
  width: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--vt-font-size-base);
  color: var(--vt-text-color);
  letter-spacing: 0.8px;
  position: relative;
  letter-spacing: 1px;
  background-color: var(--vt-bg-color);
  overflow-x: hidden;
}

body:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: -1;
  display: block;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  content: "";
}

a {
  color: var(--vt-text-color);
  font-size: var(--vt-font-size-base);
  text-decoration: none;
  letter-spacing: 1px;
}

a:hover {
  color: var(--vt-color-primary);
}

/**
 * 文章页，文档页等 公共的点赞，收藏 模块
 */
/**
 * 面包屑
 */
.breadcrumbs {
  width: auto;
  line-height: 25px;
  font-size: var(--vt-font-size-sm);
  color: var(--vt-text-color-grey);
  color: var(--vt-text-color-inverse);
}
.breadcrumbs i {
  font-size: var(--vt-font-size-lg);
  vertical-align: -5px;
}
.breadcrumbs a {
  font-size: var(--vt-font-size-sm);
  color: var(--vt-text-color-inverse);
} 


/**
 * 404
 */
.page-no-found {
  width: 100%;
  max-width: 350px;
  margin: 60px auto 250px auto;
  color: var(--vt-text-color);
}
.page-no-found img {
  width: 100%;
}
.page-no-found p {
  font-size: 30px;
  text-align: center;
}
.page-no-found a {
  display: block;
  width: 100px;
  height: 30px;
  color: var(--vt-text-color-inverse);
  font-size: 13px;
  margin: 50px auto 0px auto;
  line-height: 30px;
  text-align: center;
  background-color: var(--vt-color-primary);
  border-radius: 3px;
}
.page-no-found a:hover {
  color: var(--vt-text-color-inverse);
}

/**
 * 没有内容
 */
.no-content {
  text-align: center;
  padding: 100px 0px;
  font-size: var(--vt-font-size-base);
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.no-content img {
  max-width: 150px;
  margin: 20px auto;
}
.no-content p {
  margin-top: 10px;
  color: var(--vt-text-color-grey);
}

.search-title {
  margin-top: 10px;
  color: var(--vt-text-color);
}


/**
 * 按钮
 */
.btn-home {
  display: inline-block;
  border: 1px solid var(--vt-color-primary);
  color: var(--vt-color-primary);
  padding: 13px 35px;
  margin: 15px 0 0 0;
  border-radius: 25px;
  font-size: 14px;
}

.more{
  display: flex;
  justify-content: center;
}

/**
 * 幽灵按钮
 */
.vt-ghost-btn {
  display: inline-flex;           /* 保持 flex 布局以垂直居中 */
  align-items: center;            /* 垂直居中 */
  
  padding: 10px 24px;
  border: 1px solid var(--vt-text-color-inverse);
  color: var(--vt-text-color-inverse);
  
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 4px;
}

/* 替代 gap 的方法：直接给图标加右边距 */
.vt-ghost-btn i {
  font-size: 16px !important;
  margin-right: 8px; 
}

/* 悬停效果：背景变色，文字变白 */
.vt-ghost-btn:hover {
  background-color: var(--vt-color-primary);
  border-color: var(--vt-color-primary);
  color: #fff;
}

/* 悬停时箭头向右微移 */
.vt-ghost-btn:hover i {
  transform: translateX(4px);
}


/**
 * 分割线
 */
.vt-divider{
  height: 0;
  width: 100%;
  border-top: 1px solid var(--vt-border-color);
  margin: 30px 0;
}
.field {
  margin: 20px 0 0 0;
  position: relative;
}

.field .btn {
  padding: 0 15px;
}

.field-text label {
  display: block;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 3px;
}

.field-text label,
.field-text input,
.field-text .form-help,
.field-text textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}

.field-text input,
.field-text textarea {
  padding: 8px 30px 8px 8px;
  border: 1px solid var(--vt-border-color);
  border-radius: 3px;
}

.field-text :focus {
  outline: 0;
  box-shadow: 0 0 5px rgba(93, 162, 248, 0.5);
  border-color: var(--vt-color-primary);
}

.field-text :invalid {
  border-color: var(--vt-color-danger);
  box-shadow: 0 0 5px rgba(229, 43, 37, 0.5);
}

.form-help {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  transition: all 0.05s linear;
}

input:focus + .form-help {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid var(--vt-color-warning);
  border-radius: 3px;
  font-style: italic;
  font-size: 13px;
  color: var(--vt-text-color);
  background-color: var(--vt-bg-color-grey);
  position: relative;
  width: auto;
  height: auto;
  crop: none;
}

input:disabled, textarea:disabled {
  background-color: var(--vt-bg-color-grey);
}

@media only screen and (min-width: 900px) {
  .field {
    width: 500px;
  }
}

/*
 * 公共按钮
 */
 
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid var(--vt-border-color);
  border-radius: var(--vt-border-radius);
  color: var(--vt-text-color);
  cursor: pointer;
  text-align: center;
  padding: 0 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.btn:hover {
  color: var(--vt-text-color);
  filter: brightness(1.2);
}

.btn.btn-sm {
  height: 22px;
  font-size: 12px;
  width: auto;
  padding: 0 8px;
}

.btn.btn-primary {
  background-color: var(--vt-color-primary);
  color: var(--vt-text-color-inverse);
}

.btn.btn-success {
  background-color: var(--vt-color-success);
  color: var(--vt-text-color-inverse);
}

.btn.btn-danger {
  background-color: var(--vt-color-danger);
  color: var(--vt-text-color-inverse);
}

.btn.btn-error {
  background-color: var(--vt-color-error);
  color: var(--vt-text-color-inverse);
}

.btn.btn-primary-sec {
  border: 1px solid var(--vt-color-primary);
  color: var(--vt-color-primary);
}

.btn.btn-success-sec {
  border: 1px solid var(--vt-color-success);
  color: var(--vt-color-success);
}

.btn.btn-danger-sec {
  border: 1px solid var(--vt-color-danger);
  color: var(--vt-color-danger);
}

.btn.btn-error-sec {
  border: 1px solid var(--vt-color-error);
  color: var(--vt-color-error);
}

@media only screen and (min-width: 768px) {
  .btn {
    display: inline-flex;
  }
  .btn, .btn-primary {
    width: auto;
  }
}

/**
 * 
 */
nav.pagination {
  font-size: 16px;
  border-top: 0px;
  border-bottom: 0px;
  margin: 0;
  padding: 0 0 20px 0;
}

nav.pagination .nav-links {
  align-items: baseline;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

nav.pagination .pagination-separator {
  margin: 10px 0;
}

nav.pagination .nav-links > * {
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--vt-border-color);
  margin: 0px 7px 0px 0;
  display: block;
  background-color: var(--vt-bg-color-card);
  padding: 1px 1px;
  border-radius: var(--vt-border-radius);
}

nav.pagination .nav-links > .current {
  background-color: var(--vt-bg-color-grey);
  border-color: var(--vt-border-color);
  font-weight: 600;
}

nav.pagination .nav-links .placeholder {
  display: none;
  visibility: hidden;
}

nav.pagination a {
  text-decoration: none;
}

nav.pagination a:hover {
  color: var(--vt-color-primary);
  border-color: var(--vt-color-primary);
}



.content-style {
  font-size: var(--vt-font-size-base);
  line-height: 32px;
}

.content-style a {
  font-size: var(--vt-font-size-base);
  color: var(--vt-color-primary);
}

.content-style img {
  max-width: 100%;
  margin: 5px 0px;
}

.content-style pre {
  line-height: 18px;
  font-size: 13px !important;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  padding: 12px;
  margin: 5px 0;
  border-radius: var(--vt-border-radius);
}

.content-style p {
  margin-top: 30px;
  overflow: hidden;
}

.content-style p:first-child {
  margin-top: 0px;
}

.content-style h1,
.content-style h2,
.content-style h3,
.content-style h4,
.content-style h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-style h1 { font-size: 25px; }
.content-style h2 { font-size: 22px; }
.content-style h3 { font-size: 18px; }
.content-style h4 { font-size: 16px; }
.content-style h5 { font-size: 10px; }

.content-style ul {
  list-style: inherit;
  padding-left: 25px;
  margin-bottom: 5px;
}

.content-style ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 5px;
}

.content-style blockquote {
  padding: 15px;
  background-color: var(--vt-bg-color-grey);
  margin-top: 20px;
  color: var(--vt-text-color-grey);
  border-radius: var(--vt-border-radius);
}

.content-style blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-size: 38px;
  color: var(--vt-color-primary);
}

.content-style .content-excerpt {
  padding: 15px;
  background-color: var(--vt-bg-color);
  margin-top: 20px;
  color: var(--vt-text-color-grey);
  border-radius: var(--vt-border-radius);
}

.content-style table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  border: 1px solid var(--vt-border-color);
  margin-top: 10px;
}

.content-style table caption {
  color: var(--vt-text-color);
  font: italic 85%/1 arial, sans-serif;
  padding: 1em 0;
  text-align: center;
}

.content-style table td,
.content-style table th {
  border-left: 1px solid var(--vt-border-color);
  border-width: 0 0 0 1px;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  padding: 0.5em 1em;
}

.content-style table thead {
  background-color: var(--vt-bg-color-grey);
  color: var(--vt-text-color);
  text-align: left;
  vertical-align: bottom;
}

.content-style table td,
.content-style table th {
  background-color: transparent;
  border-bottom: 1px solid var(--vt-border-color);
}

.content-style .hljs {
  /*background-color: transparent !important;*/
  white-space: pre-wrap;
}

.content-style .wp-caption {
  max-width: 100% !important;
}

.content-style .wp-caption img {
  margin-bottom: 0px !important;
}

.content-style .wp-caption .wp-caption-text {
  margin-top: 0px !important;
  font-size: var(--vt-font-size-sm) !important;
  color: var(--vt-text-color-grey);
  line-height: 15px !important;
}

.content-style hr {
  height: 1px;
  background-color: var(--vt-border-color);
  border: none;
  margin: 35px 0;
}
.mobile-nav {
  width: 100%;
  height: 45px;
  border-top: 1px solid var(--vt-border-color);
  position: fixed;
  bottom: 0px;
  background-color: var(--vt-bg-color-card);
  z-index: 999999;
}
.mobile-nav .mobile-nav-container {
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: space-between;
  margin: 0px auto;
}
.mobile-nav .mobile-nav-container a.nav-button {
  width: 70px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--vt-text-color-grey);
  border-radius: var(--vt-border-radius);
}
.mobile-nav .mobile-nav-container a.nav-button i {
  font-size: 20px;
}

@media only screen and (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}


/*
 * 底部按钮 回到顶部
 */
.float-widget {
  width: 45px;
  min-height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 999;
}

.float-widget .tool-widget {
  width: 45px;
  height: 45px;
  margin-top: 15px;
  position: relative;
}

.float-widget a.tool-button {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 2px 0 var(--vt-shadow-color);
  border-radius: 5px;
  background-color: var(--vt-shadow-color);
  cursor: pointer;
}

.float-widget a.tool-button i {
  z-index: 1;
  font-size: 18px;
  color: var(--vt-text-color);
  user-select: none;
}

/*@media only screen and (min-width: 900px) {
  .float-widget {
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .float-widget {
    right: calc(50% - 680px);
  }
}


*/




/**
 * TOP BAR
 */
.top-bar{
	background-color: var(--vt-bg-color-grey);
	display: none;
}
.top-bar-main {
	box-sizing: border-box;
	height: 40px;
	padding: 0 10px;
	display: flex;
	align-items: center;
	font-size: 13px ;
	color: var(--vt-text-color-grey);
}
.top-bar-item{
	margin: 0 20px 0 0;
}
.top-bar-main a{
	font-size: 13px;
	color: var(--vt-text-color-grey);
}
.top-bar .sns{
	display: none;
}


@media only screen and (min-width:900px){
	.top-bar-container{
		width: 1200px;
		margin: 0 auto;
	}
	.top-bar-container{
		display: flex;
		justify-content: space-between;
	}
	.top-bar-main {
		padding: 0 5px;
	}
	.top-bar{
		padding: 5px 0;
		display: block;
	}
	.top-bar .sns{
		display: flex;
		align-items: center;
	}
	.sns a{
		width: 23px;
		height: 23px;
		margin: 0 0 0 15px;
		cursor: pointer;
	}
	.sns a img{
		width: 100%;
		height: 100%;
	}






}






.vt-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: none;
}

.vt-dialog[open] {
  display: flex !important;
}

.vt-dialog[modal] {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  z-index: 99;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}

.vt-dialog[modal]::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: var(--vt-bg-color-mask);
  position: fixed;
  top: 0;
  left: 0;
}

.no-scroll {
  overflow-y: hidden;
}

.dialog-widget {
  box-sizing: border-box;
  font-size: 18px;
  padding: 10px;
  border-radius: var(--vt-border-radius);
  background-color: var(--vt-bg-color-card);
  box-shadow: 0 0 20px var(--vt-shadow-color);
  position: relative;
  user-select: none;
}

.dialog-widget .close-button {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  color: var(--vt-text-color-grey);
  z-index: 9;
}

.dialog-widget .close-button i {
  font-size: 22px;
  font-weight: bold;
}

.dialog-header {
  height: 25px;
  font-size: 16px;
}

.dialog-header .title {
  float: left;
}

.dialog-header .close {
  float: right;
  font-size: 25px;
  position: relative;
  top: -5px;
}

.dialog-body {
  padding: 10px 0;
}

.dialog-body label {
  cursor: pointer;
  font-size: 14px;
}

.dialog-action-group {
  display: flex;
  justify-content: flex-end;
}

.dialog-action-group .btn {
  margin: 0 0 0 10px;
}

@charset "UTF-8";
/**
 * 模态对话框样式
 */
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--vt-bg-color-mask);
  backdrop-filter: saturate(97%) blur(20px);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal.modal-show {
  display: flex;
}

/** 
 * Cookie Banner Styles 
 * templates/privacy.php
 */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.cookie-policy-link {
  color: var(--vt-color-primary, #007bff);
  text-decoration: underline;
}

.cookie-policy-link:hover {
  color: var(--vt-color-primary, #0056b3);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-reject {
  background: transparent;
  border-color: #666;
  color: #666;
}

.cookie-btn-reject:hover {
  background: #f5f5f5;
  border-color: #333;
  color: #333;
}

.cookie-btn-accept {
  background: var(--vt-color-primary, #007bff);
  border-color: var(--vt-color-primary, #007bff);
  color: #ffffff;
  transition: all 0.1s ease;
}

.cookie-btn-accept:hover {
  filter: brightness(0.9);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .cookie-banner-container {
    flex-direction: column;
    padding: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* 暗黑模式适配 */
.dark-mode .cookie-banner {
  background: #1a1a1a;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .cookie-banner-title {
  color: #ffffff;
}

.dark-mode .cookie-banner-text {
  color: #b0b0b0;
}

.dark-mode .cookie-btn-reject {
  border-color: #999;
  color: #999;
}

.dark-mode .cookie-btn-reject:hover {
  background: #2a2a2a;
  border-color: #ccc;
  color: #ccc;
}
.vt-contact-form-7 {
  position: relative;
}

.vt-contact-form-7 form>p {
  position: relative;
  margin: 15px 0 0 0;
}

.vt-contact-form-7 form>p>label {
  width: 100%;
}

.vt-contact-form-7 input,
.vt-contact-form-7 textarea {
  border: 1px solid var(--vt-border-color);
  border-radius: var(--vt-border-radius);
  box-sizing: border-box;
  width: 100%;
  padding: 10px 13px;
  color: #6a6b70;
  font-size: 16px;
}

.vt-contact-form-7 input[type="submit"] {
  display: block;
  height: 44px;
  text-align: center;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid var(--vt-color-primary);
  color: var(--vt-color-primary);
  padding: 13px 35px;
  border-radius: var(--vt-border-radius);
  font-size: 14px;
}

.wpcf7-spinner {
  display: none;
  margin: 10px 0 0 0;
}

.submitting .wpcf7-spinner {
  display: block;
}

.vt-contact-form-7 .wpcf7 .wpcf7-not-valid-tip {
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 10px 15px;
  line-height: 30px;
  border-radius: var(--vt-border-radius);
}


@media only screen and (min-width:900px) {
  .main-container.home-contact {
    padding: 100px 0px 50px 0px;
  }

  .home-contact .vt-contact-form-7 {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    width: 800px;
    margin: 50px auto 0 auto;
    background-color: var(--vt-bg-color-card);
  }

  .vt-contact-form-7 input[type="submit"] {

  }
}
a.vt-more {
  display: flex;
  border-radius: 13px 13px 13px 13px;
  background-color: var(--vt-color-primary);
  font-size: 14px;
  color: #fff;
  padding: 7px 20px;
  margin: 0px 0 0 0;
  align-self: flex-start;
  border-radius: 25px;
}

a.vt-more i {
  position: relative;
  top: 1px;
}


@media screen and (min-width:768px) {
  a.vt-more {
    padding: 15px 90px;
    margin: 0 0 0 0;
    font-size: 16px;
  }
  a.vt-more i {
    margin: 0 10px 0 0;
  }
  
}
.jumbotron-wrapper {
  position: relative;
}

.jumbotron-container {
  padding: 20px;
}

.jumbotron-container .jumbotron-widget {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
}

.jumbotron-widget a.thumbnail{
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 3px solid var(--vt-color-primary);
}

.jumbotron-widget a.thumbnail img{
  width: 100%;
}

.jumbotron-widget .body{
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.jumbotron-widget .body .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin:10px 0 0 0;
}

.jumbotron-widget .body .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin:10px 0 0 0;
}

.jumbotron-widget .body .description {
  font-size: 14px;
  color: var(--vt-text-color-grey);
  margin: 10px 0 0 0;
}

.jumbotron-widget .vt-more {
  margin: 20px 0 0 0;
}

@media screen and (min-width:768px) {
  .jumbotron-container{
    box-sizing: border-box;
    width: 1200px;
    margin: 0 auto;
    padding: 160px 0;
  }
  .jumbotron-container .jumbotron-widget {
    display: flex;
    flex-direction: row;
  }
  .jumbotron-container .jumbotron-widget .thumbnail {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    border: none;
  }
  .jumbotron-container .jumbotron-widget .body{
    box-sizing: border-box;
    padding-left: 50px;
  }
  .jumbotron-container .jumbotron-widget .body .title{
    font-size: 36px;
    line-height: 50px;
  }
  .jumbotron-container .jumbotron-widget .body .subtitle{
    font-size: 20px;
    line-height: 25px;
    margin: 30px 0 0 0;
  }
  .jumbotron-container .jumbotron-widget .body .description{
    font-size: 16px;
    line-height: 25px;
    margin: 20px 0 0 0;
  }
  .jumbotron-widget .vt-more {
    margin: 65px 0 0 0;
  }

}
.main-container.features {
  position: relative;
  padding: 0;
}

.main-container.features .features-widget{
  background-color: rgba(23, 47, 59, 1);
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;

}

.main-container.features .features-widget .feature-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
}
.main-container.features .feature-item img{
  width: 80px;
}
.main-container.features .feature-item .title{
  text-align: center;
  font-size: 14px;
  margin: 6px 0 0 0;
}


/**
 * trust-widget
 */
.main-container.features .trust-widget {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 0 10px 10px;
}
.main-container.features .trust-widget .title{
  font-size: 16px;
  font-weight: 600;
}
.main-container.features .trust-swiper {
  margin: 10px 0 0 0;
}


@media screen and (min-width:768px) {
  .main-container.features {
    box-sizing: border-box;
    width: 100%;
    padding-right: calc(50% - 600px);
    min-height: 200px;
  }
  .main-container.features .features-widget {
    width: 50%;
    flex-grow: 1;
  }
  .main-container.features .trust-widget{
    width: 600px;
    flex-shrink: 0;
  }
}


@media screen and (min-width:1536px) {
  .main-container.features {
    padding-right: calc(50% - 750px);
  }
  .main-container.features .trust-widget{
    width: 750px;
  }
}


/**
 * trust-card
 */

.main-container.features .trust-swiper {
  position: relative;
  overflow: hidden;
}
.trust-swiper .swiper-wrapper .swiper-slide {
  height: 0;
  padding-bottom: 30%;
  position: relative;
}
.trust-swiper .swiper-wrapper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width:768px) {
  .trust-swiper .swiper-wrapper .swiper-slide {
    padding-bottom: 20%;
  }
  .trust-swiper .swiper-button-next,
  .trust-swiper .swiper-button-prev { top: 50%; }

}



.main-container.about{
  position: relative;
  padding: 50px 20px;
}

.main-container.about .about-widget {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main-container.about .about-widget .about-title{
  position: relative;
  color: var(--vt-color-primary);
  font-size: 16px;
  /* text-align: center; */
}

.main-container.about .about-widget .about-slogan {
  font-size: 42px;
  text-align: left;
  font-family: Poppins-Bold;
  font-weight: 600;
  margin: 20px 0 0 0;
}

.main-container.about .about-widget .about-description {
  font-size: 14px;
  line-height: 22px;
  color: var(--vt-text-color-grey);
  margin: 20px 0 0 0;
}

.main-container.about .about-video-widget {
  margin: 30px 0 0 0;
}

.main-container.about .about-video-widget img{
  width: 100%;
}
.main-container.about .about-video-widget iframe{
  width: 100%;
  aspect-ratio: 1 / 0.7;
}

.main-container.about .vt-more { margin: 20px 0 0 0; }


@media screen and (min-width:768px) {
  .main-container.about {
    padding: 150px 0px;
  }
  .main-container.about .main-widget{
    display: flex;
  }
  .main-container.about .about-widget {
    box-sizing: border-box;
    width:50%;
    padding: 0 30px 0 0;
  }
  .main-container.about .about-video-widget {
    box-sizing: border-box;
    width:50%;
  }
  .main-container.about .vt-more { margin: 20px 0 0 0; }


}


/* 1536px */
@media screen and (min-width:1536px) {
  .main-container.about {
    width: 1500px;
  }
  .main-container.about .main-widget{
    
  }  
}

.choose-container {
  position: relative;
  background-color: rgba(23,47,59, 1);
}
.choose-container .main-widget {
  position: relative;
}
.choose-container .choose-banner {
  position: relative;
  box-sizing: border-box;
  flex-grow: 1;
  /* padding: 20px; */
}
.choose-container .choose-banner img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-container .choose-body {
  color: #fff;
  padding: 20px;
  font-size: 14px;
}
.choose-container .choose-body .title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
}
.choose-container .choose-body .subtitle {
  font-size: 14px;
  margin: 15px 0 0 0;
}
.choose-item-widget{
  margin: 20px 0;
}
.choose-item{
  position: relative;
}
.choose-item-header {
  background-color: rgba(255,255,255, 0.1);
  padding: 8px 6px;
  border-radius: 5px;
}
.choose-item-header i{ color: var(--vt-color-primary); }
.choose-item-body{
  padding: 6px 0;
  margin: 0 0 3px 0;
  line-height: 20px;
  font-size: 13px;
}


@media screen and (min-width:768px) {
  .choose-container {
    padding-right:calc(50vw - 600px);
    min-height: 200px;
  }
  .choose-container .main-widget {
    min-height: 200px;
    display: flex;
  }
  .choose-container .choose-banner {
    padding: 0px;
  }
  .choose-container .choose-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .choose-container .choose-body{
    box-sizing: border-box;
    width: 600px;
    flex: 0 0 auto;
    /* padding: 55px 0 55px 55px; */
    padding: 70px 0 55px 70px;
  }
  .choose-container .choose-body .title{
    font-size: 45px;
    font-weight: 600;
  }
  .choose-container .choose-body .subtitle{
    font-size: 16px;
    margin: 25px 0 0 0;
  }
  .choose-item-header{
    font-size: 26px;
  }
  .choose-item-header i{
    font-size: 30px;
    position: relative;
  }
  .choose-item-body{
    font-size: 16px;
    padding: 10px 0 45px 0;
    line-height: 180%;
  }

}
.main-container.product {
  position: relative;
}

.creed-product-widget{
  position: relative;
  margin: 30px 0 0 0;
}

.creed-product-item {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  margin-bottom: 15px;
  background-color: var(--vt-bg-color-grey);
  position: relative;

  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url(../images/home/choose-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  backdrop-filter: blur(5px);
}

/* .creed-product-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url(../images/home/choose-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  backdrop-filter: blur(5px);
} */

.creed-product-item-widget {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;

}

.creed-product-item-widget i{
  font-size: 27px;
}

.creed-product-item-widget .title {
  font-size: 24px;
  line-height: 40px;
  margin: 15px 0 0 0;
}

.creed-product-item-widget .vt-ghost-btn {
  margin: 15px 0 0 0;
}


@media screen and (min-width:768px) {
  .main-container.product .creed-header{
    font-size: 45px;
  }
  .creed-product-widget{
    display: flex;
    margin: 50px 0 0 0;
  }
  .creed-product-item{
    width: 25%;
    padding-bottom: 380px;
  }
}

@media screen and (min-width:1536px) {
  .main-container.product{
    width: 1500px;
  }
}





.main-container.hot {
  position: relative;
}

.hot-container {
  position: relative;
}

.hot-swiper{
  overflow: hidden;
  position: relative;
  /* background-color: green; */
  box-sizing: border-box;
  padding-bottom: 30px;
}
.hot-swiper .swiper-slide{
  /* background-color: grey; */
  height: 100%;
}

.hot-card {
  position: relative;
}
.hot-card .hot-thumbnail {
  display: block;
  width: 100%;
  padding-bottom: 90%;
  position: relative;
}
.hot-card .hot-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--vt-border-radius);
}
.hot-card .title{
  display: block;
  text-align: center;
  margin: 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px;
  height: 50px;
  background-color: var(--vt-bg-color-mask);
  font-size: 14px;
  top: calc(50% - 20px);
  transition: all 0.2s ease;
  box-shadow: 0 0 3px var(--vt-shadow-color);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: var(--vt-text-color-inverse);
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
  transform: scale(1.1);
  filter: brightness(120%);
}


@media screen and (min-width:1536px) {
  .main-container.hot {
    width: 1500px;
  }
}



.home-banner-container {
  padding: 8% 10%;
  background-image: url(../images/home/lab.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: var(--vt-text-color-inverse);
}

.home-banner-container .main-widget{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-banner-title {
  font-size: 47px;
  font-weight: 600;
  text-align: center;
}

.home-banner-description {
  text-align: center;
  line-height: 200%;
  margin: 35px 0 35px 0;
}

.home-banner-container .vt-more {
  display: inline-block;
  margin: 0 auto !important;
}


/**
 * 数字模块
 */
.number-container {
  background-color: rgba(23, 47, 59, 1);
}

.number-container .main-widget {
  display: flex;
  flex-wrap: wrap;
}

.number-container .main-widget .number-item {
  width: 50%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--vt-color-primary);
  font-size: 16px;
  aspect-ratio: 1 / 0.8;
}

.number-container .number-item .number-header {
  font-size: 40px;
  font-weight: 600;
  margin: 16px 0;
}

.number-container .number-item .number-header span:nth-child(2) {
  font-size: 40px;
}

.number-container .number-item .title {
  color: var(--vt-text-color-inverse);
}


@media screen and (min-width:768px) {
  .number-container .main-widget {
    width: 1200px;
    margin: 0 auto;
  }

  .number-container .main-widget .number-item {
    width: 25%;
    min-height: 200px;
  }

  .number-container .number-item .number-header {
    font-size: 40px;
  }
  
}


@media screen and (min-width:1536px) {
  .number-container .main-widget {
    width: 1500px;
  }
}


.main-container.partner {
  position: relative;
}

.partner-widget {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-top: 30px;
}
.partner-widget .partner-item {
  box-sizing: border-box;
  width: calc(50% - 10px);
  border: 1px solid var(--vt-border-color);
  margin: 0 10px 10px 0;
  border-radius: var(--vt-border-radius);
  overflow: hidden;
  position: relative;
}
.partner-widget .partner-item .thumbnail {
  width: 100%;
  padding: 0 0 60% 0;
  position: relative;
}
.partner-widget .partner-item img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}


@media screen and (min-width:768px) {
  .partner-widget {
    margin-right: -45px;
    margin-top: 50px;
  }
  .partner-widget .partner-item {
    width: calc(25% - 45px);
    margin: 0 45px 45px 0;
  }
}


@media screen and (min-width:1536px) {
  .main-container.partner {
    width: 1500px;
  }

}
.widget-container {
  border-radius: var(--vt-border-radius);
  /* margin-bottom: 30px; */
}
.widget-container .widget-header {
  /*  padding: 15px 15px;*/
}
.widget-container .widget-header .widget-title {
  font-size: var(--vt-font-size-lg);
  font-weight: bold;
  color: var(--vt-text-color);
}

@media only screen and (min-width:900px){
  .widget-container {
    margin-bottom: 60px !important;
  }
}


.widget-header.type-1 .widget-title {
  position: relative;
  padding-left: 15px;
}
.widget-header.type-1 .widget-title::after {
  content: "";
  width: 5px;
  height: 14px;
  background-color: var(--vt-color-primary);
  border-radius: 2px;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

.widget-header.type-2 .widget-title {
  position: relative;
  padding-left: 15px;
}
.widget-header.type-2 .widget-title::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--vt-color-primary);
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}

.widget-header.type-3 .widget-title {
  display: inline-block;
  position: relative;
  z-index: 99;
}
.widget-header.type-3 .widget-title::after {
  content: "";
  width: 100%;
  height: 12px;
  background-color: var(--vt-color-primary);
  background-image: linear-gradient(90deg, var(--vt-color-primary), var(--vt-color-primary));
  opacity: 0.5;
  transform: scale(105%);
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: -1;
}


/******************************************************************************
 * 搜索
 */
.search-container{
  position: relative;
}
.search-container form{
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.search-container input[type="text"]{
  width: calc(100% - 110px);
  height: 40px;
  box-sizing: border-box;
  border: 1px solid var(--vt-text-color-grey);
  text-indent: 10px;
}
.search-container input[type="text"]:focus {
  border-color: var(--vt-color-primary);
  outline: none;
  box-shadow: 0 0 2px var(--vt-color-primary);
}
.search-container input[type="submit"]{
  width: 100px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--vt-text-color-grey);
  color: var(--vt-text-color-grey);
  cursor: pointer;
}
.search-container input[type="submit"]:hover{
  border: 1px solid var(--vt-color-primary);
  color: var(--vt-color-primary);
}


/******************************************************************************
 * 图文列表
 */
.image-title.widget-container {
  box-sizing: border-box;
  background-color: var(--vt-bg-color-card);
  border-radius: var(--vt-border-radius);
}
.image-title.widget-container .item-list-wrapper {
  padding: 20px 0 0 0;
  box-sizing: border-box;
}

.image-title.widget-container ul.item-list {
  width: auto;
  display: flex;
  justify-content: normal;
  flex-wrap: wrap;
}

.image-title.widget-container ul.item-list .item-widget {
  width: 100%;
  margin: 15px 0px 15px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.image-title.widget-container ul.item-list .item-widget a {
  display: flex;
  width: 100%;
  height: 65px;
  justify-content: flex-start;
  font-size: var(--vt-font-size-sm);
}

.image-title.widget-container ul.item-list .item-widget a img {
  width: 90px;
  height: 65px;
  flex-basis: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--vt-border-radius);
}

.image-title.widget-container ul.item-list .item-widget a .item-title {
  padding: 0px 0 3px 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 1;
}

.image-title.widget-container ul.item-list .item-widget a .item-title div {
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.image-title.widget-container ul.item-list .item-widget a .item-title span {
  font-size: 10px;
  color: var(--vt-text-color-grey);
}


/**
 * HTML 卡片
 */
.html-card-container {
  box-shadow: 0 0 2px 0 var(--vt-shadow-color);
  overflow: hidden;
  /* padding: 15px; */
}

.html-card-container img {
  /* width: 100%; */
  height: auto;
  /* border-radius: var(--vt-border-radius); */
  display: block;
}



/**
 * Tags
 */
.tag-container {
  margin-top: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.tag-container .tag-list {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
  margin-right: -20px;
}
.tag-container .tag-list .tag-item {
  overflow: hidden;
  margin: 0 20px 20px 0;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  display: block;
  color: var(--vt-text-color);
}
.tag-container .tag-list .tag-item:hover {
  color: var(--vt-color-primary);
}
.tag-container .tag-list .tag-item span {
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (min-width: 900px) {
  .tag-container {
    margin-top: 20px;
  }
}


/**
 * Sider Menu
 */
 .category.widget-container .category-list {
  counter-reset: num1 0;
  padding: 0 15px 15px 15px;
}
.side-menu-widget{ position: relative; }
.side-menu-widget .title{
  font-size: 28px;
  font-weight: bold;
  color: var(--vt-color-primary);
}
.side-menu{
  margin: 12px 0 0 0;
  color: var(--vt-color-primary);
}
.side-menu a{
  padding: 7px 0;
  margin: 0px 0;
}
.side-menu .menu-item{ flex-direction: row; }
.side-menu .menu-item > a{ display: flex; justify-content:space-between; }
.side-menu .menu-item > a .arrow{
  font-size: 15px;
  position: relative;
  top: -1px;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  vertical-align: middle;
  transition: all 0.06s linear;
}

.side-menu .menu-item .side-child-menu{ display: block; }
.side-menu .menu-item.hide-children .side-child-menu{ display: none; }
.side-menu .menu-item.hide-children .arrow{ transform:rotate(180deg); }
.side-menu .menu-item .current-menu-item a{ color: var(--vt-color-primary); }
.side-child-menu{ padding: 0 0 0 30px; }

.fa-solid.menu-item::before{ display: inline-block; }
.fa-solid.menu-item > a{ display: inline-block; }

.side-menu .menu-item.fa-solid::before{ display:none }



/**
 * 文章列表
 */

.list-widget{
  padding: 0;
}
.list-widget {
  width: 100%;
}

.list-item {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 30px 0;
  margin: 0 0;
  border-top: 1px dashed var(--vt-border-color);
}

.list-item a.thumbnail {
  display: block;
  width: 100%;
  height: 50vw;
  aspect-ratio: 1 / 0.6;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.list-item a.thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.list-item:hover a.thumbnail img { transform: scale(1.05); }

.list-item .item-info {
  padding: 10px 0;
  box-sizing: border-box;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

.list-item .item-info a.title {
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
  min-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list-item .item-info .meta{
  color: var(--vt-text-color-grey);
  margin: 15px 0 0 0;
}
.list-item .item-info .meta span{ margin:0 5px 0 0; }
.list-item .item-info .description {
  margin: 20px 0 0 0;
  font-size: 14px;
  color: var(--vt-text-color-grey);
  line-height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list-item .item-info .vt-more-btn {
  display: flex;
  border-radius: 13px 13px 13px 13px;
  background-color: var(--vt-color-primary);
  font-size: 14px;
  color: #fff;
  padding: 7px 20px;
  margin: 20px 0 0 0;
  align-self: flex-start;
  border-radius: 25px;
}
.list-item:hover .item-info .vt-more-btn { filter: brightness(1.1); }
.list-item .item-info .vt-more-btn i {
  position: relative;
  top: 1px;
}
.list-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.card-meta {
  box-sizing: border-box;
  padding: 5px 5px;
  color: var(--vt-text-color-grey);
  font-size: var(--vt-font-size-sm);
}

.card-meta .meta i {
  position: relative;
  top: 1px;
}

@media only screen and (min-width:768px){
  .list-widget .list-item{
    width: 100%;
    display: flex;
    margin: 0 0 0px 0;
  }
  .list-item a.thumbnail{
    width: 300px;
    height: 210px;
    flex:0 0 auto;
  }
  .list-item .item-info{
    margin: 0 0 0 30px;
  }
}

@media only screen and (min-width:900px){
/*  .posts-widget .list-item{
    width: calc(33.33% - 60px);
    flex: 0 0 auto;
    margin: 0 60px 60px 0;
  }*/
}


/**
 * full-width
 */
@media only screen and (min-width:768px){
  [full-width] .list-item a.thumbnail {
    width: 400px;
  }
}


/******************************************************************************
 * 卡片列表
 */
.posts-widget{
  padding: 0px 0 0 0;
}
.posts-widget {
  width: 100%;
  margin-right: -8px;
  margin-bottom: -8px;
  display: flex;
  justify-content: normal;
  flex-wrap: wrap;
}
@media only screen and (min-width:500px){
  .posts-widget {
    width: auto;
    margin-right: -30px;
    margin-bottom: -30px;
  }
}
@media only screen and (min-width:900px){
  .posts-widget {
    margin-right: -40px;
    margin-bottom: -40px;
  }
}


.card-item {
  width: 100%;
  box-sizing: border-box;
  /* box-shadow: 0 0 2px 0 var(--vt-shadow-color); */
  /* background-color: var(--vt-bg-color-card); */
  position: relative;
  margin: 0 0 30px 0;
  /*  outline: 1px solid var(--vt-border-color);*/
}

.card-item a.thumbnail {
  display: block;
  width: 100%;
  min-height: 150px;
  aspect-ratio: 1 / 0.6;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.card-item a.thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-item:hover a.thumbnail img { transform: scale(1.05); }

.card-item .item-info {
  padding: 10px 0;
  box-sizing: border-box;
  font-size: 13px;
}

.card-item .item-info a.title {
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
  min-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card-item .item-info .meta{
  color: var(--vt-text-color-grey);
  margin: 15px 0 0 0;
}
.card-item .item-info .meta span{
  margin:0 5px 0 0;
  display: inline-block;
  vertical-align: top;
}
.card-item .item-info .meta span:last-child{
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-item .item-info .description {
  margin: 20px 0 0 0;
  font-size: 14px;
  color: var(--vt-text-color-grey);
  line-height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: none;
}

.card-meta {
  box-sizing: border-box;
  padding: 5px 5px;
  color: var(--vt-text-color-grey);
  font-size: var(--vt-font-size-sm);
}
.card-meta .meta i {
  position: relative;
  top: 1px;
}

@media only screen and (min-width:600px){
  .posts-widget .card-item{
    width: calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    margin: 0 30px 30px 0;
  }
}

@media only screen and (min-width:900px){
  .posts-widget .card-item{
    width: calc(33.33% - 40px);
    flex: 0 0 auto;
    margin: 0 40px 40px 0;
  }
}

.nav-widget{
  padding: 30px 0 40px 0;
}

@media only screen and (min-width: 900px) {
  .nav-widget{
    padding: 50px 0 50px 0;
  }
}


/**
 * page
 */

.page-content {
  margin: 50px auto 0 auto;
  width: 100%;
}

@media screen and (min-width:768px) {
  .page-content {
    width: 900px;
  }
}

/**
 * page about
 */

.about-widget {
  position: relative;
}
.about-widget .title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.about-culture-list {
  position: relative;
  margin: 40px 0;
}
.about-culture-item {
  box-sizing: border-box;
  padding: 20px;
  margin: 20px 0;
  border-radius: 20px;
  box-shadow: 0 0 5px var(--vt-shadow-color);
}
.about-culture-header {
  display: flex;
  align-items: center;
}
.about-culture-header img{
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 5px;
}
.about-culture-header .title {
  margin: 0 0 0 15px;
  font-size: 20px;
  font-weight: 600;
}
.about-culture-description{
  font-size: 14px;
  color: var(--vt-text-color-grey);
  line-height: 20px;
  margin: 15px 0 0 0;
}


@media screen and (min-width:768px) {

  .about-widget > .title {
    font-size: 45px;
  }
  .about-culture-title {
    font-size: 50px;
  }
  .about-culture-list{
    margin-right: -35px;
    display: flex;
    flex-wrap: wrap;
  }
  .about-culture-item{
    /* width: calc(50% - 35px); */
    width: calc(33.33% - 35px);
    margin: 0 35px 35px 0;
    padding: 40px 30px;
  }
  .about-culture-header {
    font-size: 25px;
  }
  .about-culture-header img {
    width: 55px;
    height: 55px;
  }
  .about-culture-description{
    margin: 35px 0 0 0;
  }
}


@media screen and (min-width:1536px) {

}






/**
 * about-factory
 */
.main-container.about-page{
  position: relative;
}
.about-factory {
  position: relative;
}

.about-factory-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}

.about-factory-item {
  width: calc(50% - 20px);
  height: 0;
  margin: 0 20px 20px 0;
  padding-bottom: 30vw;
  position: relative;
}

.about-factory-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--vt-border-radius);
}


@media screen and (min-width:768px) {
  .main-container.about-page{
    flex-direction: column;
  }
  .about-factory-item{
    width: calc(25% - 20px);
    padding-bottom: 23%;
  }
}


/**
 * 数字模块
 */
.about-numbers-container.about-page {
  position: relative;
}
.about-numbers-container.about-page .main-widget {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.about-numbers-container.about-page .about-numbers-widget {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 20px;
}
.about-numbers-container.about-page .about-numbers-widget .number-item {
  width: 100%;
  min-height: 150px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--vt-color-primary);
  font-size: 16px;
  border-bottom: 1px solid var(--vt-shadow-color);
}
.about-numbers-container.about-page .about-numbers-widget .number-item:first-child {
  border-top: 1px solid var(--vt-shadow-color);
}
.about-numbers-container.about-page .number-item .number-header {
  font-size: 40px;
  font-weight: 600;
  margin: 20px 0 5px 0;
}
.about-numbers-container.about-page .number-item .number-header span:nth-child(2) {
  font-size: 40px;
}
.about-numbers-container.about-page .number-item .title {
  color: var(--vt-text-color-grey);
  font-size: 19px;
  margin: 0;
}

@media screen and (min-width:768px) {
  .about-numbers-container.about-page .main-widget {
    width: 1200px;
    margin: 80px auto;
  }
  .about-numbers-container.about-page .main-widget .number-item {
    width: 25%;
    min-height: auto;
    padding: 38px 0;
  }
  .about-numbers-container.about-page .number-item .number-header {
    font-size: 40px;
    margin: 0px 0 5px 0;
  }
}

@media screen and (min-width:1536px) {
  .about-numbers-container.about-page .main-widget {
    /* width: 1500px; */
  }
}

/**
 * 
 */

.about-numbers-thumbnail {
  box-sizing: border-box;
  padding: 20px;
}
.about-numbers-thumbnail img{
  width: 100%;
  object-fit: cover;
  border-radius: var(--vt-border-radius);
}
.about-numbers-info{
  box-sizing: border-box;
  padding: 20px;
}
.about-numbers-info .title {
  font-size: 26px;
  font-weight: 600;
}
.about-numbers-info .description {
  color: var(--vt-text-color-grey);
  font-size: 14px;
  line-height: 25px;
  margin: 30px 0;
}
.about-numbers-info .description p{
  margin: 15px 0;
  text-align: justify;
}


@media screen and (min-width:768px) {
  .about-numbers-container.about-page .main-widget {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .about-numbers-container.about-page .main-widget .about-numbers-widget {
    width: 260px;
    flex: 0 0 auto;
    text-align: center;
    padding: 0;
  }
  .about-numbers-container.about-page .main-widget .number-item {
    width: 100%;
  }
  .about-numbers-container.about-page .main-widget .about-numbers-thumbnail {
    width: 400px;
    padding: 0;
    box-sizing: border-box;
    margin: 0 30px;
  }
  .about-numbers-container.about-page .main-widget .about-numbers-info {
    width: 200px;
    flex-grow: 1;
    padding: 0;
  }
  .about-numbers-container.about-page .main-widget .about-numbers-info .title {
    font-size: 38px;
    font-weight: 600;
    border-bottom: 2px dashed var(--vt-shadow-color);
    padding: 0 0 20px 0;
  }


}

/**
 * contact page
 */

.main-container.contact-page {
  position: relative;
}
.main-container.contact-page .main-widget{
  padding: 30px 0;
}
.contact-info-widget {
  position: relative;
}
.contact-info-widget .title{
  font-size: 20px;
  color: var(--vt-color-primary);
}
.contact-info-widget .subtitle{
  font-size: 16px;
  line-height: 1.3;
  margin: 20px 0;
  display: none;
}
.contact-info-widget .subtitle span {
  color: var(--vt-color-primary);
}
.contact-info-widget .description{
  font-size: 16px;
  line-height: 1.3;
  margin: 20px 0;
}
.contact-page-items-widgte {
  display: flex;
  flex-direction: column;
}
.contact-page-items {
  display: flex;
  margin: 10px 0;
  line-height: 25px;
}
.contact-page-items i {
  margin: 0 10px 0 0;
  position: relative;
  top: 4px;
  color: var(--vt-color-primary);
}

.main-container.contact-page .vt-contact-form-7 {
  margin: 30px 0 0 0;
}


@media screen and (min-width:768px) {
  .main-container.contact-page .main-widget{
    display: flex;
    justify-content: space-between;
    padding: 70px 0;
  }
  .main-container.contact-page .contact-info-widget {
    box-sizing: border-box;
    width: calc(50% - 60px);
  }
  .main-container.contact-page .contact-info-widget .subtitle{
    display: block;
    font-size: 45px;
    font-weight: 700;
    margin: 30px 0 0 0;
  }
  .main-container.contact-page .contact-info-widget .subtitle span{
    clear: both;
    display: block;
  }
  .main-container.contact-page .contact-info-widget .description{
    margin: 30px 0 0 0;
  }
  .main-container.contact-page .contact-page-items-widgte {
    margin: 30px 0 0 0;
  }
  .main-container.contact-page .contact-page-items {
    margin: 30px 0 0 0;
  }
  .main-container.contact-page .vt-contact-form-7{
    box-sizing: border-box;
    width: calc(50% - 30px);
    margin-top: 0;
  }
}
/******************************************************************************
 *
 */

.header {
  display: block;
  width: 100%;
  height: 60px;
  z-index: 9;
  /*
  position: fixed;
  top: 0;
  left: 0;
  */
  background-color: var(--vt-bg-color-card);
  box-shadow: 0px 0px 3px 0 var(--vt-shadow-color);
}

.header .header-container {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.header .header-container a.logo {
  display: flex;
  height: 60px;
  min-width: 120px;
  width: auto;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--vt-font-size-lg);
  float: left;
  cursor: pointer;
}
.header .header-container a.logo img {
  display: block;
  max-height: 70%;
}

@media only screen and (min-width: 768px) {
  .header .header-container {
    width: 1200px;
    height: 100px;
    padding: 0 0px;
  }
}

.header .header-container a.logo img.darkness { display: none; }
.dark-mode .header .header-container a.logo img { display: none; }
.dark-mode .header .header-container a.logo img.darkness { display: block; }



/******************************************************************************
 * 菜单样式
 */
.header .vt-nav-menu {
  list-style: none;
  height: calc(100vh - 60px);
  width: 100vw;
  position: fixed;
  top: 60px;
  left: 0;
  float: left;
  margin-left: 0px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  overflow-y: scroll;
  scrollbar-width: none;
  z-index: 999;
  background-color: var(--vt-bg-color-card);
}
.header .vt-nav-menu::-webkit-scrollbar { display: none; }
.vt-nav-menu li {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
  min-height: 60px;
  min-width: 60px;
  box-sizing: border-box;
  padding: 0px;
  flex: 0 0 auto;
}
.vt-nav-menu li a {
  font-size: var(--vt-font-size-base);
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  justify-content: space-between;
}
.child-menu {
  background-color: var(--vt-bg-color-card);
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px 0 10px 30px;
  display: none;
}
.active .child-menu {
  position: relative;
}
.child-menu li {
  min-height: 40px;
  line-height: 40px;
}
.child-menu li a {
  
  font-size: 15px ;
}
.child-menu li a i {
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  top: 0px;
  right: 3px;
}
.menu-item-has-children .menu-item-has-children {
  box-sizing: border-box;
  padding-right: 20px;
}
.menu-item-has-children .menu-item-has-children .child-menu {
  top: 0px;
  left: 100%;
}
.menu-item-has-children.active > .child-menu {
  display: flex;
}
.menu-item-has-children .menu-item-has-children i{
  top: 15px;
}
.menu-item-has-children.active > a i {
  transform: rotate(180deg);
}
.menu-item-has-children .menu-item-has-children.active > a i {
  display: inline-block;
  transform: rotate(-90deg);
}


@media only screen and (min-width: 1200px) {
  .header {
    height: 100px;
  }
  .header .vt-nav-menu {
    list-style: none;
    height: 100px;
    width: 820px;
    float: left;
    margin-left: 30px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    overflow: visible;
    position: relative;
    top: 0;
    left: 0;
  }

  .vt-nav-menu > li { height:100px; }

  .vt-nav-menu li {
    width: auto;
    margin:0 15px 0 15px;
    justify-content: center;
  }

  .vt-nav-menu li .child-menu{
    position: absolute;
    top: 60px;
    left: 0;
    min-width: 200px;
    background-color: var(--vt-bg-color-card);
    box-shadow: 0 0 3px 0 var(--vt-shadow-color);
    border-radius: var(--vt-border-radius);
    position: absolute;
    top: 80px;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 10px;
  }
}


/* 移动端 菜单隐藏或者显示相关 */
.header .vt-nav-menu.mobile-menu-hide{ display:none; }
.no-scroll{ overflow:none; }
@media only screen and (min-width: 1200px) {
  .header .vt-nav-menu.mobile-menu-hide{ display:flex; }
}




/******************************************************************************
 * 顶部按钮
 */
.header .header-button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.header .header-button-group a.nav-button {
  width: 40px;
  /* height: 30px;
  line-height: 30px; */
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
}

.header .header-button-group a.nav-button i {
  font-size: 20px;
  font-weight: 300;
}

/**
 * 暗黑模式按钮
 */
.header .header-button-group .dark-mode-button .moon {
  display: none;
}
.header .header-button-group .dark-mode-button .sun {
  display: block;
}
.header .header-button-group .dark-mode-button.dark .moon {
  display: block;
}
.header .header-button-group .dark-mode-button.dark .sun {
  display: none;
}

.header-container::after {
  content: "";
  width: 0px;
  height: 0px;
  clear: both;
}


/* 多语言按钮 */
.header .language{
  height: 25px;
  margin: 0 8px 0 0;
  position: relative;
}
.header .language .fa-language{
  font-size: 23px;
  cursor: pointer;
}
.header .language .language-widget{
  /* display: none; */
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 10px 20px;
  top: 30px;
  right: 0;
  background-color: var(--vt-bg-color-card);
  box-shadow: 0 0 5px 0 var(--vt-shadow-color);
  border-radius: var(--vt-border-radius);
  width: 100px;
  z-index: 999;
}
.header .language .language-widget.hide{ display: none; }
.header .language .language-widget a{
  padding: 6px 0;
  font-size: 14px;
}


/* 移动端菜单 */
@media only screen and (min-width:768px){
  .nav-button.menu-button{
    display: none;
  }
}





/**
 * footer
 *
 * @author: vtheme <mail@vtheme.cn>
 * @link: https://vtheme.cn
 */

.footer {
  width: 100%;
  height: auto;
  background-color: rgba(23,47,59, 1);
  box-shadow: 0 0 1px 0 var(--vt-shadow-color);
  color: rgba(255,255,255, 0.6);
  font-size: 14px;
  padding: 0;
  box-sizing: border-box;
}

.footer a {
  font-size: 14px;
  color: rgba(255,255,255, 0.5);
}
.footer a:hover {
  color: var(--vt-color-primary);
}

.footer-top{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 0;
}
.footer-info{
  font-size:14px;
  margin:0;
}
.footer-info .content{
  padding:15px 15px;
  line-height: 30px;
  box-sizing: border-box;
}
.footer-info .thumbnail{
  display:flex;
  justify-content:flex-start;
  padding:0px 15px;
}
.footer-info .thumbnail img{
  max-width:260px;
  min-width:80px;
}

.footer .footer-info a.thumbnail img.darkness { display: none; }
.dark-mode .footer .footer-info a.thumbnail img { display: none; }
.dark-mode .footer .footer-info a.thumbnail img.darkness { display: block; }


/**
 * Footer Links
 */
.footer-link-widget{
  padding: 0 15px;
}
.footer-link-group {
  margin: 20px 0;
}
.footer-link-group-header {
  font-size: var(--vt-font-size-lg);
  padding: 10px 0;
}
.footer-link-group-header .title {
  display: inline-block;
  position: relative;
}
.footer-link-group-header .title::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -8px;
  left: 0;
  background-color: var(--vt-color-primary);
}
.footer-link-group-body {
  position: relative;
  margin: 15px 0 0 0;
}
.footer-link-group-child {
  padding: 10px 0;
  line-height: 1.35;
}


@media only screen and (min-width:768px){
  .footer-top{
    width: 1200px;
    margin: 0 auto 5% auto;
    padding: 100px 0;
    flex-direction: row;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
  .footer-info {
    max-width: 300px;
  }
  .footer-info .thumbnail {
    display: flex;
    justify-content: flex-start;
  }
  .footer-link-widget {
    flex: 1;
    padding: 0 0 0 100px;
    display: flex;
    justify-content: space-between;
  }
  .footer-link-group {
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 30px;
    max-width: 33%;
  }
  .footer-link-group:last-child { padding-right: 0; }
  .footer-link-group-header .title{
    font-size: 23px;
    font-weight: 600;
  }
}


/**
 * Footer Copyright
 */
.footer-widget{
  position: relative;
}
.footer-widget:before{
  content: '';
  width: 100%;
  height: 0;
  border-top: 1px solid rgba(255,255,255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.footer-container {
  border-top: 0px;
  line-height: 23px;
  padding: 15px 15px;
  font-size: 13px;
}
.footer-container a{
  font-size:13px;
}
.footer-container a:hover {
  color: var(--vt-color-primary);
}

.footer-container span {
  text-align: center;
  align-items: center;
  margin-top: 20px;
  padding: 0px 4px;
}

.footer-container span:nth-child(1) {
  margin-top: 0px;
}
.footer-copyright-widget {
  margin: 10px 0;
}
.footer-copyright-links {
  display: flex;
  margin: 10px 0;
}
.footer-copyright-link-item{
  padding: 0 15px;
  position: relative;
}
.footer-copyright-link-item::after{
  content: '';
  display: block;
  width: 1px;
  height: 10px;
  background-color: rgba(255,255,255, 0.6);
  position: absolute;
  top: 7px;
  right: 0;
}
.footer-copyright-link-item:first-child { padding-left: 0; }
.footer-copyright-link-item:last-child::after { display: none; }

@media screen and (min-width:768px) {
  .footer-container {
    width: 1200px;
    margin: 0 auto;  
    padding: 1.2% 0;
    display: flex;
    justify-content: space-between;
  }
}


@media screen and (min-width:1500px) {
  .footer-top{
    width: 1536px;
  }
  .footer-widget .footer-container {
    width: 1536px;
  }
}

.widget-container {
  border-radius: var(--vt-border-radius);
  /* margin-bottom: 30px; */
}
.widget-container .widget-header {
  /*  padding: 15px 15px;*/
}
.widget-container .widget-header .widget-title {
  font-size: var(--vt-font-size-lg);
  font-weight: bold;
  color: var(--vt-text-color);
}

@media only screen and (min-width:900px){
  .widget-container {
    margin-bottom: 60px !important;
  }
}


.widget-header.type-1 .widget-title {
  position: relative;
  padding-left: 15px;
}
.widget-header.type-1 .widget-title::after {
  content: "";
  width: 5px;
  height: 14px;
  background-color: var(--vt-color-primary);
  border-radius: 2px;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

.widget-header.type-2 .widget-title {
  position: relative;
  padding-left: 15px;
}
.widget-header.type-2 .widget-title::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--vt-color-primary);
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}

.widget-header.type-3 .widget-title {
  display: inline-block;
  position: relative;
  z-index: 99;
}
.widget-header.type-3 .widget-title::after {
  content: "";
  width: 100%;
  height: 12px;
  background-color: var(--vt-color-primary);
  background-image: linear-gradient(90deg, var(--vt-color-primary), var(--vt-color-primary));
  opacity: 0.5;
  transform: scale(105%);
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: -1;
}


/******************************************************************************
 * 搜索
 */
.search-container{
  position: relative;
}
.search-container form{
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.search-container input[type="text"]{
  width: calc(100% - 110px);
  height: 40px;
  box-sizing: border-box;
  border: 1px solid var(--vt-text-color-grey);
  text-indent: 10px;
}
.search-container input[type="text"]:focus {
  border-color: var(--vt-color-primary);
  outline: none;
  box-shadow: 0 0 2px var(--vt-color-primary);
}
.search-container input[type="submit"]{
  width: 100px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--vt-text-color-grey);
  color: var(--vt-text-color-grey);
  cursor: pointer;
}
.search-container input[type="submit"]:hover{
  border: 1px solid var(--vt-color-primary);
  color: var(--vt-color-primary);
}


/******************************************************************************
 * 图文列表
 */
.image-title.widget-container {
  box-sizing: border-box;
  background-color: var(--vt-bg-color-card);
  border-radius: var(--vt-border-radius);
}
.image-title.widget-container .item-list-wrapper {
  padding: 20px 0 0 0;
  box-sizing: border-box;
}

.image-title.widget-container ul.item-list {
  width: auto;
  display: flex;
  justify-content: normal;
  flex-wrap: wrap;
}

.image-title.widget-container ul.item-list .item-widget {
  width: 100%;
  margin: 15px 0px 15px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.image-title.widget-container ul.item-list .item-widget a {
  display: flex;
  width: 100%;
  height: 65px;
  justify-content: flex-start;
  font-size: var(--vt-font-size-sm);
}

.image-title.widget-container ul.item-list .item-widget a img {
  width: 90px;
  height: 65px;
  flex-basis: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--vt-border-radius);
}

.image-title.widget-container ul.item-list .item-widget a .item-title {
  padding: 0px 0 3px 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 1;
}

.image-title.widget-container ul.item-list .item-widget a .item-title div {
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.image-title.widget-container ul.item-list .item-widget a .item-title span {
  font-size: 10px;
  color: var(--vt-text-color-grey);
}


/**
 * HTML 卡片
 */
.html-card-container {
  box-shadow: 0 0 2px 0 var(--vt-shadow-color);
  overflow: hidden;
  /* padding: 15px; */
}

.html-card-container img {
  /* width: 100%; */
  height: auto;
  /* border-radius: var(--vt-border-radius); */
  display: block;
}



/**
 * Tags
 */
.tag-container {
  margin-top: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.tag-container .tag-list {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
  margin-right: -20px;
}
.tag-container .tag-list .tag-item {
  overflow: hidden;
  margin: 0 20px 20px 0;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  display: block;
  color: var(--vt-text-color);
}
.tag-container .tag-list .tag-item:hover {
  color: var(--vt-color-primary);
}
.tag-container .tag-list .tag-item span {
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (min-width: 900px) {
  .tag-container {
    margin-top: 20px;
  }
}


/**
 * Sider Menu
 */
 .category.widget-container .category-list {
  counter-reset: num1 0;
  padding: 0 15px 15px 15px;
}
.side-menu-widget{ position: relative; }
.side-menu-widget .title{
  font-size: 28px;
  font-weight: bold;
  color: var(--vt-color-primary);
}
.side-menu{
  margin: 12px 0 0 0;
  color: var(--vt-color-primary);
}
.side-menu a{
  padding: 7px 0;
  margin: 0px 0;
}
.side-menu .menu-item{ flex-direction: row; }
.side-menu .menu-item > a{ display: flex; justify-content:space-between; }
.side-menu .menu-item > a .arrow{
  font-size: 15px;
  position: relative;
  top: -1px;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  vertical-align: middle;
  transition: all 0.06s linear;
}

.side-menu .menu-item .side-child-menu{ display: block; }
.side-menu .menu-item.hide-children .side-child-menu{ display: none; }
.side-menu .menu-item.hide-children .arrow{ transform:rotate(180deg); }
.side-menu .menu-item .current-menu-item a{ color: var(--vt-color-primary); }
.side-child-menu{ padding: 0 0 0 30px; }

.fa-solid.menu-item::before{ display: inline-block; }
.fa-solid.menu-item > a{ display: inline-block; }

.side-menu .menu-item.fa-solid::before{ display:none }



/******************************************************************************
 * 全局 banner 单页和分类页专用
 */

.banner {
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 1 / 0.3;
  min-height: 230px;
  color: #f8f8f8;
  font-size: var(--vt-font-size-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(0.5px);
}

.banner .banner-container {
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 15px;
  text-align: left;
}

.banner .banner-container .title {
  font-size: 25px;
  font-weight: 500;
}

.banner .banner-container .description {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
}

.banner .banner-container .breadcrumbs{
  margin: 20px 0 0 0;
}


@media screen and (min-width: 768px) {
  .banner {
    height: 370px;
    padding: 10px 0;
    /* background-size: 200% auto; */
  }
  .banner .banner-container {
    width: 1200px;
    height: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .banner .banner-container .title {
    font-size: 45px;
    font-weight: 500;
    margin: 120px 0 0 0;
  }
  .banner .banner-container .description {
    width: 500px;
    margin-top: 30px;
    font-size: 18px;
  }
  .banner .banner-container .breadcrumbs{
    margin: 30px 0 0 0;
  }
}











.main-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
}

.main-container::after {
  content: "";
  display: block;
  clear: both;
}

.main-container .main-widget {
  width: 100%;
  padding: 60px 0 60px 0;
}

.main-container .main-widget .main-header {
  font-size: var(--vt-font-size-base);
  margin-bottom: 15px;
}

.main-header + .main-container {
  padding-top: 8px;
}

.header + .main-container {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media only screen and (min-width: 900px) {
  .main-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 0px 0;
    display: flex;
    justify-content: flex-start;
  }
  .main-container::after {
    content: "";
    display: block;
    clear: both;
  }
  .main-container .main-widget {
    width: 100%;
    margin-bottom: 0;
  }
  .main-container .main-widget > *:nth-child(1){
    margin-top: 0;
  }
  .header + .main-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .main-container .main-widget {
    position: relative;
  }
}

@media only screen and (min-width: 1400px) {
  
}


.sider > div {
  margin-bottom: 30px;
}


@media only screen and (min-width: 900px) {
  .sider {
    width: 300px;
    flex: 0 0 300px;
    margin-left: 100px;
    position: relative;
    padding: 60px 0 0 0;
  }
  /* 最后一个模块粘性定位 */
  .sider .widget-container:last-child {
    position: sticky;
    top: 20px;
    margin: 0 0 20px 0;
  }
  .sider > div {
    margin-bottom: 20px;
  }
}



/******************************************************************************
 * Home module
 */
.main-header{
  text-align: center;
}

.main-header h3{
  font-size: 26px;
  text-align: center;
  font-weight: 600;
}

.main-header .subtitle{
  margin:23px 0 0 0;
  line-height: 140%;
  box-sizing: border-box;
}

@media only screen and (min-width:768px){
  .main-header h3{
    font-size: 45px;
  }
  .main-header .subtitle{
    max-width: 800px;
    margin: 25px auto 25px auto;
  }
}


/*****************************************************************************/
/**
 * full-width
 */


/**
 * sider-left
 */
.main-container[sider-left] {
  display: flex;
  flex-direction: column-reverse;
}

@media only screen and (min-width:768px){
  .main-container[sider-left] {
    flex-direction: row-reverse;
  }
  .main-container[sider-left] .sider{
    margin-left: 0px;
    margin-right: 100px;
  }
}



























.dark-mode input, .dark-mode textarea {
  color: var(--vt-text-color);
  background-color: var(--vt-bg-color-card);
}
.dark-mode input:focus-visible, .dark-mode textarea:focus-visible {
  outline: 1px solid var(--vt-color-primary);
}



/******************************************************************************
 * single.php
 */

.article-widget {
  padding: 0;
  box-sizing: border-box;
}

.article-widget .article-category{
  padding: 0 0 30px 0;
}
.article-widget .article-category a{
  font-size: 16px;
  color: var(--vt-color-primary);
  letter-spacing:2px;
  margin: 0 5px 0 0;
}
  

.article-widget .article-title {
  line-height: 50px;
  font-size: 32px;
  font-weight: 500;
  color: var(--vt-text-color);
  word-break: break-all;
}

.article-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  color: var(--vt-text-color-grey);
  font-size: 14px;
  padding: 30px 0 30px 0;
}
.article-box a{ font-size:14px; color: var(--vt-text-color-grey); }

.article-box .author{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-box .author .avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0 4px 0 0;
  overflow: hidden;
}
.article-box .author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-box .meta-item {
  margin-right: 30px;
}
.article-box .meta-item i {
  font-size: 13px;
  margin: 0 2px 0 0;
}

.meta-item.comment-counter { display:none; }
@media only screen and (min-width:900px){
  .meta-item.comment-counter { display:block; }
}


.article-content
{
  padding: 20px 0 0 0;
  word-break: break-all;
}

.copyright-content {
  padding: 10px 20px;
  font-size: var(--vt-font-size-sm);
  color: var(--vt-text-color-grey);
  border-radius: var(--vt-border-radius);
  margin-top: 20px;
  background-color: var(--vt-bg-color);
}

.copyright-content i {
  display: inline-block;
  transform: scale(1.35);
  position: relative;
  /* top: 1px; */
}

.dark-mode pre {
  line-height: 18px;
  font-size: 13px !important;
  background-color: var(--vt-bg-color) !important;
  border-color: var(--vt-bg-color) !important;
  padding: 12px;
  margin: 5px 0;
  color: var(--vt-text-color);
  border-radius: var(--vt-border-radius);
}


/**
 * 文章内页分类和标签
 */
.tags-widget{
  margin: 50px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.tags-widget .icon{
  font-size:18px;
  color: var(--vt-text-color-grey);
  margin-right: 5px;
  position: relative;
  /* top: -2px; */
}
.tags-widget .tag-item{
  margin: 0 5px 0 0;
}
.tags-widget .tag-item a{
  display: block;
  padding: 0px 5px 0 0;
  line-height: 20px;
  color: var(--vt-text-color-grey);
  font-size: var(--vt-font-size-sm);
  border-radius: var(--vt-border-radius);
}


.the-end{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 50px 0;
  font-size: 14px;
  color:var(--vt-border-color);
}
.the-end::after, .the-end::before {
  content: '';
  background: var(--vt-border-color);
  max-width: 20%;
  height: 1px;
  margin: 0 1em;
  flex: 1;
}
/**
 * 产品卡片
 */
.product-widget {
  position: relative;
  padding: 20px 0;
  min-width: 0;
}

@media (min-width: 768px) {
  .product-widget {
    position: relative;
    padding: 60px 0;
  }
  .product-widget .product-header {
    display: flex;
  }
  .product-widget .product-header .product-gallery{
    width: 50%;
  }
  .product-widget .product-header .product-info{
    width: 50%;
    flex: 1;
  }
}


/**
 * Swiper 把父容器（div）撑得特别宽，因为 Swiper 内部计算宽度的方式与父容器的布局模式发生了冲突，导致 Swiper 认为它拥有无限的空间。
 * 父容器使用 display: flex（特别是 flex-direction: column）或 display: grid 时。
 * 核心解决方案：限制 Swiper 容器的最小宽度, Flex 或 Grid 子项默认有一个“最小内容宽度”的特性，这会阻止 Swiper 收缩到父容器的宽度内。
 * 解决方法： 给 Swiper 的外层容器（或者直接给 .swiper 类）添加 min-width: 0。
 * .parent-container { display: flex; }
 * .swiper {
 *   min-width: 0; // 允许 Swiper 缩小以适应父容器
 *   width: 100%;  // 确保占满父容器宽度
 * }
 */


/*****************************************************************************/

/**
 * 产品图片组
 */

.product-gallery {
  margin: 0px 0;
}

/* 主图 */
.swiper-main {
  border-radius: var(--vt-border-radius);
  box-sizing: border-box;
  border: 1px solid var(--vt-border-color);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.swiper-main .swiper-slide {
  position: relative;
  height: auto;
  padding-bottom: 100%;  
}

.swiper-main .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* 缩略图 */
.swiper-thumbnails {
  margin: 10px 0 0 0;
  width: 100%;
  overflow: hidden;
}

.swiper-thumbnails .swiper-slide {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 25%;  
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid var(--vt-border-color);
}

.swiper-thumbnails .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-thumbnails .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

@media (min-width: 768px) {
  .swiper-thumbnails .swiper-slide {
    padding-bottom: 20%;
  }
}


/*****************************************************************************/

/**
 * 产品信息
 */
.product-info {
  position: relative;
}

.product-info .product-category {
  padding: 20px 0 10px 0;
}
.product-info .product-category a {
  position: relative;
  font-weight: 600;
}
.product-info .product-title {
  padding: 10px 0;
  font-size: var(--vt-font-size-lg);
  font-weight: 600;
  line-height: 1.4;
  color: var(--vt-color-primary);
  text-align: justify;
}

.product-info .product-edit-action {
  display: block;
  padding: 5px 0;
  color: var(--vt-text-color-grey);
  font-size: 13px;
}
.product-info .product-edit-action i {
  position: relative;
  font-size: 15px;
}

.product-info .product-meta {
  position: relative;
  padding: 15px 0;
}
.product-info .product-meta-item {
  margin: 15px 0;
  padding: 0 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}
.product-info .product-meta-item::before{
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background-color: var(--vt-color-primary);
  position: absolute;
  left: 0;
  top: 8px;
}
.product-info .product-meta-item .title{
  margin: 10px 10px 6px 0;
  font-size: 14px;
  font-weight: 600;
}
.product-info .product-meta-item .description{
  color: var(--vt-text-color-grey);
}

.product-action {
  position: relative;
}

.product-action .btn {
  margin: 15px 0;
}

@media screen and (min-width:768px) {
  .product-info .product-category {
    padding: 0 0 10px 0;
  }
  /* .product-widget {

  } */
  .product-widget .product-gallery {
    margin: 0 35px 0 0;
  }
  /* .product-widget .product-info {

  } */
}


/*****************************************************************************/

/**
 * 产品详情
 */
.product-content {
  padding: 0;
}

.product-content .product-content-header {
  font-size: var(--vt-font-size-base);
  font-weight: 600;
  position: relative;
}


@media screen and (min-width:768px) {
  .product-widget .vt-divider {
    margin: 50px 0 40px 0;
  }

  .product-widget .product-content-header {
    font-size: var(--vt-font-size-lg);
    color: var(--vt-color-primary);
  }

}


/*****************************************************************************/

/**
 * 产品详情 - Contact Form 7
 */


.vt-contact-form-7 {
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid var(--vt-border-color);
  border-radius: 10px;
}
.vt-contact-form-7 .title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.vt-contact-form-7 .description {
  font-size: 16px;
  text-align: center;
  color: var(--vt-text-color-grey);
  margin: 20px 0 0 0;
}

@media screen and (min-width:768px) {
  .vt-contact-form-7 {
    box-sizing: border-box;
    padding: 60px 20px;
    border-radius: 30px;
  }
  .vt-contact-form-7 .wpcf7{
    max-width: 700px;
    margin: 0 auto;
  }
  .vt-contact-form-7 .title {
    font-size: 35px;
  }
  .vt-contact-form-7 .description{
    margin: 20px 0 30px 0;
  }

}



 /*
.vt-contact-form-7 {
  position: relative;
}

.vt-contact-form-7 .wpcf7 {
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid var(--vt-border-color);
  border-radius: 10px;
}

.vt-contact-form-7 .wpcf7 p{
  margin-top: 15px;
}

.vt-contact-form-7 .wpcf7 input,
.vt-contact-form-7 .wpcf7 textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 10px;
  border-radius: 3px;
  border: 1px solid var(--vt-border-color);
}

.vt-contact-form-7 .wpcf7 .wpcf7-not-valid-tip {
  font-size: 13px;
}

.vt-contact-form-7 .wpcf7 .wpcf7-response-output {
  margin: 30px 0 0 0;
}

.wpcf7-submit .wpcf7-submit{

}

*/





/*
Breakpoints 
sm: 640px
md: 768px
lg: 1024px
xl: 1280px
2xl: 1536px
*/
