:root {
  --jzt-bg: #eef5fd;
  --color-text-light: #9aa0a6;
  --color-text-default: #5f6368;
  --color-text-dark: #202124;
  --color-text-primary: #4285f4;
  --color-text-success: #34a853;
  --color-text-warning: #fbbc04;
  --color-text-danger: #ea4335;
  --color-border-lighter: #f1f3f4;
  --color-border-light: #e8eaed;
  --color-border-default: #dadce0;
  --color-border-dark: #bdc1c6;
  --color-border-primary: #4285f4;
  --color-border-success: #34a853;
  --color-border-warning: #fbbc04;
  --color-border-danger: #ea4335;
  --color-bg-light: #f8f9fa;
  --color-bg-default: #f1f3f4;
  --color-bg-dark: #e8eaed;
  --color-bg-darker: #dadce0;
  --color-bg-primary: #4285f4;
  --color-bg-success: #34a853;
  --color-bg-warning: #fbbc04;
  --color-bg-danger: #ea4335;
  --color-link-text: #ea4335;
  --color-link-hover: #d93025;
  --box-shadow-default: 0 0 0 2px rgba(154, 160, 166, .32);
  --box-shadow-primary: 0 0 0 2px rgba(66, 133, 244, .32);
  --box-shadow-success: 0 0 0 2px rgba(52, 168, 83, .32);
  --box-shadow-warning: 0 0 0 2px rgba(251, 188, 4, .32);
  --box-shadow-danger: 0 0 0 2px rgba(234, 67, 53, .32);
  --box-shadow-sm: 0 2px 2px 0 rgba(32, 33, 36, .14),
                              0 3px 1px -2px rgba(32, 33, 36, .2),
                              0 1px 5px 0 rgba(32, 33, 36, .12);
  --box-shadow-base: 0 4px 5px 0 rgba(32, 33, 36, .14),
                              0 1px 10px 0 rgba(32, 33, 36, .12),
                              0 2px 4px -1px rgba(32, 33, 36, .2);
  --box-shadow-lg: 0 8px 10px 1px rgba(32, 33, 36, .14),
                              0 3px 14px 2px rgba(32, 33, 36, .12),
                              0 5px 5px -3px rgba(32, 33, 36, .2);
  --color-gray-0: #f8f9fa;
  --color-gray-1: #f1f3f4;
  --color-gray-2: #e8eaed;
  --color-gray-3: #dadce0;
  --color-gray-4: #bdc1c6;
  --color-gray-5: #9aa0a6;
  --color-gray-6: #80868b;
  --color-gray-7: #5f6368;
  --color-gray-8: #3c4043;
  --color-gray-9: #202124;
  --color-primary-0: #e8f0fe;
  --color-primary-1: #d2e3fc;
  --color-primary-2: #aecbfa;
  --color-primary-3: #8ab4f8;
  --color-primary-4: #669df6;
  --color-primary-5: #4285f4;
  --color-primary-6: #1a73e8;
  --color-primary-7: #1967d2;
  --color-primary-8: #185abc;
  --color-primary-9: #174ea6;
  --color-success-0: #e6f4ea;
  --color-success-1: #ceead6;
  --color-success-2: #a8dab5;
  --color-success-3: #81c995;
  --color-success-4: #5bb974;
  --color-success-5: #34a853;
  --color-success-6: #1e8e3e;
  --color-success-7: #188038;
  --color-success-8: #137333;
  --color-success-9: #0d652d;
  --color-warning-0: #fef7e0;
  --color-warning-1: #feefc3;
  --color-warning-2: #fde293;
  --color-warning-3: #fdd663;
  --color-warning-4: #fcc934;
  --color-warning-5: #fbbc04;
  --color-warning-6: #f9ab00;
  --color-warning-7: #f29900;
  --color-warning-8: #ea8600;
  --color-warning-9: #e37400;
  --color-danger-0: #fce8e6;
  --color-danger-1: #fad2cf;
  --color-danger-2: #f6aea9;
  --color-danger-3: #f28b82;
  --color-danger-4: #ee675c;
  --color-danger-5: #ea4335;
  --color-danger-6: #d93025;
  --color-danger-7: #c5221f;
  --color-danger-8: #b31412;
  --color-danger-9: #a50e0e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  color: var(--color-text-dark);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin-top: 16px;
  margin-bottom: 16px;
  border: 0;
  border-top: 1px solid var(--color-border-default);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 28px;
  line-height: 36px;
}

h2 {
  font-size: 24px;
  line-height: 32px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
}

h4 {
  font-size: 16px;
  line-height: 24px;
}

h5 {
  font-size: 14px;
  line-height: 22px;
}

h6 {
  font-size: 12px;
  line-height: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title] {
  cursor: help;
  text-decoration: underline dotted;
  -webkit-text-decoration: underline dotted;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

ul.list-disc {
  padding-left: 24px;
  list-style-type: disc;
}

ul.list-circle {
  padding-left: 24px;
  list-style-type: circle;
}

ul.list-square {
  padding-left: 24px;
  list-style-type: square;
}

ol.list-decimal {
  padding-left: 24px;
  list-style-type: decimal;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dt {
  font-weight: 400;
}

dd {
  margin-left: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: .75em;
}

sub,
sup {
  font-size: .75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--color-link-text);
}

a:hover {
  text-decoration: none;
  color: var(--color-link-hover);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  text-decoration: none;
  color: inherit;
}

pre,
code,
kbd,
samp {
  font-family: Consolas, monaco, monospace;
  font-size: 1em;
}

figure {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

th {
  font-weight: 400;
  padding: 0;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

td {
  padding: 0;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-width: 0;
  border-style: solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  font-size: 16px;
  line-height: inherit;
  float: left;
  width: 100%;
  padding: 0;
  color: inherit;
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:focus {
  outline: 0;
}

:focus-visible {
  outline: 2px dotted var(--color-border-dark);
}

::-moz-selection {
  color: #fff;
  background: var(--color-bg-primary);
  text-shadow: none;
}

::selection {
  color: #fff;
  background: var(--color-bg-primary);
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(32, 33, 36, 0.08);
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(32, 33, 36, 0.16);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(32, 33, 36, 0.24);
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

.row {
  display: flex;
  margin-right: -16px;
  margin-left: -16px;
  flex-wrap: wrap;
}
.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  flex-shrink: 0;
}

.col-auto {
  width: auto;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.table {
  width: 100%;
}
.table th,
.table td {
  padding: 8px;
}

.table-sm th,
.table-sm td {
  padding: 4px 8px;
}

.table-lg th,
.table-lg td {
  padding: 8px 16px;
}

.table-divider th,
.table-divider td {
  border-color: var(--color-border-default);
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.table-bordered th,
.table-bordered td {
  border-width: 1px;
  border-color: var(--color-border-default);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--color-bg-light);
}

.table-hover tbody tr:hover {
  background-color: var(--color-bg-light);
}

.table-fixed {
  table-layout: fixed;
}

.input,
.select,
.textarea {
  font: inherit;
  margin: 0;
  border-radius: 0;
}

.input {
  overflow: visible;
}

.select {
  text-transform: none;
}

.textarea {
  overflow: auto;
  min-height: 81px;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  opacity: 1;
}

.input,
.textarea {
  -webkit-appearance: none;
}

.input,
.select,
.textarea {
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  padding: 0 8px;
  transition: .2s ease-in-out;
  transition-property: color, background-color, border;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-default);
  background-color: #fff;
}

.input,
.select:not([multiple]):not([size]) {
  line-height: 30px;
  display: inline-block;
  height: 32px;
  vertical-align: middle;
}

.select[multiple],
.select[size],
.textarea {
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: top;
}

.select[multiple],
.select[size] {
  resize: vertical;
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: var(--color-border-dark);
}

.input:focus,
.select:focus,
.textarea:focus {
  color: var(--color-text-dark);
  border-color: var(--color-primary-5);
  outline: 0;
  background-color: #fff;
}

.input:disabled,
.select:disabled,
.textarea:disabled {
  color: var(--color-text-default);
  border-color: var(--color-border-default);
  background-color: var(--color-bg-light);
}

.input::placeholder {
  color: var(--color-gray-4);
}

.textarea::placeholder {
  color: var(--color-gray-4);
}

.select:not([multiple]):not([size]) {
  padding-right: 24px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  -webkit-appearance: none;
}

.select:not([multiple]):not([size]) option {
  color: var(--color-text-dark);
}

.select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  display: inline-flex;
  overflow: visible;
  height: 32px;
  margin: 0;
  padding: 0 16px;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  transition: .1s ease-in-out;
  transition-property: color, background-color, border-color;
  white-space: nowrap;
  text-decoration: none;
  text-transform: none;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 2px;
  outline: none;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:disabled {
  cursor: default;
  opacity: .8;
}

.btn-default {
  color: var(--color-gray-9);
  border-color: var(--color-gray-3);
  background-color: var(--color-gray-3);
}
.btn-default:hover {
  color: var(--color-gray-9);
  border-color: var(--color-gray-2);
  background-color: var(--color-gray-2);
}
.btn-default:active {
  color: var(--color-gray-9);
  border-color: var(--color-gray-4);
  background-color: var(--color-gray-4);
}
.btn-default:disabled {
  color: var(--color-gray-9);
  border-color: var(--color-gray-3);
  background-color: var(--color-gray-3);
}

.btn-primary {
  color: #fff;
  border-color: var(--color-primary-5);
  background-color: var(--color-primary-5);
}
.btn-primary:hover {
  color: #fff;
  border-color: var(--color-primary-4);
  background-color: var(--color-primary-4);
}
.btn-primary:active {
  color: #fff;
  border-color: var(--color-primary-6);
  background-color: var(--color-primary-6);
}
.btn-primary:disabled {
  color: #fff;
  border-color: var(--color-primary-5);
  background-color: var(--color-primary-5);
}

.btn-success {
  color: #fff;
  border-color: var(--color-success-5);
  background-color: var(--color-success-5);
}
.btn-success:hover {
  color: #fff;
  border-color: var(--color-success-4);
  background-color: var(--color-success-4);
}
.btn-success:active {
  color: #fff;
  border-color: var(--color-success-6);
  background-color: var(--color-success-6);
}
.btn-success:disabled {
  color: #fff;
  border-color: var(--color-success-5);
  background-color: var(--color-success-5);
}

.btn-warning {
  color: #fff;
  border-color: var(--color-warning-5);
  background-color: var(--color-warning-5);
}
.btn-warning:hover {
  color: #fff;
  border-color: var(--color-warning-4);
  background-color: var(--color-warning-4);
}
.btn-warning:active {
  color: #fff;
  border-color: var(--color-warning-6);
  background-color: var(--color-warning-6);
}
.btn-warning:disabled {
  color: #fff;
  border-color: var(--color-warning-5);
  background-color: var(--color-warning-5);
}

.btn-danger {
  color: #fff;
  border-color: var(--color-danger-5);
  background-color: var(--color-danger-5);
}
.btn-danger:hover {
  color: #fff;
  border-color: var(--color-danger-4);
  background-color: var(--color-danger-4);
}
.btn-danger:active {
  color: #fff;
  border-color: var(--color-danger-6);
  background-color: var(--color-danger-6);
}
.btn-danger:disabled {
  color: #fff;
  border-color: var(--color-danger-5);
  background-color: var(--color-danger-5);
}

.btn-outline-default {
  color: var(--color-gray-9);
  border-color: var(--color-gray-3);
}
.btn-outline-default:hover {
  border-color: var(--color-gray-2);
  background-color: var(--color-gray-1);
}
.btn-outline-default:active {
  border-color: var(--color-gray-4);
  background-color: var(--color-gray-1);
}
.btn-outline-default:disabled {
  border-color: var(--color-gray-3);
  background-color: transparent;
}

.btn-outline-primary {
  color: var(--color-primary-5);
  border-color: var(--color-primary-3);
}
.btn-outline-primary:hover {
  border-color: var(--color-primary-2);
  background-color: var(--color-primary-0);
}
.btn-outline-primary:active {
  border-color: var(--color-primary-4);
  background-color: var(--color-primary-0);
}
.btn-outline-primary:disabled {
  border-color: var(--color-primary-3);
  background-color: transparent;
}

.btn-outline-success {
  color: var(--color-success-5);
  border-color: var(--color-success-3);
}
.btn-outline-success:hover {
  border-color: var(--color-success-2);
  background-color: var(--color-success-0);
}
.btn-outline-success:active {
  border-color: var(--color-success-4);
  background-color: var(--color-success-0);
}
.btn-outline-success:disabled {
  border-color: var(--color-success-3);
  background-color: transparent;
}

.btn-outline-warning {
  color: var(--color-warning-5);
  border-color: var(--color-warning-3);
}
.btn-outline-warning:hover {
  border-color: var(--color-warning-2);
  background-color: var(--color-warning-0);
}
.btn-outline-warning:active {
  border-color: var(--color-warning-4);
  background-color: var(--color-warning-0);
}
.btn-outline-warning:disabled {
  border-color: var(--color-warning-3);
  background-color: transparent;
}

.btn-outline-danger {
  color: var(--color-danger-5);
  border-color: var(--color-danger-3);
}
.btn-outline-danger:hover {
  border-color: var(--color-danger-2);
  background-color: var(--color-danger-0);
}
.btn-outline-danger:active {
  border-color: var(--color-danger-4);
  background-color: var(--color-danger-0);
}
.btn-outline-danger:disabled {
  border-color: var(--color-danger-3);
  background-color: transparent;
}

.btn-plain-default {
  color: var(--color-gray-9);
  border-color: var(--color-gray-2);
  background-color: var(--color-gray-1);
}
.btn-plain-default:hover {
  color: var(--color-gray-9);
  border-color: var(--color-gray-2);
  background-color: var(--color-gray-2);
}
.btn-plain-default:active {
  color: var(--color-gray-9);
  border-color: var(--color-gray-4);
  background-color: var(--color-gray-4);
}
.btn-plain-default:disabled {
  color: var(--color-gray-9);
  border-color: var(--color-gray-2);
  background-color: var(--color-gray-1);
}

.btn-plain-primary {
  color: var(--color-primary-5);
  border-color: var(--color-primary-1);
  background-color: var(--color-primary-0);
}
.btn-plain-primary:hover {
  color: #fff;
  border-color: var(--color-primary-4);
  background-color: var(--color-primary-4);
}
.btn-plain-primary:active {
  color: #fff;
  border-color: var(--color-primary-6);
  background-color: var(--color-primary-6);
}
.btn-plain-primary:disabled {
  color: var(--color-primary-5);
  border-color: var(--color-primary-1);
  background-color: var(--color-primary-0);
}

.btn-plain-success {
  color: var(--color-success-5);
  border-color: var(--color-success-1);
  background-color: var(--color-success-0);
}
.btn-plain-success:hover {
  color: #fff;
  border-color: var(--color-success-4);
  background-color: var(--color-success-4);
}
.btn-plain-success:active {
  color: #fff;
  border-color: var(--color-success-6);
  background-color: var(--color-success-6);
}
.btn-plain-success:disabled {
  color: var(--color-success-5);
  border-color: var(--color-success-1);
  background-color: var(--color-success-0);
}

.btn-plain-warning {
  color: var(--color-warning-5);
  border-color: var(--color-warning-1);
  background-color: var(--color-warning-0);
}
.btn-plain-warning:hover {
  color: #fff;
  border-color: var(--color-warning-4);
  background-color: var(--color-warning-4);
}
.btn-plain-warning:active {
  color: #fff;
  border-color: var(--color-warning-6);
  background-color: var(--color-warning-6);
}
.btn-plain-warning:disabled {
  color: var(--color-warning-5);
  border-color: var(--color-warning-1);
  background-color: var(--color-warning-0);
}

.btn-plain-danger {
  color: var(--color-danger-5);
  border-color: var(--color-danger-1);
  background-color: var(--color-danger-0);
}
.btn-plain-danger:hover {
  color: #fff;
  border-color: var(--color-danger-4);
  background-color: var(--color-danger-4);
}
.btn-plain-danger:active {
  color: #fff;
  border-color: var(--color-danger-6);
  background-color: var(--color-danger-6);
}
.btn-plain-danger:disabled {
  color: var(--color-danger-5);
  border-color: var(--color-danger-1);
  background-color: var(--color-danger-0);
}

.btn-sm {
  line-height: 26px;
  height: 28px;
  padding: 0 8px;
}

.btn-lg {
  line-height: 34px;
  height: 36px;
  padding: 0 24px;
}

.btn-block {
  display: block;
  width: 100%;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

.link-light {
  color: var(--color-text-light) !important;
}
.link-light:hover, .link-light:focus {
  color: var(--color-link-hover) !important;
}

.link-default {
  color: var(--color-text-default) !important;
}
.link-default:hover, .link-default:focus {
  color: var(--color-link-hover) !important;
}

.link-dark {
  color: var(--color-text-dark) !important;
}
.link-dark:hover, .link-dark:focus {
  color: var(--color-link-hover) !important;
}

.stretched-link::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.text-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow-sm {
  box-shadow: var(--box-shadow-sm) !important;
}

.shadow-base {
  box-shadow: var(--box-shadow-base) !important;
}

.shadow-lg {
  box-shadow: var(--box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid var(--color-border-default) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid var(--color-border-default) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right {
  border-right: 1px solid var(--color-border-default) !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border-default) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left {
  border-left: 1px solid var(--color-border-default) !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-light {
  border-color: var(--color-border-light) !important;
}

.border-default {
  border-color: var(--color-border-default) !important;
}

.border-dark {
  border-color: var(--color-border-dark) !important;
}

.border-primary {
  border-color: var(--color-border-primary) !important;
}

.border-success {
  border-color: var(--color-border-success) !important;
}

.border-warning {
  border-color: var(--color-border-warning) !important;
}

.border-danger {
  border-color: var(--color-border-danger) !important;
}

.border-dashed {
  border-style: dashed !important;
}

.w-10 {
  width: 10% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.width-1 {
  width: 16px !important;
}

.width-2 {
  width: 32px !important;
}

.width-3 {
  width: 48px !important;
}

.width-4 {
  width: 64px !important;
}

.width-5 {
  width: 80px !important;
}

.width-6 {
  width: 96px !important;
}

.width-7 {
  width: 112px !important;
}

.width-8 {
  width: 128px !important;
}

.width-9 {
  width: 144px !important;
}

.width-10 {
  width: 160px !important;
}

.width-20 {
  width: 320px !important;
}

.width-30 {
  width: 480px !important;
}

.width-40 {
  width: 640px !important;
}

.width-50 {
  width: 800px !important;
}

.width-60 {
  width: 960px !important;
}

.h-10 {
  height: 10% !important;
}

.h-20 {
  height: 20% !important;
}

.h-25 {
  height: 25% !important;
}

.h-30 {
  height: 30% !important;
}

.h-40 {
  height: 40% !important;
}

.h-50 {
  height: 50% !important;
}

.h-60 {
  height: 60% !important;
}

.h-70 {
  height: 70% !important;
}

.h-75 {
  height: 75% !important;
}

.h-80 {
  height: 80% !important;
}

.h-90 {
  height: 90% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.height-1 {
  height: 16px !important;
}

.height-2 {
  height: 32px !important;
}

.height-3 {
  height: 48px !important;
}

.height-4 {
  height: 64px !important;
}

.height-5 {
  height: 80px !important;
}

.height-6 {
  height: 96px !important;
}

.height-7 {
  height: 112px !important;
}

.height-8 {
  height: 128px !important;
}

.height-9 {
  height: 144px !important;
}

.height-10 {
  height: 160px !important;
}

.height-20 {
  height: 320px !important;
}

.height-30 {
  height: 480px !important;
}

.height-40 {
  height: 640px !important;
}

.height-50 {
  height: 800px !important;
}

.height-60 {
  height: 960px !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-6 {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.m-3 {
  margin: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.m-5 {
  margin: 32px !important;
}

.m-6 {
  margin: 40px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.mx-6 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mt-6 {
  margin-top: 40px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mr-3 {
  margin-right: 16px !important;
}

.mr-4 {
  margin-right: 24px !important;
}

.mr-5 {
  margin-right: 32px !important;
}

.mr-6 {
  margin-right: 40px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.mb-6 {
  margin-bottom: 40px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.ml-3 {
  margin-left: 16px !important;
}

.ml-4 {
  margin-left: 24px !important;
}

.ml-5 {
  margin-left: 32px !important;
}

.ml-6 {
  margin-left: 40px !important;
}

.ml-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.p-3 {
  padding: 16px !important;
}

.p-4 {
  padding: 24px !important;
}

.p-5 {
  padding: 32px !important;
}

.p-6 {
  padding: 40px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.px-6 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.py-6 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pt-5 {
  padding-top: 32px !important;
}

.pt-6 {
  padding-top: 40px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pr-3 {
  padding-right: 16px !important;
}

.pr-4 {
  padding-right: 24px !important;
}

.pr-5 {
  padding-right: 32px !important;
}

.pr-6 {
  padding-right: 40px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pb-5 {
  padding-bottom: 32px !important;
}

.pb-6 {
  padding-bottom: 40px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.pl-3 {
  padding-left: 16px !important;
}

.pl-4 {
  padding-left: 24px !important;
}

.pl-5 {
  padding-left: 32px !important;
}

.pl-6 {
  padding-left: 40px !important;
}

.font-monospace {
  font-family: Consolas, Monaco, monospace !important;
}

.fs-0 {
  font-size: 0;
  line-height: 0;
}

.fs-1 {
  font-size: 28px;
  line-height: 36px;
}

.fs-2 {
  font-size: 24px;
  line-height: 32px;
}

.fs-3 {
  font-size: 20px;
  line-height: 28px;
}

.fs-4 {
  font-size: 16px;
  line-height: 24px;
}

.fs-5 {
  font-size: 14px;
  line-height: 22px;
}

.fs-6 {
  font-size: 12px;
  line-height: 20px;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 2 !important;
}

.lh-sm {
  line-height: 28px !important;
}

.lh-base {
  line-height: 32px !important;
}

.lh-lg {
  line-height: 36px !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.break-word {
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.break-all {
  word-break: break-all !important;
}

.text-white {
  color: #fff !important;
}

.text-light {
  color: var(--color-text-light) !important;
}

.text-default {
  color: var(--color-text-default) !important;
}

.text-dark {
  color: var(--color-text-dark) !important;
}

.text-primary {
  color: var(--color-text-primary) !important;
}

.text-success {
  color: var(--color-text-success) !important;
}

.text-warning {
  color: var(--color-text-warning) !important;
}

.text-danger {
  color: var(--color-text-danger) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light {
  background-color: var(--color-bg-light) !important;
}

.bg-default {
  background-color: var(--color-bg-default) !important;
}

.bg-dark {
  background-color: var(--color-bg-dark) !important;
}

.bg-primary {
  background-color: var(--color-bg-primary) !important;
}

.bg-success {
  background-color: var(--color-bg-success) !important;
}

.bg-warning {
  background-color: var(--color-bg-warning) !important;
}

.bg-danger {
  background-color: var(--color-bg-danger) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 2px !important;
}

.rounded-base {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 8px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 640px !important;
}

.rounded-top {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.rounded-right {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.rounded-left {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

@font-face {
  font-family: 'AlimamaShuHeiTi';
  font-weight: 600;
  src: url("../font/AlimamaShuHeiTi.woff2") format("woff2"), url("../font/AlimamaShuHeiTi.woff") format("woff");
  font-display: swap;
}
@keyframes indexScaleUp {
  0% {
    transform: scale(1.2);
  }
  25% {
    transform: scale(1.1);
  }
  95% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes news-slide-top {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes news-slide-bottom {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes culture-slide-top {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(50%);
    opacity: 1;
  }
}
.container {
  width: 1320px;
}

.cus-banner {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.cus-breadcrumb {
  line-height: 24px;
  display: flex;
  margin-bottom: 48px;
  padding: 8px 16px;
  color: var(--color-text-light);
  background-color: var(--jzt-bg);
  align-items: center;
}
.cus-breadcrumb a {
  margin: 0 2px;
  color: var(--color-text-default);
}
.cus-breadcrumb a:hover {
  color: var(--color-link-hover);
}

.cus-image {
  display: block;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.cus-image img {
  width: 100%;
  height: auto;
}

.cus-nav {
  margin-bottom: 48px;
}
.cus-nav .nav-title {
  margin-bottom: 2px;
  padding: 8px;
  text-align: center;
}
.cus-nav .nav-title p {
  line-height: 24px;
  color: rgba(255, 255, 255, 0.48);
}
.cus-nav .nav-title h3 {
  line-height: 32px;
  color: #fff;
}
.cus-nav .nav {
  padding-top: 2px;
  border-width: 2px 0 0 0;
  border-style: solid;
}
.cus-nav .item {
  display: flex;
  align-items: center;
}
.cus-nav .item a {
  font-size: 15px;
  line-height: 40px;
  display: flex;
  width: 100%;
  height: 40px;
  color: var(--color-text-dark);
  align-items: center;
}
.cus-nav .sub-nav-item > .item a {
  padding-left: 16px;
}
.cus-nav .grand-nav-item > .item a {
  padding-left: 48px;
}
.cus-nav .active a {
  background-color: var(--jzt-bg) !important;
}
.cus-nav .active ul a {
  background-color: #fff !important;
}
.cus-nav .active.active2 a {
  background-color: #fff !important;
}
.cus-nav .active.active2 .active a {
  background-color: var(--jzt-bg) !important;
}
.cus-nav .active.active2 .active ul a {
  background-color: #fff !important;
}

.cus-pagination {
  margin-bottom: 48px;
}
.cus-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cus-pagination li {
  line-height: 32px;
  padding: 0 4px;
  color: var(--color-text-default);
}
.cus-pagination a {
  display: block;
  min-width: 32px;
  height: 32px;
  text-align: center;
  color: var(--color-text-default);
}
.cus-pagination a:hover {
  color: var(--color-text-danger);
}
.cus-pagination .active a {
  color: var(--color-text-danger);
}

.cus-tab-nav {
  width: 100%;
  height: 48px;
  border-bottom: 1px solid var(--color-border-light);
  background-color: var(--jzt-bg);
}
.cus-tab-nav ul {
  display: flex;
}
.cus-tab-nav li {
  font-size: 16px;
  line-height: 46px;
  margin-right: 48px;
}
.cus-tab-nav a {
  color: var(--color-text-dark);
}
.cus-tab-nav a:hover {
  color: var(--color-text-dark);
}
.cus-tab-nav li.active {
  border-bottom: 2px solid var(--color-border-danger);
}

.cus-tab-nav-fixed {
  position: fixed;
  z-index: 9;
}

.cus-title {
  font-family: 'AlimamaShuHeiTi';
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.article {
  margin-bottom: 96px;
}
.article .title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 24px;
  text-align: center;
}
.article .info {
  margin-bottom: 48px;
  text-align: center;
  color: var(--color-text-light);
}
.article .content {
  line-height: 24px;
  margin-bottom: 48px;
  word-wrap: break-word;
}
.article .content p {
  margin-bottom: 16px;
}
.article .content i,
.article .content em {
  font-style: italic;
}
.article .content img {
  max-width: 100%;
  height: auto;
}
.article .content ul,
.article .content ol {
  padding-left: 32px;
}
.article .content ul li {
  list-style: disc outside;
}
.article .content ol li {
  list-style: decimal outside;
}
.article .content blockquote {
  margin: 0;
  padding: 16px 32px;
  background-color: var(--jzt-bg);
}
.article .content table th,
.article .content table td {
  padding: 8px;
  border-width: 1px;
  border-color: var(--color-border-default);
}

.search-keyword {
  line-height: 24px;
  display: flex;
  margin-top: 48px;
  margin-bottom: 24px;
  padding: 4px 8px;
  background-color: var(--jzt-bg);
  align-items: center;
}

.search-list {
  margin-bottom: 48px;
}
.search-list li {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: center;
}
.search-list a {
  color: var(--color-text-dark);
}
.search-list a:hover {
  color: var(--color-text-danger);
}
.search-list span {
  color: var(--color-text-light);
}

.header-wrap {
  position: absolute;
  z-index: 11;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(32, 33, 36, 0.16);
}
.header-wrap .header {
  display: flex;
  justify-content: space-between;
}
.header-wrap .logo {
  display: flex;
  height: 72px;
  flex-shrink: 0;
  align-items: center;
}
.header-wrap .logo img {
  width: auto;
  height: 48px;
}
.header-wrap .nav {
  display: flex;
  height: 72px;
  align-items: center;
}
.header-wrap .nav-item {
  position: relative;
}
.header-wrap .nav-item:hover .dropdown {
  display: block !important;
}
.header-wrap .nav-item a {
  font-size: 16px;
  line-height: 32px;
  display: block;
  margin: 0 2px;
  padding: 0 16px;
  color: var(--color-text-dark);
  border-radius: 4px;
}
.header-wrap .nav-item a:hover {
  color: #fff;
  background-color: var(--color-bg-danger);
}
.header-wrap .nav-item .dropdown {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 50%;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding-top: 20px;
  transition: .3s;
  transform: translateX(-50%);
}
.header-wrap .sub-nav {
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(32, 33, 36, 0.16);
}
.header-wrap .sub-nav-item a {
  font-size: 14px;
  line-height: 40px;
  width: 100%;
  min-width: 128px;
  margin: 0;
  text-align: center;
  border-radius: 0;
}
.header-wrap .sub-nav-item a:hover {
  color: var(--color-text-dark);
  background-color: var(--color-bg-default);
}
.header-wrap .nav-item.active > a {
  color: #fff;
  background-color: var(--color-bg-danger);
}
.header-wrap .header-search {
  position: relative;
}
.header-wrap .header-search a {
  font-size: 16px;
  line-height: 32px;
  display: block;
  margin: 0 2px;
  padding: 0 16px;
  color: var(--color-text-dark);
  border-radius: 4px;
}
.header-wrap .header-search a:hover {
  color: #fff;
  background-color: var(--color-bg-danger);
}
.header-wrap .header-search .search-wrap {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 0;
  padding-top: 20px;
}
.header-wrap .header-search .search-box {
  display: flex;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(32, 33, 36, 0.16);
}

.footer-wrap {
  padding-top: 32px;
  padding-bottom: 16px;
  background-color: var(--jzt-bg);
}
.footer-wrap .footer-info {
  line-height: 2;
  display: flex;
  color: var(--color-text-default);
  justify-content: space-between;
  align-items: center;
}
.footer-wrap .footer-info a {
  display: block;
  color: var(--color-text-default);
}
.footer-wrap .footer-info a:hover {
  color: var(--color-text-danger);
}
.footer-wrap .footer-info .nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.footer-wrap .footer-info .sub-nav {
  display: flex;
  flex-direction: column;
}
.footer-wrap .footer-info .top {
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-wrap .footer-info .info {
  width: 400px;
  margin-left: 64px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 32px;
  border-left: 1px solid var(--color-border-light);
  flex-shrink: 0;
}
.footer-wrap .footer-copyright {
  line-height: 28px;
  display: flex;
  margin-top: 32px;
  padding-top: 16px;
  color: var(--color-text-default);
  border-top: 1px solid var(--color-border-light);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-wrap .footer-copyright a {
  color: var(--color-text-default);
}
.footer-wrap .footer-copyright a:hover {
  color: var(--color-text-danger);
}
.footer-wrap .footer-copyright span {
  margin: 0 4px;
}

.footer-fix {
  position: fixed;
  z-index: 11;
  right: 16px;
  bottom: 96px;
}
.footer-fix a .fa {
  font-size: 18px;
  color: var(--color-text-default);
}
.footer-fix a:hover .fa {
  color: var(--color-text-danger);
}
.footer-fix .footer-service-list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(32, 33, 36, 0.16);
  align-items: center;
}
.footer-fix .seperate-line-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer-fix .seperate-line-wrapper .seperate-line {
  width: 24px;
  height: 1px;
  background-color: var(--color-bg-dark);
}
.footer-fix .service-item {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.footer-fix .service-item:hover .item-title {
  display: block;
}
.footer-fix .service-item .item-title {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 58px;
  display: none;
  width: 166px;
  padding: 8px;
  transform: translateY(-50%);
  text-align: center;
  color: var(--color-text-default);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(32, 33, 36, 0.16);
}
.footer-fix .wechat-box:hover .visible-area {
  visibility: visible;
}
.footer-fix .wechat-box:hover .wechat-box-wrapper {
  transform: translateX(0);
  opacity: 1;
}
.footer-fix .wechat-box .visible-area {
  position: absolute;
  top: 50%;
  right: 48px;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  width: 186px;
  padding: 10px;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
}
.footer-fix .wechat-box .wechat-box-wrapper {
  display: flex;
  flex-direction: column;
  width: 166px;
  padding: 8px;
  transition: all 1s;
  transform: translateX(100%);
  opacity: 0;
  color: var(--color-text-default);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(32, 33, 36, 0.16);
  align-items: center;
}
.footer-fix .wechat-box .wechat-box-wrapper img {
  width: 100px;
  height: auto;
}

.index-title {
  margin-bottom: 48px;
  text-align: center;
}
.index-title h3 {
  font-family: 'AlimamaShuHeiTi';
  font-size: 40px;
  line-height: 48px;
  margin-top: -16px;
}
.index-title p {
  font-size: 28px;
  line-height: 32px;
  color: transparent;
  background: linear-gradient(#dadce0, #f1f3f4);
  -webkit-background-clip: text;
}

.index-slide {
  display: flex;
}
.index-slide:hover .swiper-button-next {
  right: 0 !important;
}
.index-slide:hover .swiper-button-prev {
  left: 0 !important;
}
.index-slide .swiper-button-next {
  right: -64px;
  border-radius: 4px 0 0 4px;
}
.index-slide .swiper-button-prev {
  left: -64px;
  border-radius: 0 4px 4px 0;
}
.index-slide .swiper-button-next,
.index-slide .swiper-button-prev {
  width: 64px;
  height: 40px;
  transition: 1s;
  color: #fff;
  background-color: var(--color-bg-danger);
}
.index-slide .swiper-button-next:after,
.index-slide .swiper-button-prev:after {
  font-size: 24px;
}
.index-slide .swiper-slide a {
  display: block;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.index-slide .swiper-slide img {
  width: 100%;
  height: auto;
}
.index-slide .swiper-slide-active a {
  animation: indexScaleUp 4s linear both;
}

.index-about {
  padding-top: 96px;
  padding-bottom: 96px;
  background: url(../images/bgc.png) no-repeat center;
  background-size: cover;
}
.index-about .about-txt {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 16px 32px;
  background-color: var(--jzt-bg);
  justify-content: space-around;
  align-items: end;
}
.index-about .about-txt p {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  text-indent: 2em;
}
.index-about .about-number {
  padding: 16px;
  box-shadow: 0 2px 16px 0 rgba(32, 33, 36, 0.16);
}
.index-about .about-number li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-about .about-number .li-line {
  width: 2.5%;
}
.index-about .about-number .li-line .span-line {
  width: 1px;
  height: 48px;
  background-color: var(--color-bg-default);
}
.index-about .about-number .li-content {
  width: 18%;
  text-align: center;
}
.index-about .about-number .li-content .counter {
  font-family: impact;
  font-size: 48px;
  margin-bottom: 8px;
  color: var(--color-text-danger);
}
.index-about .about-number .li-content .intro {
  font-size: 16px;
  color: var(--color-text-light);
}

.index-product {
  padding-top: 96px;
  padding-bottom: 96px;
  background: url(../images/bgb.jpg) no-repeat center;
  background-size: cover;
}
.index-product ul {
  display: flex;
  margin: -10px;
  flex-wrap: wrap;
}
.index-product li {
  width: 436px;
  padding: 10px;
}
.index-product .intro {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px 16px 32px 32px;
  border-radius: 4px;
  background-color: var(--color-bg-danger);
}
.index-product .intro .intro-meta {
  color: rgba(255, 255, 255, 0.2);
}
.index-product .intro .intro-descrip {
  line-height: 28px;
  overflow: hidden;
  height: 56px;
  color: #fff;
}
.index-product .cus-image {
  position: relative;
  transition: all .4s;
  border-radius: 4px;
}
.index-product .cus-image:hover .font-bg {
  opacity: .16;
}
.index-product .cus-image:hover .product-text {
  bottom: 0;
}
.index-product .cus-image:hover .title {
  color: #fff;
  background-color: var(--color-danger-5);
}
.index-product .font-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .2s;
  transition-duration: .3s;
  transition-property: opacity;
  opacity: 0;
  background-color: #202124;
}
.index-product .product-text {
  position: absolute;
  z-index: 1;
  bottom: -190px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 32px;
  transition: bottom .3s;
  align-items: center;
}
.index-product .product-text .title {
  line-height: 30px;
  display: inline-flex;
  height: 30px;
  padding: 0 24px;
  color: var(--color-text-default);
  border-radius: 4px 4px 0 0;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}
.index-product .product-text .intro {
  line-height: 22px;
  display: block;
  width: 100%;
  height: 330px;
  margin-top: 10px;
  padding: 16px;
  color: var(--color-text-dark);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.64);
}

.index-news {
  padding-top: 96px;
  padding-bottom: 96px;
  background: url(../images/bgc.png) no-repeat center;
  background-size: cover;
}
.index-news .new-image {
  position: relative;
  width: 428px;
  height: auto;
  padding: 22px;
  border-bottom: 1px solid var(--color-border-light);
  background-color: #fff;
  flex-shrink: 0;
}
.index-news .new-image:hover {
  z-index: 1;
  box-shadow: 0 0 16px 0 rgba(32, 33, 36, 0.16);
}
.index-news .info-image {
  margin-bottom: 37px;
}
.index-news .info-item {
  position: relative;
  width: 50%;
  height: auto;
  padding: 32px;
  transition: .3s all;
  border-bottom: 1px solid var(--color-border-light);
  border-left: 1px solid var(--color-border-light);
  background-color: #fff;
}
.index-news .info-item:hover {
  z-index: 1;
  box-shadow: 0 0 16px 0 rgba(32, 33, 36, 0.16);
}
.index-news .info-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  overflow: hidden;
  height: 64px;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}
.index-news .info-desc {
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  height: 52px;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}
.index-news .info-time {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-light);
}

.index-links {
  padding-top: 96px;
  padding-bottom: 96px;
  background: url(../images/bga.png) no-repeat center;
  background-size: cover;
}
.index-links ul {
  display: flex;
  margin: -8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.index-links li {
  width: 208px;
  padding: 8px;
}

.about-us {
  margin-bottom: 96px;
}
.about-us .us-main {
  display: flex;
  margin-bottom: 48px;
  padding: 64px;
  background-color: var(--jzt-bg);
}
.about-us .us-text {
  width: 50%;
  padding-right: 48px;
}
.about-us .us-text p {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  text-indent: 2em;
}
.about-us .counter {
  font-family: impact;
  font-size: 48px;
  text-align: center;
  color: var(--color-text-danger);
}
.about-us .us-line {
  display: block;
  width: 16px;
  height: 2px;
  margin: 8px auto 12px;
  background-color: var(--color-bg-darker);
}
.about-us .us-intro {
  font-size: 16px;
  text-align: center;
  color: var(--color-text-light);
}

.about-journey {
  width: 100%;
  height: 640px;
  margin-bottom: 96px;
  padding-top: 96px;
  background-image: url(../images/about/journey.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.about-journey .journey-bar {
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 200px;
  color: #fff;
}
.about-journey .journey-bar ul {
  display: flex;
  min-width: 1320px;
  justify-content: center;
  align-items: center;
}
.about-journey .journey-bar li {
  position: relative;
  width: 6%;
  height: 2px;
  border-bottom: 2px solid var(--color-gray-4);
  flex-shrink: 0;
}
.about-journey .journey-bar li .slide-dot {
  position: absolute;
  z-index: 1;
  top: -11px;
  left: 50%;
  display: block;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 24px;
  background-color: var(--color-gray-4);
}
.about-journey .journey-bar li .slide-active {
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 18px;
  background-color: #fff;
}
.about-journey .journey-bar .slide-box {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 200%;
  padding-right: 32px;
  padding-left: 8px;
  text-align: left;
  border-left: 1px solid var(--color-border-dark);
}
.about-journey .journey-bar .slide-box h3 {
  font-family: impact;
  margin-bottom: 8px;
}
.about-journey .journey-bar .slide-box p {
  line-height: 22px;
  margin-bottom: 16px;
}
.about-journey .journey-bar .slide-top {
  bottom: 0;
  padding-bottom: 48px;
}
.about-journey .journey-bar .slide-bottom {
  top: 0;
  padding-top: 48px;
}

.about-culture {
  margin-bottom: 96px;
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: var(--jzt-bg);
}
.about-culture img {
  width: 100%;
  height: auto;
}
.about-culture .culture-box {
  float: left;
  width: 50%;
  background-color: var(--color-bg-light);
}
.about-culture .culture-box .box-a {
  position: relative;
  width: 50%;
  height: 192px;
}
.about-culture .culture-box .box-a p {
  line-height: 24px;
}
.about-culture .culture-box .box-a p.title {
  font-family: 'AlimamaShuHeiTi';
  margin-bottom: 8px;
  color: var(--color-text-default);
}
.about-culture .culture-box .box-a .culture-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 32px;
}
.about-culture .culture-box .box-a-left {
  float: left;
}
.about-culture .culture-box .box-a-left p {
  text-align: right;
}
.about-culture .culture-box .box-a-right {
  float: right;
}
.about-culture .culture-box .box-b {
  position: relative;
  float: left;
  overflow: hidden;
  width: 50%;
  height: 192px;
}
.about-culture .culture-box .box-b em {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.about-culture .culture-box .box-b-left em {
  left: 0;
  border-left: 8px solid var(--jzt-bg);
}
.about-culture .culture-box .box-b-right em {
  right: 0;
  border-right: 8px solid var(--jzt-bg);
}
.about-culture .culture-box:hover .box-a {
  background-color: var(--color-bg-success);
}
.about-culture .culture-box:hover .box-a p {
  color: #fff;
}
.about-culture .culture-box:hover .box-a .culture-text {
  bottom: 50%;
  animation-name: culture-slide-top;
  animation-duration: .5s;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.about-culture .culture-box:hover .box-b-left em {
  border-left-color: var(--color-border-success);
}
.about-culture .culture-box:hover .box-b-right em {
  border-right-color: var(--color-border-success);
}

.about-honor {
  position: relative;
}
.about-honor .swiper-container {
  padding-bottom: 96px;
}
.about-honor .swiper-slide {
  width: 528px;
  height: 410px;
  background-color: #fff;
  box-shadow: var(--box-shadow-lg);
}
.about-honor .swiper-slide p {
  font-size: 16px;
  line-height: 80px;
  overflow: hidden;
  height: 80px;
  text-align: center;
  color: var(--color-text-default);
}
.about-honor .swiper-slide .thumb {
  width: 528px;
}

.company-display {
  margin-bottom: 96px;
}
.company-display .title-1 {
  line-height: 24px;
  position: absolute;
  top: 4px;
  left: 28px;
  padding: 0 12px;
  transform: rotate(90deg);
  transform-origin: left top;
  letter-spacing: 2px;
  color: var(--color-text-light);
  border-radius: 12px;
  background-color: var(--jzt-bg);
}
.company-display .title-2 {
  line-height: 24px;
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0 12px;
  letter-spacing: 2px;
  color: var(--color-text-light);
  border-radius: 12px;
  background-color: var(--jzt-bg);
}
.company-display img {
  width: 100%;
  height: auto;
}
.company-display .display-1 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 640px;
  height: 640px;
  margin-right: 4px;
}
.company-display .display-2 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 316px;
  height: 316px;
  margin-right: 4px;
  margin-bottom: 4px;
  margin-left: 4px;
}
.company-display .display-3 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 316px;
  height: 316px;
  margin-bottom: 4px;
  margin-left: 4px;
}
.company-display .display-4 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 316px;
  height: 316px;
  margin-top: 4px;
  margin-right: 4px;
  margin-left: 4px;
}
.company-display .display-5 {
  position: relative;
  float: left;
  overflow: hidden;
  width: 316px;
  height: 316px;
  margin-top: 4px;
  margin-left: 4px;
}

.company-slide {
  margin-bottom: 96px;
}
.company-slide .swiper-button-next {
  right: 0;
  border-radius: 4px 0 0 4px;
}
.company-slide .swiper-button-prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}
.company-slide .swiper-button-next,
.company-slide .swiper-button-prev {
  width: 56px;
  height: 40px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
}
.company-slide .swiper-button-next:hover,
.company-slide .swiper-button-prev:hover {
  background-color: rgba(234, 67, 53, 0.8);
}
.company-slide .swiper-button-next:after,
.company-slide .swiper-button-prev:after {
  font-size: 24px;
}
.company-slide .swiper-slide {
  position: relative;
}
.company-slide .swiper-slide .title {
  line-height: 32px;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 32px;
  text-align: center;
  color: #fff;
  background-color: rgba(32, 33, 36, 0.43);
}

.contact-main {
  display: flex;
  height: 256px;
  margin-bottom: 16px;
}
.contact-main .main-left-box .span-1 {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 2px;
  background-color: var(--color-border-dark);
}
.contact-main .main-left-box .span-2 {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 16px;
  background-color: var(--color-border-default);
}

.contact-map {
  overflow: hidden;
  width: 100%;
  height: 480px;
}
.contact-map.map-1 {
  margin-bottom: 16px;
}
.contact-map.map-2 {
  margin-bottom: 96px;
}

.contact-office {
  margin-bottom: 96px;
}
.contact-office:hover h3::after {
  width: 100%;
}
.contact-office h3 {
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.contact-office h3:after {
  position: absolute;
  top: 36px;
  display: block;
  width: 16px;
  height: 0;
  content: '';
  transition: width 1s;
  border-top: 2px solid var(--color-border-danger);
}

.student-artice {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 560px;
  margin-bottom: 96px;
}
.student-artice h3 {
  font-family: 'AlimamaShuHeiTi';
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 8px;
}
.student-artice h4 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
}
.student-artice .article-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  padding: 64px;
  transform: translateY(-50%) !important;
  background-color: var(--color-bg-light);
}
.student-artice .article-left-box {
  left: 0;
  width: 512px;
}
.student-artice .article-right-box {
  right: 0;
  width: 544px;
}

.student-work {
  margin-bottom: 96px;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: var(--jzt-bg);
}
.student-work h4 {
  font-size: 20px;
  line-height: 30px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.student-active {
  margin-bottom: 96px;
}
.student-active .item {
  position: relative;
  overflow: hidden;
  height: 272px;
  padding: 40px;
}
.student-active .item .mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
  transform: translate(0, 272px);
  transform-origin: bottom;
}
.student-active .item .label {
  font-size: 16px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  transform: translate(0, 80px);
  transform-origin: bottom;
  text-align: justify;
  opacity: 0;
  color: #fff;
}
.student-active .item:hover .mask-bg {
  transform: translate(0, 0px);
}
.student-active .item:hover .label {
  transform: translate(0, 0px);
  opacity: 1;
}
.student-active .item-1 {
  width: 60%;
  background: url(../images/student/bg-05.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-1 .mask-bg {
  background-color: #5c7cfa;
}
.student-active .item-2 {
  width: 40%;
  background: url(../images/student/bg-06.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-2 .mask-bg {
  background-color: #be4bdb;
}
.student-active .item-3 {
  width: 40%;
  background: url(../images/student/bg-07.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-3 .mask-bg {
  background-color: #15aabf;
}
.student-active .item-4 {
  width: 60%;
  background: url(../images/student/bg-08.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-4 .mask-bg {
  background-color: #12b886;
}
.student-active .item-5 {
  width: 60%;
  background: url(../images/student/bg-09.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-5 .mask-bg {
  background-color: #fd7e14;
}
.student-active .item-6 {
  width: 40%;
  background: url(../images/student/bg-10.jpg) no-repeat center;
  background-size: cover;
}
.student-active .item-6 .mask-bg {
  background-color: #82c91e;
}
.student-active .title {
  font-size: 28px;
  line-height: 36px;
  position: relative;
  margin-bottom: 24px;
  color: #fff;
}

.student-join {
  margin-bottom: 96px;
  text-align: center;
}

.news-list .item {
  margin-bottom: 48px;
}
.news-list .item-img {
  position: relative;
  float: left;
  overflow: hidden;
  width: 256px;
  margin-right: -256px;
}
.news-list .item-txt {
  margin-left: 288px;
}
.news-list .item-txt h3 {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-list .item-txt p {
  font-size: 15px;
  line-height: 26px;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 52px;
}
.news-list .item-txt span {
  font-family: impact;
  font-size: 24px;
  line-height: 32px;
  display: block;
  color: var(--color-text-light);
}

.news-neighbour {
  line-height: 32px;
  margin-bottom: 96px;
  color: var(--color-text-light);
}

.product-list {
  margin-bottom: 48px;
}
.product-list .item {
  display: block;
  margin-bottom: 32px;
}
.product-list .item:hover .item-thumb {
  background-size: 105%;
}
.product-list .item-thumb {
  position: relative;
  transition: all .3s ease-in-out;
  background-color: var(--jzt-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.product-list .item-thumb img {
  width: 100%;
  height: auto;
}
.product-list .item-title {
  font-size: 15px;
  line-height: 40px;
  width: 100%;
  height: 40px;
  text-align: center;
  color: var(--color-text-dark);
}

.product-view {
  padding-right: 48px;
}
.product-view img {
  width: 100%;
  height: auto;
}
.product-view .gallery-top {
  overflow: hidden;
  width: 536px;
  height: 402px;
  margin-bottom: 8px;
  border: 1px solid var(--color-border-light);
}
.product-view .gallery-thumbs {
  width: 536px;
  height: 96px;
}
.product-view .gallery-thumbs .swiper-slide {
  overflow: hidden;
  width: 128px;
  height: 96px;
  opacity: .4;
}
.product-view .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.product-meta .title {
  font-family: 'AlimamaShuHeiTi';
  margin-top: 16px;
  margin-bottom: 48px;
}
.product-meta .attribute {
  font-size: 16px;
  line-height: 28px;
}
.product-meta .attribute li {
  text-align: justify;
}

.product-info-tab {
  font-size: 16px;
  height: 64px;
  margin-top: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border-light);
  background-color: var(--jzt-bg);
}
.product-info-tab a {
  line-height: 64px;
  display: inline-block;
  height: 64px;
  padding: 0 32px;
  color: var(--color-text-danger);
  border-bottom: 2px solid var(--color-border-danger);
}
.product-info-tab a:hover {
  color: var(--color-text-danger);
}

.product-info {
  margin-bottom: 96px;
}

/*# sourceMappingURL=xui.css.map */