@charset "utf-8";

/* CSS Document */

* {
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: var(--colour1) var(--grey_bg2);
}

/*主题*/

:root {
  --head_height: 4rem;
  --colour1: #0e71f1;
  --colour2: #f59f18;
  --colour3: #16d9dd;
  --colour4: #3076f2;
  --dark: #000000;
  --title: #1a1a1a;
  --text: #4d4d4d;
  --small_text: #808080;
  --tips_text: #ccc;
  --grey_bg: #f8fafc;
  --grey_bg2: #e9ecef;
  --text-bg: #ee2a23;
  --border_colour: #dce2e8;
  --shadow: rgb(0, 0, 0, 0.07);
}

body {
  margin: 0px;
  padding: var(--head_height) 0px 0px;
  position: relative;
  background: var(--dark);
  overflow-x: hidden;
}

body.modal-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden !important;
}

body.menu-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden !important;
}

body,
html {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75em;
  color: var(--text);
}

.font-weight-Light {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 300 !important;
}
.font-weight-normal {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 400 !important;
}
.font-weight-medium {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 500 !important;
}
.font-weight-bold {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 600 !important;
}
.font-weight-bolder {
  font-family: "Poppins", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 700 !important;
}

@font-face {
  font-family: "Poppins";
  src: local("☺"), url(../font/Poppins-Light.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: local("☺"), url(../font/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: local("☺"), url(../font/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: local("☺"), url(../font/Poppins-Bold.ttf);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: local("☺"), url(../font/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
a:link {
  color: inherit;
}

/*未访问样式*/

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:focus,
button:hover {
  outline: none;
}
button {
  cursor: pointer;
}

a.text-link:hover {
  text-decoration: underline;
  color: var(--colour1);
}

dd,
dl,
dt,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  margin: 0;
  outline: none;
}

h1,
.h1 {
  font-size: 3.5rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2.5rem;
}

h4,
.h4 {
  font-size: 1.875rem;
}

h5,
.h5 {
  font-size: 1.375rem;
}

h6,
.h6 {
  font-size: 1.125rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

i {
  font-weight: normal;
}

hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 1.5rem 0px;
}
p {
  margin-bottom: 0.75em;
  font-size: 1rem;
  font-weight: lighter;
  line-height: 1.5em;
  color: var(--title);
}
p:last-child {
  margin-bottom: 0em !important;
}
.white p {
  color: #fff;
}

pre {
  display: block;
  border: none;
  background: none;
  font-size: 1rem;
  line-height: 1.75em;
  color: var(--text);
  padding: 0px;
  white-space: pre-wrap;
  font-family: inherit !important;
}
b,
strong {
  font-weight: bold;
}
.title {
  color: var(--title);
}
.subtitle {
  font-weight: 500;
  color: var(--title);
}

.white {
  color: #fff;
}
.red {
  color: red;
}
.colour1 {
  color: var(--colour1);
}

.colour2 {
  color: var(--colour2);
}

.colour-bg1 {
  background-color: var(--colour1);
}

.colour-bg2 {
  background-color: var(--colour2);
}

.colour1-btn {
  color: #fff !important;
  background-color: var(--colour1);
}

.colour1-btn:hover {
  background-color: var(--colour1);
}

.colour-grey-btn {
  color: var(--text) !important;
  background-color: var(--grey_bg);
}

.colour-grey-btn:hover {
  background-color: var(--colour1);
}

.colour-white-btn {
  color: var(--text) !important;
  background-color: #fff;
}

.colour-white-btn:hover {
  background-color: var(--colour1);
}

section {
  position: relative;
  overflow: hidden;
}
img {
  max-width: 100%;
}

/*页面滚动条*/
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
::-webkit-scrollbar-track {
  background: #ebebeb;
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark);
}
/*滚动条背景*/

/*滚动容器滚动条定制*/
/*lenis 不滚动容器*/
[data-lenis-prevent]::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
/*滚动容器滚动条定制*/

/*页面选中*/
::selection {
  background: var(--text-bg);
  color: #fff;
}

::-moz-selection {
  background: var(--text-bg);
  color: #fff;
}

::-webkit-selection {
  background: var(--text-bg);
  color: #fff;
}

/*表单*/

form > div {
  margin-bottom: 1rem;
}

form > div:last-child {
  margin-bottom: 0;
}

form div.row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

form div.row > div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

form p {
  margin-bottom: 0.375rem;
  font-size: 85%;
  opacity: 0.8;
}

form input,
form select {
  padding: 0 1rem;
  width: 100%;
  line-height: 3.5em;
  height: 3.5em;
  font-size: 1rem;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

form select {
  color: var(--text);
  padding-right: 2.5rem;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) center;
  background-size: 1rem 1rem;
}

form select option {
  font-weight: normal;
  display: block;
  min-height: 2em;
  padding: 0px 2px 1px;
  white-space: nowrap;
}

form textarea {
  padding: 1rem;
  width: 100%;
  line-height: 1.5em;
  height: 10em;
  font-size: 1rem;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

form button.btn {
  padding: 0 3rem;
  font-size: 1rem;
  line-height: 2.75rem;
  border: none;
  color: #fff;
  background: var(--colour1);
  cursor: pointer;
  transition: all 0.4s;
}

form button.btn:hover {
  color: #fff;
  background: var(--colour1);
}

/*修改多选input*/
.form-check-label {
  cursor: pointer;
}
input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  appearance: none;
  outline: none;
  vertical-align: middle;
  border-radius: 0.25rem;
  background: no-repeat center;
  background-size: 60%;
  background-color: var(--border_colour);
  border: 1px solid var(--border_colour);
}
input[type="checkbox"]:checked {
  background: url("../images/check.svg") no-repeat center;
  background-size: 60%;
  background-color: var(--colour1);
  border: 1px solid var(--colour1);
}
label.radio-inline {
  margin-bottom: 0;
  line-height: 1em;
  padding-left: 1.5rem;
}
input[type="radio"] {
  margin-left: -1.5rem;
  width: 1.125rem;
  height: 1.125rem;
  vertical-align: middle;
  border: 1px solid var(--border_colour);
  border-radius: 50%;
  background: #fff;
  background-image: none;
  -webkit-appearance: none; /* Chrome, Safari, Opera */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* 标准属性 */
}
input[type="radio"]:checked {
  border: 0.3125rem solid var(--colour1);
  background: #fff;
  background-image: none;
}
label.radio-inline span {
  vertical-align: middle;
}

.form-check-input {
  margin-left: -1.5rem;
}
/*input特殊展示效果*/
.input-box {
  position: relative;
}
.input-box label {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  top: 1.25em;
  font-size: 1rem;
  line-height: 1em;
  margin: 0;
  padding: 0 0.5rem;
  color: #999;
  background: #fff;
  transition: all 0.4s;
  transform-origin: left top;
}
.input-box input:focus-within ~ label,
.not-empty ~ label {
  transform: scale(0.733) translateY(calc(-2.125em)) translateX(calc(0.25rem));
  user-select: none;
}
/*表格边框样式*/

table,
tbody,
tr,
td {
  border: none;
}
table {
  border-collapse: separate;
  border-spacing: 1px;
  background: var(--border_colour);
  border-radius: 0.75rem;
}

table td {
  line-height: 1.5em;
  padding: 0.75rem 1.125rem;
  background: #fff;
}

table td p {
  margin: 0px;
}

table tr:first-of-type td:first-of-type {
  border-top-left-radius: 0.75rem;
}
table tr:first-of-type td:last-of-type {
  border-top-right-radius: 0.75rem;
}
table tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 0.75rem;
}
table tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 0.75rem;
}
/*boostrap遮罩层导致页面抖动*/

.modal-open {
  overflow: scroll !important;
}

/*页面内容宽度*/

.container {
  max-width: 85rem;
  width: 96%;
}
.small-content {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.sticky {
  position: sticky;
  top: 0;
}

/*图片包含*/

.obj-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

/*图片裁切*/

.obj-cover,
.obj-cover img {
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-cover img {
  width: 100%;
  height: 100%;
}

/*图片放大*/

.zoom-img {
  overflow: hidden;
}

.zoom-img img {
  width: 100%;
  transform: scale(1);
  transition: all ease 0.6s;
}

.zoom-img:hover img {
  transform: scale(1.075);
}

/*响应式图片等比居中*/

.img-center {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.img-center img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.zoom-img:hover .img-center img,
.zoom-img.img-center:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.075);
  transform: translate(-50%, -50%) scale(1.075);
}

/*背景裁切*/

.bg-cover {
  background-position: center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

/*视频相关*/
.video-btn {
  position: relative;
  z-index: 1;
}
.video-btn:before {
  content: "\b20";
  font-family: "iconfont" !important;
  font-weight: normal;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--colour1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: all 0.4s;
}
.video-btn:hover:before {
  content: "\b20";
  opacity: 0;
}

.video-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  background: #000;
}

.video-box:before {
  content: "\b20";
  font-family: "iconfont" !important;
  font-weight: normal;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--colour1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.video-box.play:before {
  content: "\b20";
  opacity: 0;
}

.video-box video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  /*尺寸不匹配加黑边*/
  object-fit: cover;
  /*内容自适应裁切*/
  overflow-clip-margin: content-box;
  overflow: clip;
  /*元素溢出容器的时候隐藏，同时不会有滚动定位等行为。*/
  opacity: 0.9;
}

.video-box.play video {
  opacity: 1;
}

/*视频弹出*/

#video-modal .close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
}

#video-modal .close span {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--title);
  background: #fff;
  transition: all 0.4s;
}

#video-modal .close:hover span {
  color: #fff;
  background: var(--colour2);
}

#video-modal .modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 96%;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-modal .modal-content {
  border: none;
  border-radius: 0;
}
#video-modal .modal-body {
  padding: 0;
  font-size: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
  display: flex;
}

#video-modal .modal-body video {
  width: 100%;
  height: 100%;
}

/*边距盒子*/

.padding-box {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-top {
  padding-top: 8rem;
}

.padding-bottom {
  padding-bottom: 8rem;
}

.small-padding-box {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.small-padding-top {
  padding-top: 5rem;
}

.small-padding-bottom {
  padding-bottom: 5rem;
}

.main {
  position: relative;
  z-index: 2;
  background: var(--grey_bg);
}

.grey-box {
  background: var(--grey_bg);
}

.grey-box2 {
  background: var(--grey_bg2);
}
.dark-box {
  background-color: var(--dark);
}
.white-box {
  background: #fff;
}

.clear-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}
/*设置swiper wow*/
.swiper .swiper-wrapper .swiper-slide.wow:nth-of-type(2) {
  animation-delay: 0.3s;
}
.swiper .swiper-wrapper .swiper-slide.wow:nth-of-type(3) {
  animation-delay: 0.5s;
}
/*设置swiper按钮*/
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "iconfont" !important;
  font-size: 1.5rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 50%;
  color: var(--colour1);
  background: #fff;
  transition: all 0.4s;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #fff;
  background: var(--colour1);
}
.swiper-button-next:after {
  content: "\b15";
}
.swiper-button-prev:after {
  content: "\b68";
}
/*设置swiper翻页*/
.swiper .swiper-pagination {
  width: 80%;
  margin-top: 0.5rem;
  margin-left: 10%;
  margin-right: 10%;
  position: static;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 0.375rem;
  border-radius: 0.25rem;
  background: var(--border_colour);
  overflow: hidden;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--colour1);
  border-radius: 0.25rem;
}
.swiper-scrollbar-drag {
  background: var(--dark);
}
/*内页翻页*/

.page-box {
  padding-top: 1.5rem;
}

.page {
  font-size: 0;
  color: #666;
}

.page span {
  display: inline-block;
  padding: 0 14px;
  margin: 0 4px;
  font-size: 14px;
  line-height: 3em;
  color: var(--text);
}

.page a {
  display: inline-block;
  margin: 0 1px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 3em;
  color: #666;
  background: #f7f7f7;
  transition: all 0.4s;
}

.page a:first-of-type {
  border-radius: 4px 0 0 4px;
}

.page a:last-of-type {
  border-radius: 0 4px 4px 0;
}

.page a.active {
  font-weight: bold;
  color: #fff;
  background: var(--colour1);
}

.page input {
  display: inline-block;
  width: 4rem;
  padding: 0px 10px;
  font-size: 14px;
  line-height: 3em;
  height: 3em;
  color: #666;
  border-radius: 4px;
  border: 1px solid var(--grey_bg);
  overflow: hidden;
  transition: all 0.4s;
}

.page button {
  padding: 0 18px;
  margin: 0px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  line-height: 3em;
  color: #666;
  border: 1px solid var(--border_colour);
  background: var(--grey_bg2);
  cursor: pointer;
  transition: all 0.4s;
}

.page form {
  display: inline-block;
}

.grey-box .page a {
  background: #fff;
}

.grey-box .page a.active {
  color: #fff;
  background: var(--colour1);
}

.page a:hover,
.page button:hover {
  color: #fff;
  background: var(--colour1);
}

@media (max-width: 767.8px) {
  .page {
    font-size: 13px;
    line-height: 2.5em;
  }
  .page a,
  .page span {
    padding: 0 14px;
    font-size: 13px;
    line-height: 2.5em;
  }
  .page input {
    font-size: 13px;
    line-height: 2.5em;
  }
  .page button {
    padding: 0 14px;
    font-size: 13px;
    line-height: 2.5em;
  }
  .page input {
    font-size: 13px;
    line-height: 2.5em;
    height: 2.5em;
  }
}

/*下拉选项*/
.select {
  position: relative;
  z-index: 2;
}

.select > div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  background: var(--grey_bg);
  margin: 0;
  padding: 0.5rem 0;
}

.select > a {
  display: flex;
  justify-content: space-between;
  gap: 0 1rem;
  outline: none;
  width: 100%;
  min-width: 13rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 3rem;
  height: 3rem;
  color: #666;
  border: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  transition: all 0.4s;
}

.select > div a {
  padding: 0.5rem 1rem;
  color: var(--text);
  line-height: 1.5em;
  white-space: pre-wrap;
}

.select > div a.disabled {
  opacity: 0.5;
}

.select > div a:hover {
  color: #fff;
  background: var(--colour1);
}

/* 按钮 */
.layout-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: auto;
  height: 3.25em;
  line-height: 1.625em;
  background: var(--colour1);
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  border-radius: 0.375em;
  transition: all 0.4s;
  overflow: hidden;
  /*box-shadow: 0 1.375rem 2em -0.5rem rgba(0, 0, 0, 0.1);*/
}

.layout-btn:before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grey_bg);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}

.layout-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colour1);
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.layout-btn > div {
  position: relative;
  z-index: 8;
  padding: 0 2.5em;
  overflow: hidden;
}

.layout-btn > div > span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  line-height: inherit;
  top: 0;
  font-weight: 500;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.layout-btn > div > span:first-of-type {
  color: #fff;
  opacity: 1;
  transform: translateY(50%);
}

.layout-btn > div > span:last-of-type {
  color: #333;
  opacity: 0;
  transform: translateY(50%);
}

.layout-btn:hover {
  background: var(--grey_bg);
  transition: background 0.2s linear;
  transition-delay: 0.6s;
}

.layout-btn:hover:before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0s;
}

.layout-btn:hover:after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0s;
}

.layout-btn:hover > div > span:first-of-type {
  opacity: 0;
  transform: translateY(-50%);
}

.layout-btn:hover > div > span:last-of-type {
  opacity: 1;
  transform: translateY(-50%);
}
.layout-btn > div font {
  font-weight: normal !important;
  font-size: 125%;
  line-height: 1em;
}
.layout-btn.layout-btn2 {
  background: #fff;
}
.layout-btn.layout-btn2:after {
  background: var(--dark);
}
.layout-btn.layout-btn2:before {
  background: var(--colour1);
}
.layout-btn.layout-btn2 > div > span:first-of-type {
  color: #fff;
}
.layout-btn.layout-btn2 > div > span:last-of-type {
  color: #fff;
}

.layout-btn.layout-btn3 {
  background: #fff;
}
.layout-btn.layout-btn3:after {
  background: var(--colour2);
}
.layout-btn.layout-btn3:before {
  background: var(--grey_bg);
}
.layout-btn.layout-btn3 > div > span:first-of-type {
  color: #fff;
}
.layout-btn.layout-btn3 > div > span:last-of-type {
  color: var(--title);
}
/*头部*/

#head {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: hidden;
  background: var(--dark);
  transform: translate(0%, 0%);
  transition: all 0.4s, padding 0s;
}
body.modal-open #head {
  padding-right: 0;
  transition: padding 0s;
}
body.menu-modal-show #head {
  z-index: 1060;
}
/*头部标志*/
.head-conent {
  position: relative;
  display: flex;
  padding: 0 1rem;
  width: 100%;
  height: var(--head_height);
  transition: all 0.4s;
}
.navbar-brand {
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  padding: 0px;
  margin: 0px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.navbar-brand img {
  width: auto;
  height: 65%;
}

.navbar-brand > div {
  padding-left: 1rem;
  border-top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  font-family: "BdCn";
  font-size: 1.5rem;
  color: #fff;
}
.navbar-brand > div span {
  display: inline-block;
  margin-right: 0.25em;
}

/*头部按钮*/

.head-wap-btn {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.head-wap-btn .dropdown {
  display: flex;
  align-items: center;
}

.head-wap-btn .dropdown > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  font-size: 0.9375rem;
  line-height: 2.25rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.head-wap-btn .dropdown:hover > a {
  opacity: 0.7;
}

.head-wap-btn .dropdown > a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0%;
  width: 1px;
  height: 1rem;
  background-color: #fff;
  opacity: 0.2;
  transform: translate(0%, -50%);
  transition: all 0.4s;
}
.head-wap-btn .dropdown.head-btn-support > a:before {
  display: none;
}

.head-btn-member > a {
  font-weight: bold;
}

.head-wap-btn .dropdown > a > div {
  display: flex;
  padding: 0 1.125em 0 0.875em;
  border-radius: 2em;
  transition: all 0.4s;
}

.head-wap-btn .dropdown > a span.icon {
  display: inline-block;
  font-size: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  text-align: center;
  color: inherit;
  border-radius: 50%;
  transition: all 0.4s;
}

.head-wap-btn .head-btn-member > a span {
  font-weight: normal;
}
.head-wap-btn .dropdown > a svg {
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}
.head-wap-btn .dropdown-menu {
  left: auto;
  right: -1rem;
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
  border: none;
  box-shadow: 0 0 1rem var(--shadow);
  background: #1d1d1d;
}

.head-wap-btn .dropdown .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  height: 2.75rem;
  line-height: 2.75rem;
  border-bottom: rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.head-wap-btn .dropdown .dropdown-menu a:hover {
  color: rgb(255, 255, 255, 0.7);
}

.head-wap-btn .dropdown .dropdown-menu a:last-of-type {
  border-bottom: none;
}

.head-wap-btn .dropdown .dropdown-menu svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.375rem;
}

.head-wap-btn .dropdown-menu .title {
  padding: 0 0.5rem;
  font-size: 1.375rem;
  line-height: 1.5rem;
  white-space: nowrap;
}
.head-wap-btn .head-btn-share {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.head-wap-btn .head-btn-share a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 1rem;
  color: #fff;
  transition: all 0.4s;
}
.head-wap-btn .head-btn-share a:hover {
  opacity: 0.5;
}
.head-wap-btn .head-btn-share a.facebook {
  background: #177aed;
}
.head-wap-btn .head-btn-share a.twitter {
  background: #000;
}
.head-wap-btn .head-btn-share a.instagram {
  background: #e8068b;
}
.head-wap-btn .head-btn-share a.linkedin {
  background: #0274b6;
}
.head-wap-btn .head-btn-share a.douyin {
  background: #f92a52;
}
.head-wap-btn .head-btn-share a.pinterest {
  background: #c91517;
}
.head-wap-btn .head-btn-share a.youtube {
  background: #f01606;
}
.head-wap-btn .head-btn-share a span {
  font-size: inherit !important;
}

.head-wap-btn .head-btn-search .dropdown-menu {
  left: auto;
  right: -4rem;
}

.head-wap-btn .dropdown-menu form {
  display: flex;
  margin: 1rem 2rem;
  min-width: 20rem;
}

.head-wap-btn .dropdown-menu form input {
  padding: 0 1rem;
  border-radius: 2rem 0 0 2rem;
}

.head-wap-btn .dropdown-menu form button {
  padding: 0 1rem;
  border-radius: 0 2rem 2rem 0;
  border: none;
  background: var(--colour1);
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
}
.head-wap-btn .dropdown-menu form button:hover {
  background: var(--colour1);
}

.head-wap-btn .dropdown-menu form button span {
  font-size: inherit;
  color: inherit;
}
.head-btn-phone {
  margin-right: 1rem;
  white-space: nowrap;
}
.head-btn-phone .icon {
  font-size: 1.375rem;
  color: var(--colour1);
}

.head-btn-phone .phone {
  font-size: 1.375rem;
  font-weight: 600;
}
.wap-menu-btn {
  width: var(--head_height);
  height: var(--head_height);
  color: var(--title);
  border-radius: 0;
  border: none;
  transition: all 0.4s;
}
.wap-menu-btn:not(.collapsed) {
  color: #fff;
  background: var(--colour1);
}
.wap-menu-btn span {
  width: 1.3125rem;
  height: 0.125rem;
  background-color: #fff;
  display: block;
  margin: 0.3125rem auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wap-menu-btn:not(.collapsed) span {
  background-color: #fff;
}

.wap-menu-btn:not(.collapsed) {
  cursor: pointer;
}

.wap-menu-btn span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.wap-menu-btn span:nth-child(2) {
  opacity: 0;
}

.wap-menu-btn span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.wap-menu-btn.collapsed span {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/*头部导航*/

#head .navbar-collapse {
  justify-content: center;
  width: 100%;
  height: 100%;
}

#head .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: auto;
  height: 100%;
  padding: 0 calc(1vw * 2);
}
#head .navbar-nav > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0 calc(0.8vw * 1.4);
}
#head .navbar-nav > li:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 0.1875rem;
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: 100%;
}

#head .navbar-nav > li.active:after,
#head .navbar-nav > li:hover:after {
  transform: scaleX(1);
  transform-origin: 0%;
}
#head .navbar-nav > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1rem;
  line-height: 1.25em;
  white-space: nowrap;
  color: inherit;
  text-align: center;
  color: #fff;
  text-transform: Capitalize;
  border-radius: 0.25rem;
}
#head .navbar-nav > li > a:hover {
  text-decoration: underline;
}

#head .navbar-nav .dropdown-menu {
  left: 0%;
  margin: 0;
  padding: 0rem;
  width: auto;
  border: none;
  box-shadow: 0 0.25rem 0.5rem var(--shadow);
  border-radius: 0 0 0.25rem 0.25rem;
  background: var(--dark);
}
#head .navbar-nav .dropdown-menu > div {
  padding: 0.5rem 0;
}
#head .navbar-nav .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #fff;
  height: 3em;
  line-height: 3em;
  white-space: nowrap;
  transition: all 0.4s;
}
#head .navbar-nav .dropdown-menu a:hover {
  opacity: 0.7;
}
/*头部*/
body:not(.top) #head {
  box-shadow: 0 0 1rem var(--shadow);
}
/*头部搜索*/

#search-modal .modal-dialog {
  margin: 0;
  width: 100vw;
  max-width: none;
}

#search-modal .modal-content {
  border-radius: 0;
  border: none;
  color: var(--tips_text);
  background: var(--dark);
}

#search-modal .modal-header {
  padding: 2vw;
}

#search-modal .modal-header form {
  display: flex;
  width: 100%;
}

#search-modal .modal-header input,
#search-modal .modal-header button {
  border: none;
  border-radius: 0;
  background: none;
}

#search-modal .modal-header input {
  font-size: 1.5rem;
  font-weight: 500;
}

#search-modal .modal-header button {
  cursor: pointer;
  padding: 0 1rem;
}

#search-modal .modal-header button span {
  color: var(--tips_text);
  transition: all 0.4s;
}

#search-modal .modal-header button:hover span {
  color: var(--colour1);
}

#search-modal .modal-body {
  padding: 2vw;
}

#search-modal .modal-header button span {
  font-size: 1.5rem;
}
#search-modal .modal-body p {
  color: var(--tips_text);
}
#search-modal .modal-body a {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2em;
  color: #fff;
  transition: all 0.4s;
}

#search-modal .modal-body a:hover {
  color: var(--colour1);
}

/*手机菜单*/
#menu-modal {
  top: var(--head_height);
  border-top: none;
}
#menu-modal .modal-dialog {
  max-width: none;
  margin: 0;
}

#menu-modal.fade .modal-dialog {
  transform: none;
}
#menu-modal.show .modal-dialog {
  transform: none;
}
#menu-modal .modal-content {
  background: #262626;
}
#menu-modal.fade .modal-content {
  border: none;
  border-radius: 0;
  height: 0;
  transition: all 0.4s;
  overflow: hidden;
}
#menu-modal.show .modal-content {
  height: calc(100vh - var(--head_height));
  transition-delay: 0.1s;
}

#menu-modal .modal-body {
  padding: 2rem 1rem;
  height: calc(100vh - var(--head_height));
  overflow-y: auto;
}
.menu-nav ul li {
  display: flex;
  flex-wrap: wrap;
}
.modal.show .menu-nav ul li {
  -webkit-animation-duration: 1.125s;
  animation-duration: 1.125s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.modal.show .menu-nav ul li:nth-of-type(2) {
  animation-delay: 0.3s;
}
.modal.show .menu-nav ul li:nth-of-type(3) {
  animation-delay: 0.5s;
}
.modal.show .menu-nav ul li:nth-of-type(4) {
  animation-delay: 0.7s;
}
.modal.show .menu-nav ul li:nth-of-type(5) {
  animation-delay: 0.9s;
}
.modal.show .menu-nav ul li:nth-of-type(6) {
  animation-delay: 1.1s;
}
.modal.show .menu-nav ul li:nth-of-type(7) {
  animation-delay: 1.3s;
}
.menu-nav ul li > a {
  flex-grow: 1;
  display: block;
  font-size: 1.125rem;
  height: 2.75em;
  line-height: 2.75em;
  font-weight: 600;
  color: #fff;
}
.menu-nav ul li > a.menu-down {
  flex-grow: 0;
  width: 2.5em;
  font-size: 1rem;
  text-align: center;
}
.menu-nav ul li > a.menu-down .icon {
  display: inline-block;
  font-size: inherit;
  transform: rotate(-45deg);
  transition: all 0.4s;
}

.menu-nav ul li > a.menu-down:not(.collapsed) .icon {
  transform: rotate(0deg);
  opacity: 0.5;
}
.menu-nav ul li div[data-parent="#menu-nav"] {
  width: 100%;
}
.menu-nav ul li div[data-parent="#menu-nav"] > div {
  padding: 0 1rem 1.5rem;
}
.menu-nav ul li div[data-parent="#menu-nav"] > div a {
  display: block;
  line-height: 2.5em;
  font-weight: 300;
  color: var(--tips_text);
}
.small-menu-nav {
  margin-top: 2rem;
}
.small-menu-nav ul li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.small-menu-nav a {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 0;
  font-size: 1rem;
  line-height: 1.25em;
  font-weight: 300;
  color: var(--tips_text);
}
.small-menu-nav a.menu-down {
  flex-grow: 0;
  flex-shrink: 0;
}
.small-menu-nav a:not(.menu-down) span.icon {
  font-size: 125%;
}
.small-menu-nav a.menu-down {
  padding: 0.6875rem;
  transition: all 0.4s;
}
.small-menu-nav a.menu-down.collapsed {
  transform: rotate(-45deg);
}
.modal.show .small-menu-nav ul li {
  -webkit-animation-duration: 1.125s;
  animation-duration: 1.125s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-delay: 1s;
}
.modal.show .small-menu-nav ul li:nth-of-type(2) {
  animation-delay: 1.3s;
}
.modal.show .small-menu-nav ul li:nth-of-type(3) {
  animation-delay: 1.5s;
}
.modal.show .small-menu-nav ul li:nth-of-type(4) {
  animation-delay: 1.7s;
}
.modal.show .small-menu-nav ul li:nth-of-type(5) {
  animation-delay: 1.9s;
}
.modal.show .small-menu-nav ul li:nth-of-type(6) {
  animation-delay: 2.1s;
}
.modal.show .small-menu-nav ul li:nth-of-type(7) {
  animation-delay: 2.3s;
}
.small-menu-nav li div {
  width: 100%;
}
.small-menu-nav li div div {
  padding: 0.5rem 1rem;
}
.small-menu-nav li div a {
  font-size: 0.9375rem;
}
.small-menu-nav li div a svg {
  width: 1.25rem;
  height: 1.25rem;
}
/*head end*/
/*头部搜索*/
#search-modal .modal-dialog {
  margin: 0;
  width: 100vw;
  max-width: none;
  transition: all 0.4s;
  opacity: 0;
}
#search-modal.show .modal-dialog {
  opacity: 1;
}
#search-modal .modal-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: none;
  height: 100vh;
}
#search-modal .search-close {
  position: absolute;
  right: 1vw;
  top: 1vw;
  z-index: 2;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: none;
  color: #fff;
  background: var(--colour1);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
#search-modal .search-close:hover {
  background: var(--colour2);
  color: #fff;
}

#search-modal .search-close .icon {
  font-size: inherit;
  color: inherit;
}
#search-modal .modal-header {
  width: 60rem;
  max-width: 90%;
  padding: 0rem;
  border-bottom: none;
}
#search-modal .modal-header form {
  display: flex;
  justify-content: center;
  width: 100%;
}
#search-modal .modal-header input,
#search-modal .modal-header button {
  border: none;
  border-radius: 0;
  background: none;
}

#search-modal .modal-header input {
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  width: 0;
  background: var(--grey_bg);
  transition: all 0.8s;
}
#search-modal.show .modal-header input {
  width: 100%;
  height: 3em;
  line-height: 3em;
  border-radius: 0.5rem 0 0 0.5rem;
  transition-delay: 0.3s;
}

#search-modal .modal-header button {
  cursor: pointer;
  padding: 0 2rem;
  color: #fff;
  font-size: 1.5rem;
  background: var(--colour1);
  border-radius: 0 0.5rem 0.5rem 0;

  transition: all 0.4s;
}
#search-modal .modal-header button:hover {
  color: #fff;
  background: var(--colour2);
}
#search-modal .modal-header button span {
  color: inherit !important;
  font-size: inherit;
}
#search-modal .modal-body {
  width: 60rem;
  max-width: 90%;
  flex: 0 0 auto !important;
  padding: 2rem 1.5rem;
}
#search-modal.show .modal-body {
  animation-name: fadeInUp;
  animation-duration: 1.125s;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}
#search-modal .hot-search {
  margin-top: 2rem;
}
#search-modal .hot-search strong {
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
#search-modal .hot-search a {
  display: inline-block;
  padding: 0 1em;
  margin: 0.25rem;
  font-size: 0.875rem;
  line-height: 2.5em;
  color: var(--dark);
  border-radius: 2em;
  background: var(--grey_bg);
  transition: all 0.4s;
}

#search-modal .hot-search a:hover {
  color: #fff;
  background: var(--colour1);
}
/*头部搜索*/
/*公共*/
.nav-title {
  color: var(--title);
}
.hover-btn {
  display: inline-block;
  position: relative;
  padding: 0 2.25em;
  font-size: 0.875rem;
  line-height: 3.25em;
  color: #fff !important;
  border: 1px solid var(--colour1);
  border-radius: 1.725rem;
  overflow: hidden;
  transition: all 0.4s;
}

.hover-btn:hover {
  color: var(--colour1) !important;
}

.hover-btn span {
  position: relative;
  z-index: 3;
  color: inherit;
  vertical-align: middle;
}

.hover-btn:before {
  transition: all 0.6s;
  transform: scale(0);
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #fff;
  content: "";
}

.hover-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--colour1);
  content: "";
}

.hover-btn:hover:before {
  transition: all 0.6s;
  transform: scale(13);
}

/**/
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: 45%;
  width: 3em;
  height: 3em;
  line-height: 3em;
  font-size: 1.375rem;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0;
  transition: all 0.4s;
}
.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  opacity: 1;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: var(--colour1);
}
.swiper:hover .swiper-button-prev.swiper-button-disabled,
.swiper:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.swiper:hover .swiper-button-prev span,
.swiper:hover .swiper-button-next span {
  font-size: inherit;
  color: inherit;
}
.swiper .swiper-pagination {
  margin-top: 0.5rem;
  position: static;
}
/*首页banner*/
/*水墨背景*/
.background_canvas {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -10;
  cursor: pointer;
}
.background_canvas canvas {
  width: 100%;
  height: 100%;
}
/*banner*/
.swiper-btn > div {
  cursor: pointer;
}
.banner {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.banner .bigimg .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.banner .bigimg .swiper-slide .picimg {
  width: 100%;
  object-fit: cover;
}
.banner .bigimg .swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
}
.banner .bigimg .swiper-slide .slide-inner picture,
.banner .bigimg .swiper-slide .slide-inner img {
  width: 100%;
}

.banner .bigimg .swiper-slide .video_ves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.banner .bigimg .swiper-slide .video_ves video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: auto;
  margin: 0;
  display: flex;
}

.banner .swiper-pagination span {
  position: relative;
  display: block;
  margin: 0 0.375rem !important;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50% !important;
  background: initial;
  background: none;
  border: 0.125rem solid rgba(255, 255, 255, 1);
  border-radius: 0;
  opacity: 1;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
  border: 0.125rem solid var(--colour1);
  background: var(--colour1);
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  position: absolute;
  display: inline-block;
  margin: 0;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  color: var(--colour1);
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  border-radius: 2rem;
  background: #fff;
  transform: translate(0%, -50%);
  opacity: 0;
  transition: all 0.5s;
}
.banner:hover .swiper-button-next:not(.swiper-button-disabled),
.banner:hover .swiper-button-prev:not(.swiper-button-disabled) {
  opacity: 1;
}
.banner .swiper-button-prev {
  left: 1rem;
  border-right: 1px solid var(--border_colour);
}
.banner .swiper-button-next {
  right: 1rem;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  color: #fff;
  background: var(--colour1);
}
.banner .swiper-button-disabled {
  color: #ccc !important;
  background: #fff !important;
}
.banner:hover .swiper-button-disabled {
  opacity: 0.5;
}

/*首页关于*/
.index-about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.index-about .info {
  width: 44%;
}
.line {
  display: inline-block;
  margin: 0 0 1.5rem;
  width: 3rem;
  height: 0.1875rem;
  background: var(--colour1);
}
.index-about .info .title {
  text-transform: Uppercase;
}
.index-about .info p {
  line-height: 1.75em;
}
.data-list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.data-list li {
  flex-grow: 1;
}
.data-list .colour1 {
  display: flex;
}
.data-list .colour1 .data {
  margin: 0;
  line-height: 1em;
}
.data-list .colour1 small {
  margin-left: 0.5rem;
  color: var(--tips_text);
}
.data-list  span {
  color: var(--tips_text);
}
.index-about .video {
  border-radius: 0.5rem;
  overflow: hidden;
}
.index-about .link {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.75rem;
}
.index-about .link .video-btn {
  border-radius: 0.5rem;
  overflow: hidden;
}
.index-about .link-list {
  display: flex;
  gap: 0.75rem;
}
.index-about .link-list a {
  position: relative;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.index-about .link-list a .title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 2rem 1rem 1rem;
  line-height: 1em;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
/*首页产品*/
.index-product {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.index-product li {
  position: relative;
  width: calc(25% - 0.375rem);
  border-radius: 0.5rem;
  border: 1px solid var(--border_colour);
  background: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
.index-product li:hover {
  box-shadow: 0 0 1.5rem var(--shadow);
}
.index-product .video-btn {
  position: relative;
  display: block;
}
.index-product .img {
  position: relative;
  z-index: 1;
  padding-bottom: 85%;
  overflow: hidden;
}
.index-product .tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0 0.75em;
  font-size: 0.875rem;
  line-height: 2em;
  color: #fff;
  background: var(--dark);
  border-radius: 0.25rem;
}
.index-product .info {
  padding: 1.25rem;
  border-top: 1px solid var(--border_colour);
}
.index-product .subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1em;
  color: var(--small_text);
}
.index-product .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}
.index-product li:hover .title {
  color: var(--title);
}
.index-product .star {
  margin-top: 1rem;
  display: inline-block;
  position: relative;
  background: linear-gradient(
    to right,
    orange 0%,
    orange 50%,
    var(--tips_text) 50%,
    var(--tips_text) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  color: transparent;
}

.index-product pre {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  height: 4.5em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-product .more {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}

.index-product .more .icon {
  display: inline-block;
  font-size: 0.75rem;
  transition: margin 0.4s;
}
.index-product li:hover .more .icon {
  margin-left: 0.5rem;
}
/*首页栏目*/
.index-p {
  padding: 0 10%;
}
.index-p .swiper-slide {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.index-p .swiper-slide .info {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10%;
}
.index-p .swiper-slide .title {
  font-size: 1.25rem;
  line-height: 1.25em;
  font-weight: bold;
  color: #fff;
}
.index-p .swiper-slide .more {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.index-p .swiper-slide .more .icon {
  font-size: 0.875rem;
}
/*优势*/
.index-adv li {
  display: flex;
}
.index-adv li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
  color: #fff;
  background: var(--dark);
}
.index-adv li .img img {
  width: 100%;
  min-height: 100%;
}
.index-adv li .info {
  padding: 6rem 4rem;
}
.index-adv li:nth-of-type(even) .img {
  order: 1;
}
.index-adv li:nth-of-type(even) .info {
  order: 0;
}
.index-adv li .title {
  margin: 0;
  color: #fff;
}
.index-adv li .subtitle {
  margin: 0;
  color: #fff;
  opacity: 0.7;
}
.index-adv li .summary {
  margin-top: 1rem;
  font-weight: 300;
}
.index-adv li .layout-btn {
  margin-top: 2rem;
}
/*首页反馈*/
.index-feedback {
  display: flex;
  gap: 3rem;
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
  background: var(--grey_bg);
}
.index-feedback .info {
  width: 40%;
}
/*页脚*/
#foot {
  position: relative;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--tips_text);
  background: var(--dark);
}
.back-top {
  position: fixed;
  z-index: 10;
  right: 2rem;
  bottom: 5vh;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #333;
  transition: all 0.4s;
}
.top .back-top {
  opacity: 0;
}
.back-top:hover {
  background: var(--colour1);
}
.back-top span {
  font-size: 1.375rem;
}
#foot p {
  font-size: inherit;
  color: inherit;
  line-height: 1.5em;
}
#foot .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#foot .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}
#foot .foot-follow {
  max-width: 30rem;
}
#foot .foot-share {
  display: flex;
  gap: 0.5rem;
  font-size: 0;
}
#foot .foot-share font {
  margin-right: 0.125rem;
  font-size: 0.9375rem;
}
#foot .foot-share a {
  position: relative;
  display: inline-block;
  margin-top: -1px;
  margin-left: -1px;
  margin-left: 0.25rem;
}
#foot .foot-share a span {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: 1.375rem;
  text-align: center;
  border-radius: 1.5rem;
  color: var(--dark);
  background: #fff;
  transition: all 0.4s;
}
#foot .foot-share a:hover span {
  color: #fff;
  background: var(--colour1);
}
.foot-share a > div {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  z-index: 2;
  width: 9rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0%);
  transition: all 0.4s;
}
.foot-share a:hover > div {
  opacity: 1;
  visibility: visible;
}
.foot-share a > div img {
  width: 9rem;
}
#foot .foot-nav {
  display: flex;
  gap: 2rem;
}
#foot .foot-nav a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.5em;
  color: #fff;
  transition: all 0.4s;
}

#foot .foot-nav a:hover {
  color: var(--colour1);
  text-decoration: underline;
  opacity: 1;
}
#foot .foot-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 2rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--tips_text);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#foot .foot-bottom a {
  color: inherit;
}
#foot .foot-bottom a:hover {
  color: var(--colour1);
  text-decoration: underline;
  opacity: 1;
}
#foot .copyright {
  margin-top: 1rem;
  color: var(--small_text);
}
#foot .link {
  display: flex;
  flex-wrap: wrap;
}
#foot .link a {
  display: inline-block;
  line-height: 1em;
}
#foot .link a:after {
  content: "";
  display: inline-block;
  margin: 0 0.75rem;
  width: 1px;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.3);
}
#foot .link a:last-of-type:after {
  display: none;
}
#foot .foot-logo {
  max-width: 12rem;
  max-height: 3rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/*内页公共*/

.inside-banner {
  position: relative;
}

.inside-banner picture,
.inside-banner img {
  width: 100%;
}

.inside-banner .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.inside-banner .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 1.5rem var(--shadow);
}
.inside-banner .title {
  margin-bottom: 0;
  line-height: 1.125em;
}
.inside-banner .subtitle {
  margin: 1rem 0 0;
  font-weight: 300;
}
.inside-banner .layout-btn {
  margin-top: 3rem;
  margin-right: 0.5rem;
  height: 3.5em;
  line-height: 1.75em;
}
.inside-banner form.form-search {
  position: relative;
  z-index: 2;
  margin: auto;
  margin-top: 2rem;
  display: flex;
  width: 90%;
  max-width: 35rem;
}

form.form-search input {
  border-radius: 0.5rem 0 0 0.5rem;
}
form.form-search button {
  padding: 0 1.25em;
  color: #fff;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  background: var(--small_text);
  transition: all 0.4s;
}
form.form-search button:hover {
  background: var(--colour1);
}
form.form-search button .icon {
  font-size: 150%;
  color: inherit;
}
form.form-search .popular-search {
  position: absolute;
  top: calc(100% + 0.25rem);
  display: none;
  width: 100%;
  padding: 1.375rem 1.25rem 1.25rem;
  color: var(--text);
  text-align: left;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0 1rem var(--shadow);
}
form.form-search .popular-search.show {
  display: block;
}
form.form-search .popular-search ul {
  margin-top: 1rem;
}
form.form-search .popular-search ul a {
  display: inline-block;
  margin: 0.25rem 0;
  line-height: 1.25em;
  color: var(--text);
}
form.form-search .popular-search ul a:hover {
  color: var(--colour1);
}
.breadcrumb {
  width: 100%;
  padding: 1.25rem 0px;
  margin: 0;
  background: none;
}

.breadcrumb > div {
  font-size: 0px;
}

.breadcrumb a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1rem;
  color: var(--text);
  transition: all 0.4s;
}

.breadcrumb a:hover {
  color: var(--colour1);
}

.breadcrumb a:not([href]):not([tabindex]) {
  color: var(--small_text);
}

.breadcrumb a:after {
  content: ">";
  margin: 0 1rem;
  color: var(--small_text);
}

.breadcrumb a:not([href]):not([tabindex]):after {
  content: "";
}

.breadcrumb a img {
  width: 1rem;
  filter: brightness(0);
  opacity: 0.5;
}
.inside-banner .container {
  position: relative;
  z-index: 2;
}
.inside-banner .breadcrumb {
  position: absolute;
  z-index: 3;
}
.inside-banner .breadcrumb a {
  color: #fff;
}

.inside-banner .breadcrumb a:hover {
  color: var(--colour1);
}
.inside-banner .breadcrumb a:not([href]):not([tabindex]) {
  color: #fff;
  opacity: 0.7;
}
.inside-banner .breadcrumb a:after {
  content: ">";
  color: #fff;
  opacity: 0.7;
}
.inside-banner .breadcrumb a:not([href]):not([tabindex]):after {
  display: none;
}

/*关于*/
.about .info,.about .info p{
    color: var(--tips_text);
}

.about .video-btn img {
  max-width: 70%;
  margin: auto;
  border-radius: 0.5rem;
}
.about .data-list {
  margin: auto;
  margin-top: 5rem;
  max-width: 60rem;
  text-align: left;
}

.culture {
  position: relative;
}
.culture .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.culture .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.culture .left {
  width: 35%;
}
.culture .left > div {
  position: sticky;
  top: calc(var(--head_height) + 3rem);
}
.culture .left .title {
  margin-bottom: 1.5rem;
  line-height: 1.25em;
}
.culture .right {
  width: 50%;
}

.culture-list {
  counter-reset: cultureListe;
}
.culture-item {
  position: sticky;
  top: calc(var(--head_height) + 3rem);
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  width: 100%;
  padding: 6% 8rem 6% 6%;
  border-radius: 1rem;
  background-color: var(--grey_bg);
  box-shadow: 0 0 1.5rem var(--border_colour);
  transform-origin: top center;
  overflow: hidden;
  transition: 0.3s;
}
.culture-item:hover {
  color: #fff;
  background-color: var(--colour1);
}
.culture-item:last-of-type {
  margin-bottom: 0;
}
.culture-item:before {
  position: absolute;
  right: 0;
  bottom: -0.1em;
  z-index: 1;
  counter-increment: cultureListe 1;
  content: "0" counter(cultureListe);
  font-size: 6rem;
  font-weight: 300;
  line-height: 0.85em;
  color: var(--text);
  opacity: 0.1;
  transition: all 0.4s;
}
.culture-item:hover:before {
  color: #fff;
}
.culture-item .tag {
  position: absolute;
  top: -0.875rem;
  left: 5%;
  font-size: 4rem;
  line-height: 1em;
  font-weight: 300;
  color: var(--text);
  opacity: 0.2;
}
.culture-item .icon {
  width: 3.5rem;
  margin-top: -2rem;
  margin-bottom: 1rem;
  transition: all 0.4s;
}
.culture-item:hover .icon {
  opacity: 0.7;
  filter: brightness(0) invert(1);
}
.culture-item .info {
  padding-top: 6rem;
}
.culture-item .txt {
  margin-top: -0.25rem;
}

.culture-item:hover .title {
  color: #fff;
}
.culture-item:hover .line {
  background: #fff;
}
.culture-item:hover .tag {
  color: #fff;
}

.history-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 75rem;
  margin: 3rem auto;
  padding: 1rem 0;
  font-size: 1.125rem;
}

.history-list ol {
  position: absolute;
  z-index: -2;
  top: 0%;
  left: 15rem;
  width: 1px;
  height: 100%;
  padding: 0;
  background-color: var(--colour1);
}
.history-list ol:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1.25rem;
  left: -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid var(--colour1);
  border-radius: 50%;
  transition: all 0.4s;
}
.history-list ol:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -1.25rem;
  left: -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid var(--colour1);
  border-radius: 50%;
  transition: all 0.4s;
}

.history-list li {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.history-list li .year {
  flex-shrink: 0;
  width: 10rem;
  font-size: 4rem;
  line-height: 1em;
  color: var(--colour1);
}
.history-list li .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: calc(100% - 20rem);
  padding-top: 1rem;
}
.history-list li .item {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 1rem;
  width: 100%;
}
.history-list li .item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.75rem;
  left: -5.135rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--colour1);
  border-radius: 50%;
}
.history-list li .item .time {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--title);
}
.history-list li .item .txt {
  font-weight: 300;
}

.style-list .img {
  padding-bottom: 75%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.style-list .img img {
  width: 100%;
  height: 100%;
}
.style-list p {
  margin: 1rem 0;
  font-weight: 400;
  text-align: center;
  transition: all 0.4s;
}
.style-list .swiper-slide:hover p {
  color: var(--colour1);
}

.cooperation-list {
  margin: 0.75rem 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.cooperation-list .content {
  float: left;
  display: flex;
  gap: 0 1rem;
  animation: scroll1 40s linear infinite;
}
.cooperation-list.cooperation-list2 .content {
  animation: scroll2 40s linear infinite;
}

.cooperation-list .content:hover {
  animation-play-state: paused;
}
.cooperation-list .content a {
  display: block;
  flex-shrink: 0;
  width: 14rem;
  padding-bottom: 9rem;
  background: var(--grey_bg);
  border-radius: 0.5rem;
}
.cooperation-list img {
  max-width: 90%;
  max-height: 60%;
  mix-blend-mode: multiply;
}
@keyframes scroll1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(calc(0%));
  }
}
/**/
.inside-head {
  padding: 4rem 0;
}

/*产品列表*/
.product-top {
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin-top: -3.5rem;
}

.product-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.product-content .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border_colour);
}
.product-content .top span {
  flex-shrink: 0;
  line-height: 1em;
}
.product-content .top form {
  display: flex;
}
.product-content .top form input {
  line-height: 2.5em;
  height: 2.5em;
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
}
.product-content .top form button {
  flex-shrink: 0;
  padding: 0 0.75em;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-left: none;
}
.product-content .left {
  width: 18rem;
}
.product-content .wap-btn {
  display: none;
}
.product-content .wap-btn button {
  outline: none !important;
  padding: 0 1.5em;
  line-height: 3em;
  font-weight: 600;
  color: #fff;
  border: none;
  background: var(--dark);
}

.product-content .wap-btn button.btn-categories {
  flex-grow: 1;
}

.product-nav a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.375rem 0;
  line-height: 1.25em;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.product-nav > a {
  font-weight: bold;
  color: #fff;
}
.product-nav > div > a {
  gap: 0.5rem;
  font-weight: normal;
  color: var(--tips_text);
}
.product-nav > div > a:before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 1px;
  background-color: var(--tips_text);
  transition: all 0.4s;
}
.product-nav a:hover {
  color: var(--colour1);
  text-decoration: underline;
}
.product-nav a.active {
  font-weight: bold;
  color: var(--colour1);
}

.product-content .left .product-filter {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border_colour);
}
.product-filter .summary {
  font-size: 0.875rem;
  line-height: 1.375em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--tips_text)
}
.product-filter .item {
  border-bottom: 1px solid var(--border_colour);
}
.product-filter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  line-height: 3.5em;
  font-weight: bold;
  color: #fff;
  border: none;
  background: none;
}
.product-filter button .icon {
  flex-shrink: 0;
  display: inline-block;
  transition: all 0.4s;
}
.product-filter button:not(.collapsed) .icon {
  transform: rotate(180deg);
}
.product-filter button.filter-reset {
  justify-content: center;
  margin-top: 1.5rem;
  text-align: center;
  line-height: 3em;
  color:var(--title);
  background: var(--grey_bg2);
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.product-filter button.filter-reset:hover {
    color: #fff;
  background: var(--colour1);
}

.product-filter .filter-item > div {
  padding-bottom: 1.25rem;
}
.product-filter label.form-check-label {
  display: flex;
  justify-content: space-between;
  padding-left: 1.5rem;
  margin: 0.125rem 0;
  color: var(--tips_text);
}
.product-filter .item .qty {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--small_text);
}
.product-filter input.form-check-input:checked ~ span,
.product-filter label.form-check-label:hover span {
  color: var(--colour1);
}
.product-filter label.form-check-label:hover span.name {
  text-decoration: underline;
}
.modal.product-modal {
  padding-right: 0 !important;
}
.modal.product-modal .modal-dialog {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  height: 100vh;
  margin: 0;
  border: none;
  border-radius: 0;
}
.modal.product-modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(100%, 0px);
  transform: translate(100%, 0px);
}
.modal.product-modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal.product-modal .modal-content {
  width: 30rem;
  height: 100vh;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
}
.modal.product-modal .modal-content > div {
  width: 100%;
}
.modal.product-modal .modal-header {
  justify-content: flex-end;
  padding: 1rem 5%;
  border: none;
}
.modal.product-modal .close {
  position: static;
  padding: 0.75rem;
  margin: 0;
  background: var(--grey_bg);
  opacity: 1;
  border-radius: 0.5rem;
}
.modal.product-modal .close .icon {
  font-size: 1.5rem;
  color: var(--title);
}
.modal.product-modal .modal-body {
  height: calc(100% - 10rem);
  padding: 0 5%;
  overflow: auto;
}
.modal.product-modal .modal-footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 5%;
  background: #fff;
}
.modal.product-modal .modal-footer button {
  display: block;
  width: 50%;
  line-height: 2.5em;
  font-weight: 600;
  border: none;
  color: #fff;
  background: var(--dark);
  border-radius: 0.25rem;
}
.product-content .right {
  width: calc(100% - 21rem);
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-list li {
  position: relative;
  width: calc(33.33% - 0.375rem);
  border-radius: 0.5rem;
  border: 1px solid var(--border_colour);
  background: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
.product-list li:hover {
  box-shadow: 0 0 1.5rem var(--shadow);
}
.product-list .video-btn {
  position: relative;
  display: block;
}
.product-list .img {
  position: relative;
  z-index: 1;
  padding-bottom: 85%;
  overflow: hidden;
}
.product-list .tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0 0.75em;
  font-size: 0.875rem;
  line-height: 2em;
  color: #fff;
  background: var(--dark);
  border-radius: 0.25rem;
}
.product-list .info {
  padding: 1.25rem;
  border-top: 1px solid var(--border_colour);
}
.product-list .subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1em;
  color: var(--small_text);
}
.product-list .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}

.product-list .star {
  margin-top: 1rem;
  display: inline-block;
  position: relative;
  background: linear-gradient(
    to right,
    orange 0%,
    orange 50%,
    var(--tips_text) 50%,
    var(--tips_text) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  color: transparent;
}
.product-list pre {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  height: 4.5em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list .more {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}

.product-list .more .icon {
  display: inline-block;
  font-size: 0.75rem;
  transition: margin 0.4s;
}
.product-list li:hover .more .icon {
  margin-left: 0.5rem;
}
.btn-more {
  display: inline-block;
  padding: 0 1.5em;
  font-size: 0.875rem;
  line-height: 3em;
  font-weight: bold;
  color: #fff;
  background: var(--dark);
  border: none;
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.norms-nav {
  padding: 0 0.5rem;
  margin-top: 2rem;
}
.norms-nav a {
  position: relative;
  font-weight: 400;
  color: var(--title);
  transition: all 0.4s;
}
.norms-nav a.active {
  font-weight: 600;
}
.norms-nav a:after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  bottom: 0%;
  left: 0%;
  width: 0%;
  height: 0.1875rem;
  background-color: var(--title);
  transition: all 0.4s;
}
.norms-nav a.active:after {
  width: 100%;
}
.norms-content {
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: var(--grey_bg);
}
.norms-content > div {
  padding: 4rem 2.5rem;
}
.norms-content .title {
  margin-bottom: 1.25rem;
}
.norms-content p {
  margin-bottom: 0.5rem;
}
.norms-content p:last-of-type {
  margin-bottom: 0;
}
.specs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
}
.specs ul li {
  padding: 1rem 0;
  width: calc(33.33% - 2.5rem);
  border-bottom: 1px solid var(--border_colour);
  font-weight: normal;
}

.norms-included {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.norms-included li {
  width: 15rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
  transition: all 0.4s;
}
.norms-included li:hover {
  box-shadow: 0 0 1.5rem var(--shadow);
}
.norms-included li a {
  display: block;
  min-height: 100%;
}
.norms-included li .img {
  padding-bottom: 75%;
}
.norms-included li .img img {
  max-width: 80%;
  max-height: 80%;
}
.norms-included li .img .qty {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.875rem;
  text-align: center;
  color: var(--title);
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
}
.norms-included li .info {
  border-top: 1px solid var(--border_colour);
  padding: 1.25rem;
}
.norms-included li .subtitle {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--small_text);
}
.norms-included li .title {
  font-size: 1.125rem;
  transition: all 0.4s;
}
.norms-included li:hover .title {
  color: var(--colour1);
}
.norms-included li .title:hover {
  text-decoration: underline;
}
.norms-included li .more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--title);
  transition: all 0.4s;
}
.norms-included li:hover .more {
  color: var(--colour1);
}
.norms-included li .more .icon {
  font-size: 0.75rem;
}

.product-related {
  margin-top: 2rem;
}
.product-related .swiper-slide {
  width: 19rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
}
.product-related .img {
  position: relative;
  z-index: 1;
  padding-bottom: 85%;
  overflow: hidden;
}
.product-related .tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0 0.75em;
  font-size: 0.875rem;
  line-height: 2em;
  color: #fff;
  background: var(--title);
  border-radius: 0.25rem;
}
.product-related .info {
  padding: 1.25rem;
  border-top: 1px solid var(--border_colour);
}
.product-related .subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1em;
  color: var(--small_text);
}
.product-related .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}

.product-related .star {
  margin-top: 1rem;
  display: inline-block;
  position: relative;
  background: linear-gradient(
    to right,
    orange 0%,
    orange 50%,
    var(--tips_text) 50%,
    var(--tips_text) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  color: transparent;
}
.product-related pre {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  height: 4.5em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-related .more {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--title);
  transition: all 0.4s;
}

.product-related .more .icon {
  display: inline-block;
  font-size: 0.75rem;
  transition: margin 0.4s;
}
.product-related a:hover .more .icon {
  margin-left: 0.5rem;
}
.product-related .swiper-pagination {
  margin-top: 1rem;
}
/**/
.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2rem;
}
.support-list li {
  width: calc(33.33% - 0.75rem);
}
.support-list li a {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  transition: all 0.4s;
}
.support-list li a:hover {
  background: #fff;
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
}
.support-list li img {
  width: 3rem;
  margin-bottom: 1rem;
}
.support-list li .title {
  transition: all 0.4s;
}
.support-list li a:hover .title {
  color: var(--colour1);
}
.support-list li .btn {
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 2.5em;
  font-weight: bold;
  border-radius: 2em;
  color: #fff;
  background: var(--grey_bg2);
  transition: all 0.4s;
}
.support-list li .btn:hover {
  background: var(--colour2);
}
/*产品详情*/

/*产品详情*/
.product-box {
  overflow: visible;
}
.product-box > div {
  display: flex;
  justify-content: space-between;
  padding: 4rem 1rem;
}
.product-box .left {
  width: 54%;
}
.product-box .left > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

#product-img {
  order: 1;
  width: calc(100% - 7rem);
  background: #fff;
  border-radius: 0.5rem;
}

#product-img .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
#product-img .swiper-slide img {
  mix-blend-mode: multiply;
}
#product-img .swiper-button-prev,
#product-img .swiper-button-next {
  z-index: 3;
  top: auto;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: 1.75rem;
  color: var(--title);
  background: none !important;
  opacity: 1 !important;
}
#product-img .swiper-button-prev {
  right: 3.25rem;
}
#product-img .swiper-button-prev:hover,
#product-img .swiper-button-next:hover {
  color: var(--colour1);
}
#product-img .swiper-button-prev.swiper-button-disabled,
#product-img .swiper-button-next.swiper-button-disabled {
  opacity: 0.3 !important;
  color: var(--title);
}
#product-img .swiper-button-prev span,
#product-img .swiper-button-next span {
  font-size: inherit;
}
#product-small-img .swiper-slide {
  border: 1px solid var(--border_colour);
  background: #fff;
  padding: 0.125rem;
}
#product-small-img .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--colour1);
}
#product-small-img .swiper-slide img {
  mix-blend-mode: multiply;
}
#product-small-img {
  position: relative;
  order: 0;
  width: 5rem;
  height: 32.5rem;
}
#product-small-img .swiper-slide {
  border-radius: 0.25rem;
  height: 5rem;
}
.product-box .right {
  width: 40%;
}
.product-box .title {
  margin-bottom: 0;
}
.product-box .star {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    to right,
    orange 0%,
    orange 50%,
    var(--tips_text) 50%,
    var(--tips_text) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  color: transparent;
}
.product-box .right .choose {
  margin-top: 2rem;
}
.product-box .right .choose p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.product-box .right .choose .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  text-align: left;
  line-height: 1em;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
  transition: all 0.4s;
}
.product-box .right .choose .btn:hover {
  border: 1px solid var(--colour1);
}
.product-box .right .choose .btn:hover .title,
.product-box .right .choose .btn:hover .icon {
  color: var(--colour1);
}
.product-box .right .choose .btn:hover {
  border: 1px solid var(--colour1);
}
.product-box .right .choose .btn font {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1em;
  color: var(--text);
}
.choose-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 2rem;
}
.choose-list li {
  width: 100%;
}
.choose-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  color: var(--title);
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
}
.choose-list a .img {
  width: 3rem;
  flex-shrink: 0;
}
.choose-list a.active {
  color: var(--colour1);
  border: 1px solid var(--colour1);
}

.product-box .right .info {
  margin: 1.75rem 0 2.5rem;
  border-radius: 0.5rem;
  font-weight: 400;
}
.product-box .right .info p {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #fff;
}
.product-box .right .text-list {
  margin-top: 2.5rem;
}
.product-box .right .text-list li {
  border-bottom: 1px solid var(--border_colour);
}
.product-box .right .text-list li .text-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: none;
  color: #fff;
}
.product-box .right .text-list li .text-btn span {
  display: inline-block;
  font-weight: bold;
  transition: all 0.4s;
}
.product-box .right .text-list li .text-btn:not(.collapsed) span.icon {
  transform: rotate(180deg);
}
.product-box .right .text-list li .text-content > div {
  margin-bottom: 1.5rem;
}
.product-box .right .text-list li .text-content > div,
.product-box .right .text-list li .text-content > div p {
  font-size: 0.875rem;
  line-height: 1.5em;
  color: var(--tips_text);
}
.product-box .right .text-list li .text-content > div p {
  margin-bottom: 0.5rem;
}
.compatible-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.5rem;
}
.compatible-list li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid var(--border_colour);
}
.compatible-list li .title {
  width: 25%;
  padding: 1rem;
  margin: 0;
}
.compatible-list li .list {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
.compatible-list li .list a {
  display: flex;
  justify-content: space-between;
  margin-top: -1px;
  margin-left: -1px;
  width: 33.33%;
  padding: 1.25rem;
  padding-right: 1rem;
  font-size: 0.9375rem;
  line-height: 1.25em;
  color: var(--title);
  border: 1px solid var(--border_colour);
  background: var(--grey_bg);
  transition: all 0.4s;
}
.compatible-list li .list a:hover {
  color: var(--colour1);
  background: #fff;
}
.product-details table {
  width: 100%;
}

.p-download ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
.p-download ul li {
  width: calc(50% - 0.625rem);
}
.p-download ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.p-download ul li a:hover {
  border: 1px solid var(--colour1);
}
.p-download ul li a .icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--grey_bg);
  border-radius: 50%;
  transition: all 0.4s;
}
.p-download ul li a:hover .icon {
  color: #fff;
  background: var(--colour1);
}
.p-download ul li a font {
  color: var(--title);
  transition: all 0.4s;
}
.p-download ul li a:hover font {
  color: var(--colour1);
  text-decoration: underline;
}
/*视频*/
.video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.video-list li {
  width: calc(33.33% - 1.375rem);
  border-radius: 0.5rem;
  background: var(--dark);
  overflow: hidden;
  transition: all 0.4s;
}
.video-list li:hover {
  background: var(--colour1);
}
.video-list li a {
  display: block;
  border-radius: 0.5rem;
}
.video-list li a.video-btn:before {
  top: 40%;
}
.video-list li a .img {
  position: relative;
}
.video-list li a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.video-list li a .img img.bg {
  z-index: 3;
  opacity: 0;
}
.video-list li:hover a .img img.bg {
  opacity: 1;
}
.video-list li a .info {
  padding: 1.25rem 1.5rem;
}
.video-list li a .info .title {
  font-size: 1.125rem;
  line-height: 1.25em;
  color: #fff;
  transition: all 0.4s;
}
.video-list li a .info small {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125em;
  max-height: 2.25em;
  font-weight: 300;
  color: var(--tips_text);
  transition: all 0.4s;
}
.video-list li a .info small {
  color: #fff;
  opacity: 0.8;
}
/*解决方案*/
.solution-nav {
  position: sticky;
  top: var(--head_height);
  z-index: 100;
  padding: 0.75rem 0;
  background: #000;
}
.solution-nav .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
.solution-nav a {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s;
}
.solution-nav a:hover {
  color: var(--colour1);
}
.solution-nav a.btn {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #fff;
  background: var(--colour1);
}
.solution-nav a.btn:hover {
  color: #fff;
  background: var(--colour2);
}
.info-list {
  width: 100%;
}
.info-list li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.info-list li > div {
  display: flex;
  align-items: center;
  width: 50%;
}
.info-list li .img img {
  width: 100%;
  height: 100%;
}
.info-list li .info {
  padding: 5%;
  color: #fff;
}
.info-list li .info p {
  margin-bottom: 0.5rem;
  color: #fff;
}
.info-list li:nth-of-type(even) .img {
  order: 1;
}
.info-list li:nth-of-type(even) .info {
  order: 0;
}

.info3-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.info3-list li {
  width: calc(33.33% - 1.5rem);
}
.info3-list li .img {
  margin-bottom: 1rem;
}
.info3-list li .title {
  color: #fff;
}
.info3-list li p {
  color: #fff;
}
.gallery-box {
  height: calc(100vh - 3.5rem - var(--head_height));
  background-position: center;
  background-size: cover;
  color: #fff;
}
.gallery-box .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gallery-box .container > div {
  width: 50rem;
  max-width: 90%;
}
.gallery-box .layout-btn {
  margin-top: 2rem;
  font-size: 1.125rem;
}
.solution-join {
  max-width: 60rem;
  margin: auto;
}
.solution-join form {
  width: 80%;
  margin: auto;
}
.solution-join input.input {
  height: 3em;
  line-height: 3em;
  border-radius: 0.5rem;
}
.solution-join label {
  line-height: 1.5em;
}
.solution-join .submit {
  padding: 0 2em;
  line-height: 2.75em;
  color: #fff;
  background: var(--colour1);
  border: none;
  border-radius: 0.5rem;
}

/*社区*/
.img3-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.img3-list li {
  width: calc(33.33% - 1rem);
}
.community-join {
  max-width: 50rem;
  margin: auto;
}
.community-join div.row {
  gap: 1.25rem 0;
}
.community-form input[type="text"],
.community-form input[type="password"],
.community-form select {
  height: 3rem;
  line-height: 3rem;
  color: #fff;
  background-color: var(--dark);
  border: 1px solid var(--text);
  border-radius: 0.5rem;
}
.community-form select {
  background-image: url(../images/arrow-down-white.svg);
}
.community-form label {
  top: 1rem;
  background: var(--dark);
}
.community-form .form-check-label {
  position: relative;
  top: 0 !important;
  padding-left: 2rem;
}
.community-form .form-check-label input {
  position: absolute;
  left: 0;
  top: 0.25rem;
  z-index: 1;
}
.community-form .form-check-label span {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.375em;
  color: var(--tips_text);
}
.community-form .form-check-label a {
  color: #fff;
  text-decoration: underline;
}
.community-form .form-check-label a:hover {
  color: var(--colour1);
}

/*社区列表*/
.community-nav {
  position: sticky;
  z-index: 100;
  top: var(--head_height);
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.community-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.community-nav .title {
  margin: 0;
}
.community-nav .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.community-nav .right > li > a {
  display: block;
  width: 3rem;
  padding: 0.5rem;
  font-size: 0;
  line-height: 0;
  text-align: center;
  color: var(--text);
  background: var(--grey_bg);
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.community-nav .right > li > a span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1em;
  color: inherit;
}
.community-nav .right > li > a span.icon {
  font-size: 1.5rem;
}
.community-nav .right > li:hover > a,
.community-nav .right > li > a.filter-btn:not(.collapsed) {
  color: #fff;
  background: var(--colour1);
}
.community-nav .dropdown-menu {
  left: auto;
  right: -1rem;
  margin: 0;
  border: none;
  box-shadow: 0 0 1rem var(--shadow);
}
.community-nav .dropdown-menu li {
  padding: 0 1rem;
}
.community-nav .dropdown-menu small {
  color: var(--small_text);
}
.community-nav .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 14rem;
  padding: 0.5rem 0;
  justify-content: space-between;
  color: var(--title);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.community-nav .dropdown-menu a:hover,
.community-nav .dropdown-menu a.active {
  color: var(--colour1);
}
.community-nav .dropdown-menu li:last-of-type a {
  border-bottom: none;
}

.community-nav .dropdown-menu a:after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: var(--colour1);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s;
}
.community-nav .dropdown-menu a:hover:after {
  content: "";
  opacity: 0.2;
}
.community-nav .dropdown-menu a.active:after {
  content: "";
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  opacity: 1;
}

.community-filter {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--border_colour);
  background: #fff;
}
.community-filter .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  padding: 3rem 0;
  border-top: 1px solid var(--border_colour);
}
.community-filter .filter-list li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.community-filter .filter-list li .left {
  width: 12rem;
  line-height: 1.25em;
  font-weight: bold;
  color: var(--title);
  position: relative;
}
.community-filter .filter-list li .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 0.75rem;
  width: calc(100% - 12rem);
}
.community-filter .filter-list a.btn {
  font-size: 0.875rem;
  border: 1px solid var(--border_colour);
}
.community-filter .filter-list a.btn.active {
  color: #fff;
  border: 1px solid var(--colour1);
  background: var(--colour1);
}
.community-filter .filter-list li .right form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.community-filter .filter-list li .right .input-box {
  margin-bottom: 0;
}
.community-filter .filter-list li .right select {
  height: 3em;
  line-height: 3em;
  border-radius: 0.5rem;
}
.community-filter .filter-list li .right .input-box label {
  top: 1rem;
}
/*社区列表*/
.community-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.community-list li {
  position: relative;
  width: calc(33.33% - 0.75rem);
}
.community-list li .img {
  border-radius: 0.5rem;
  overflow: hidden;
}
.community-list li .img img {
  transition: all 0.4s;
}
.community-list li:hover .img img {
  transition: all 1.5s;
}
.community-list li .views {
  position: absolute;
  z-index: 1;
  top: 1.125rem;
  left: 1.25rem;
  font-size: 1.125rem;
  color: #fff;
  display: flex;
  gap: 0.375rem;
}
.community-list li .views .qty {
  font-size: 0.9375rem;
  font-weight: 500 !important;
}
.community-list li .tag {
  position: absolute;
  z-index: 1;
  top: 1.125rem;
  right: 1.25rem;
  color: #fff;
  display: flex;
  gap: 0.75rem;
}
.community-list li .tag div {
  padding: 0.5rem 0.75rem;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.community-list li:hover .tag div {
  border: 1px solid var(--colour1);
  background: var(--colour1);
}
.community-list li .info {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.community-list li .avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.community-list li .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.125rem;
  transition: all 0.4s;
}

/*社区详情*/
.community-head {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.community-head .container {
  display: flex;
  justify-content: space-between;
}
.community-head .left {
  display: flex;
  gap: 1rem;
}
.community-head .left a {
  font-size: 1.5rem;
  color: var(--title);
  transition: all 0.4s;
}
.community-head .left a:hover {
  color: var(--colour1);
}
.community-head .left a span {
  font-size: inherit;
  color: inherit;
}
.community-head .right {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--title);
}
.community-head .right .icon {
  font-size: 1.375rem;
}
.community-head .right .qty {
  font-size: 1.125rem;
  font-weight: 500;
}

.single-btn {
  display: inline-block;
}
.single-btn img {
  max-width: 100%;
  max-height: 100vh;
}
.single-btn div {
  font-size: 1.125rem;
  color: var(--title);
  margin-top: 1.5rem;
  transition: all 0.4s;
}
.single-btn:hover div {
  color: var(--colour1);
}
.single-btn small {
  display: block;
  font-size: 0.9375rem;
  color: var(--small_text);
  margin-bottom: 1rem;
}
.story-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.story-box > div {
  width: 100%;
}
.story-box .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem 0;
}
.story-box .summary {
  width: 100%;
  color: var(--small_text);
}
.story-box .left {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
.story-box .left .avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
}
.story-box .left .name {
  font-size: 1.25rem;
}
.story-box .right {
  width: 50%;
}
.story-box .right .details {
  line-height: 1.5em;
  color: var(--small_text);
}
.story-box .right .btn-box .layout-btn > div {
  padding: 0 1.5em;
}
.story-box .backstage {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  padding-top: 2rem;
}
.story-box .backstage > div {
  width: 100%;
}
.story-box .backstage .single-btn img {
  max-height: 23rem;
}
.story-box .details-settings {
  margin-top: 1rem;
}
.story-box .details-settings p,
.story-box .details-settings a {
  margin: 0;
  line-height: 1.75em;
  color: var(--small_text);
}
.story-box .details-settings a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.story-box .details-settings a:hover {
  color: var(--colour1);
}
.back-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--title);
}
.back-list:hover {
  color: var(--colour1);
}
.back-list .icon {
  font-size: 125%;
  font-weight: normal;
}
/*服务*/
.service-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -4rem;
  margin-bottom: 3rem;
}
.service-head li {
  width: 25rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
}
.service-head li a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.service-head li .img {
  flex-shrink: 0;
  width: 6rem;
}
.service-head li .title {
  transition: all 0.4s;
}
.service-head li:hover .title {
  text-decoration: underline;
  color: var(--colour1);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.service-list li {
  width: calc(33.33% - 1rem);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
  transition: all 0.4s;
}
.service-list li:hover {
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1.5rem var(--shadow);
}
.service-list li .img {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.service-list li .info {
  margin-top: 1rem;
}
.service-list li:hover .info .title {
  color: var(--colour1);
  text-decoration: underline;
}
.service-list li .info .summary {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5em;
  height: 3em;
  color: var(--text);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 60rem;
  margin: auto;
}
.recommend-list li {
  width: calc(50% - 0.5rem);
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--grey_bg);
  background: var(--grey_bg);
  transition: all 0.4s;
}
.recommend-list li:hover {
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
  background: #fff;
}
.recommend-list li a {
  display: flex;
  gap: 1rem;
}
.recommend-list li a .icon {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 2rem;
  color: var(--title);
  transition: all 0.4s;
}
.recommend-list li:hover a .icon {
  color: var(--colour1);
}
.recommend-list li a .info {
  width: 100%;
}
.recommend-list li a .title {
  margin-bottom: 0;
  transition: all 0.4s;
}
.recommend-list li:hover a .title {
  color: var(--colour1);
  text-decoration: underline;
}
.recommend-list li a small {
  color: var(--small_text);
}

/*下载*/
.inside-file {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.inside-file li {
  width: calc(25% - 1.125rem);
}
.inside-file li a {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  font-size: 0;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  transition: all 0.4s;
}
.inside-file li a:hover {
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
  background: var(--grey_bg);
}
.inside-file li a .icon {
  width: 2.5rem;
  flex-shrink: 0;
}
.inside-file li .info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.inside-file li .title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.25em;
}
.inside-file li a:hover .title {
  text-decoration: underline;
}
.inside-file li span {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25em;
  color: var(--small_text);
}
/*faq*/
.faq {
  position: relative;
  max-width: 60rem;
  margin: auto;
  border: none;
}

.faq .card-header {
  border-bottom: none;
  font-weight: bold;
  padding: 1rem 1.25rem;
}
.faq ul li {
  border-bottom: 1px solid var(--border_colour);
}
.faq ul li:last-child {
  border-bottom: none;
}
.faq ul li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 2rem 1.25rem 1.25rem;
  font-weight: 600;
  color: var(--title) !important;
  background: none !important;
}
.faq ul li > a .icon {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  transform: rotate(45deg);
  transition: all 0.4s;
}
.faq ul li > a:not(.collapsed) .icon {
  transform: rotate(0deg);
}
.faq ul li .info {
  padding: 0 1.25rem 2rem;
}
.faq ul li .info a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
}
.faq ul li .info a:hover {
  color: var(--colour1);
  text-decoration-color: var(--colour1);
}
/*新闻*/
.news-list.news-line {
  margin-top: 3rem;
  border-top: 1px solid var(--border_colour);
}
.news-list.news-line li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.news-list.news-line li:hover {
  background: var(--grey_bg);
}
.news-list.news-line li a {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}
.news-list.news-line li a .img {
  order: 1;
  flex-shrink: 0;
  width: 15rem;
  padding-bottom: 9rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-list.news-line li a .img img {
  width: 100%;
  height: 100%;
}
.news-list.news-line li a .info {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  order: 0;
  transition: all 0.4s;
}
.news-list.news-line li a:hover .info {
  padding-left: 1.5rem;
}
.news-list.news-line li a .title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--title);
}
.news-list.news-line li a:hover .title {
  color: var(--colour1);
}
.news-list.news-line li a .summary {
  margin-bottom: 1rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.5em;
  height: 3em;
  color: var(--text);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list.news-line li a .bottom {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  font-size: 0.875rem;
  color: var(--small_text);
}
.news-list.news-line li a .tag {
  align-self: flex-end;
}
.news-list.news-column {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.news-list.news-column li {
  width: calc(25% - 1.125rem);
}
.news-list.news-column li a {
  display: block;
  min-height: 100%;
  background: var(--grey_bg);
  border-radius: 1rem;
  overflow: hidden;
}
.news-list.news-column .img {
  padding-bottom: 61.8%;
  overflow: hidden;
}
.news-list.news-column .img img {
  width: 100%;
  height: 100%;
}
.news-list.news-column .info {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem;
}
.news-list.news-column li .title {
  color: var(--title);
  font-size: 1.125rem;
  line-height: 1.5em;
  max-height: 3em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
.news-list.news-column li:hover .title {
  color: var(--colour1);
}
.news-list.news-column li .title:hover {
  text-decoration: underline;
}
.news-list.news-column li .summary {
  display: none;
}
.news-list.news-column li .bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--small_text);
}

.news-list.news-column li .bottom .view {
  display: none;
}
.news-list.news-column li .bottom .tag {
  order: 0;
  padding: 0 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  background: var(--grey_bg2);
}
/*文章列表*/
.article-list {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}
.article-list li a {
  display: flex;
  gap: 0.5rem 1rem;
  padding: 1rem;
  border: 0.5rem;
  transition: all 0.4s;
}
.article-list li a:hover {
  background: var(--grey_bg);
}
.article-list li a .icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1.125em;
  color: var(--title);
}
.article-list li a:hover .icon {
  color: var(--colour1);
}
.article-list li a .title {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--title);
}
.article-list li a:hover .title {
  color: var(--colour1);
  text-decoration: underline;
}
.article-list li a .time {
  padding-left: 2rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.75em;
  font-weight: 300;
  color: var(--small_text);
}
/*文章*/
.article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}

.article .article-head {
  padding: 0 0 2.5rem;
  width: 100%;
}

.article .article-head .title {
  margin: 0 0 1rem;
}

.article .article-head .time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--small_text);
}
.article .article-head .time a {
  color: var(--small_text);
}
.article .article-head .time a:hover {
  color: var(--colour1);
}
.article-body {
  width: 65%;
  line-height: 1.75em;
}

.article-body p {
  line-height: 1.75em;
}
.article-body a:hover {
  color: var(--colour1);
}

.article-body iframe {
  max-width: 100% !important;
}
.article-other {
  width: 28%;
}
.article-other ul {
  margin-top: 1.5rem;
}
.article-other li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.article-other li:first-child {
  border-top: 1px solid var(--border_colour);
}
.article-other .sort {
  display: inline-block;
  padding: 0 1.125em;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 2.25em;
  font-weight: 300;
  border-radius: 2em;
  color: var(--small_text);
  background: #fff;
}
.article-other .title {
  margin-bottom: 0.5em;
  line-height: 1.5em;
  font-weight: 500;
  transition: all 0.4s;
}
.article-other a:hover .title {
  color: var(--colour1);
  text-decoration: underline;
}
.article-other .time {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--small_text);
}

.article-other .social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.article-other .social a span {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 50%;
  color: var(--title);
  background: var(--grey_bg);
  transition: all 0.4s;
}

.article-other .social a:hover span {
  color: #fff;
  background: var(--colour1);
}

.article-page {
  margin-top: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-page .back {
  width: 100%;
  margin: 0 0 0.5rem;
}

.article-page .back a {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.4s;
}

.article-page .back a:hover {
  color: var(--colour1);
}

.article-page .back a span {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.article-page a.left,
.article-page a.right {
  flex-shrink: 1;
  display: inline-block;
  width: 49%;
  padding: 1.5rem;
  color: var(--text);
  background: #fff;
  transition: all 0.4s;
}

.article-page a.left p,
.article-page a.left span,
.article-page a.right p,
.article-page a.right span {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}

.article-page a.left span,
.article-page a.right span {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--colour1);
}

.article-page a.left:hover,
.article-page a.right:hover {
  box-shadow: 0 0 1rem var(--shadow);
  background: var(--colour1);
  transition: all 0.4s;
}

.article-page a.left:hover p,
.article-page a.left:hover span,
.article-page a.right:hover p,
.article-page a.right:hover span {
  color: #fff;
}

/*技术*/

/*联系我们*/
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  padding: 3rem;
  border-radius: 1rem;
  color: #fff;
  background: var(--colour1);
  overflow: hidden;
}
.contact-info p {
  width: calc(33.33% - 2rem);
}
.contact-info p {
  margin: 0;
  color: #fff;
}
.contact-info .icon {
  position: relative;
  padding-left: 2rem;
}
.contact-info .icon:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25em;
  line-height: 1.25em;
}
.contact-info a:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: underline;
}
.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  gap: 1.5rem;
  width: calc(50% - 0.75rem);
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--grey_bg);
}
.contact-list li .img {
  width: 6rem;
  flex-shrink: 0;
}
.contact-list li .img img {
  border-radius: 50%;
}
.contact-list .info {
  width: 100%;
}
.contact-list .info p {
  margin-bottom: 0.5rem;
}
.contact-list .icon {
  position: relative;
  padding-left: 2rem;
}
.contact-list .icon:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25em;
  line-height: 1.25em;
  color: var(--tips_text);
}
#feedback .row {
  gap: 1.5rem 0;
}
#feedback input,
#feedback select,
#feedback textarea {
  border-radius: 0.5rem;
}
#feedback textarea {
  min-height: 15rem;
}
/*加入*/
.join-list {
  padding: 0 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
}

.join-list li a.join-btn {
  position: relative;
  display: block;
  padding: 1.5rem 3rem 1.5rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.join-list li:last-of-type a.join-btn {
  border-bottom: none;
}
.join-list li a.join-btn:before {
  content: "\e711";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  font-family: "iconfont" !important;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.5rem;
  text-align: center;
  font-style: normal;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0%, -50%) rotate(0deg);
  transition: all 0.4s;
}
.join-list li a.join-btn:not(.collapsed):before {
  color: var(--colour1);
  transform: translate(0%, -50%) rotate(45deg);
}
.join-list li a.join-btn .title {
  display: flex;
  line-height: 1.5rem;
  color: var(--colour1);
}
.join-list li a.join-btn .title .icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.375rem;
}
.join-list li a.join-btn .title .h6 {
  margin-bottom: 0;
}
.join-list li a.join-btn .summary {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--small_text);
}
.join-content > div {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border_colour);
}
.join-content p {
  margin-bottom: 0.5em;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: var(--title);
}

/*会员中心*/
.loading {
  width: 32rem;
  max-width: 100%;
  padding: 2rem 3rem 3rem;
  margin: 3rem auto;
  border: 1px solid var(--border_colour);
  border-radius: 0.5rem;
  background: #fff;
}
.loading .logo {
  text-align: center;
}
.loading .logo img {
  height: 3rem;
}
.loading form {
  margin-top: 1.5rem;
}
.loading form .text {
  margin-bottom: 1.5rem;
}
.loading form input[type="text"],
.loading form input[type="password"],
.loading form select {
  height: 3.25em;
  line-height: 3.25em;
  border-radius: 0.5rem;
}
.loading .remember {
  padding-left: 1.5rem;
  font-size: 0.875rem;
}
.loading .remember:hover {
  color: var(--colour1);
}
.loading .forgot {
  font-size: 0.875rem;
}
.loading form .layout-btn {
  width: 100%;
  font-size: 1rem;
}
.layout-btn > div > span {
  justify-content: center;
}
.loading form p {
  font-size: 0.9375rem;
}
.loading form p a {
  font-weight: 400;
  text-decoration: underline;
  color: inherit;
}
.loading form a:hover {
  color: var(--colour1);
  text-decoration: underline;
}
.loading .hr-txt {
  height: 0.5rem;
}
.loading .hr-txt span {
  display: inline-block;
  padding: 0 1rem;
  margin: auto;
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 300;
  color: var(--small_text);
  background: #fff;
  transform: translate(0%, -2.5rem);
}
.account {
  display: flex;
  gap: 1rem;
  max-width: 75rem;
  margin: 5rem auto;
}
.account .account-wap-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1rem 2rem;
  color: #fff;
  border: none;
  background: none;
  transition: all 0.4s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.account .account-wap-btn:not(.show) {
  display: none;
}

.account .account-wap-btn span {
  flex-grow: 1;
  text-align: left;
}
.account .account-wap-btn img,
.account .account-wap-btn font {
  flex-shrink: 0;
}
.account .account-wap-btn img {
  width: 1.375rem;
  flex-shrink: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}

.account .account-nav {
  flex-shrink: 0;
  width: 20rem;
  min-height: 40rem;
  border-radius: 0.5rem;
  background: var(--dark);
}
.account .account-nav .username {
  padding: 4rem 2rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.account .account-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.account .account-nav ul li a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2rem;
  color: #fff;
  opacity: 0.7;
  transition: all 0.4s;
}
.account .account-nav ul li a:hover,
.account .account-nav ul li a.active {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.account .account-nav ul li a.active {
  font-weight: bold;
  border-left: 0.25rem solid #fff;
}

.account .account-nav ul li a img {
  width: 1.375rem;
  flex-shrink: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}

.account .account-content {
  padding: 2rem;
  flex-grow: 1;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0 10rem -2rem var(--shadow);
}
.user-form .row {
  gap: 2rem 0;
}
form.user-form input[type="text"],
form.user-form input[type="password"],
form.user-form select {
  height: 3.25em;
  line-height: 3.25em;
  border-radius: 0.5rem;
}

.user-form input#email {
  padding-right: 8rem;
}
.user-form .update-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0.75rem;
  font-size: 0.875rem;
  color: var(--small_text);
  text-underline-offset: 0.125rem;
  transform: translate(0%, -50%);
}
.user-form .update-btn:hover {
  color: var(--colour1);
}

#update-email .modal-dialog {
  display: flex;
  align-items: center;
  height: 100%;
  margin: auto;
}
#update-email .modal-content {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
}
#update-email button.close {
  position: absolute;
  right: 0rem;
  top: 0rem;
  padding: 0.5rem;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--small_text);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
#update-email button.close:hover {
  color: #fff;
  background: var(--colour1);
}
#update-email button.close span {
  font-size: inherit;
  color: inherit;
}
#update-email form {
  margin-top: 1.5rem;
}
#update-email form input {
  border-radius: 0.5rem;
}
#update-email .text-right {
  margin-top: 2rem;
}

form#change-password {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 25rem;
}
form#change-password > div {
  margin: 0;
  width: 100%;
}
form#change-password input {
  border-radius: 0.5rem;
  height: 3.25rem;
  line-height: 3.25rem;
}

/*其它文章*/
.info-text {
  width: 100%;
  max-width: 60rem;
  padding: 3rem;
  margin: 3rem auto;
  border-radius: 1rem;
  font-size: 1.125rem;
}
.info-text h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
.info-text p {
  font-weight: normal;
  color: var(--title);
}
.info-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 1px;
}