.main-wrapper {
  padding: 104px 0 48px;
  min-height: calc(100% - 237px);
}

.section {
  width: 1200px;
  margin: 0 auto;
}

a[class*="color-text-primary"]:hover,
a[class*="color-text-regular"]:hover {
  color: var(--color-primary);
}

.wrap {
  display: block;
  word-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.wrap2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.wrap3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* 面包屑 */
.bread-crumb {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 20px;
  font-size: 14px;
  color: #6e6e6e;
}

.bread-crumb a {
  text-decoration: none;
}

.bread-crumb a:hover {
  color: var(--color-primary);
}

.bread-crumb .iconpark-icon {
  color: #8c8c8c;
}

/* 头部 */
.header {
  position: fixed;
  z-index: 11;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(7.5px);
  width: 100%;
  height: 80px;
  transition: height 0.3s;
}

.header.transparent {
  background-color: transparent;
}

.header.shrink {
  height: 64px;
  background-color: rgba(255, 255, 255, 0.9);
}

.header.shrink .logo {
  width: auto;
  height: 25px;
}

.header.shrink .login-btn {
  width: 95px;
  height: 32px;
  line-height: 32px;
}

.header.shrink .get-started-btn {
  height: 32px;
  line-height: 32px;
}

.header .section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

.header .logo {
  margin: 0 3px;
  width: auto;
  height: 40px;
  background-size: contain;
  transition: all 0.3s;
}

.header .nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 36px;
}

.header .nav-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.header .nav-menu-item:hover .nav-sub-menu-container {
  display: block;
}

.header .nav-menu-item:hover .nav-link-text:after,
.header .nav-link.is-active .nav-link-text:after {
  opacity: 1;
}

.header .nav-menu-item-inner {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.header .nav-menu-item-inner .nav-link {
  display: block;
  height: 100%;
  line-height: 36px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.header .nav-menu-item-inner .nav-link-text {
  position: relative;
  display: flex;
  align-items: center;
}

.header .nav-menu-item-inner .nav-link-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
  transition: opacity 0.25s;
}

.header .nav-menu-item-inner .iconpark-down {
  margin-left: 4px;
  width: 16px;
  height: 16px;
}

.header .nav-sub-menu-container {
  display: none;
  position: absolute;
  top: 36px;
  padding-top: 7px;
  margin-left: -26px;
}

.header .sub-menu-wrapper {
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.09),
    0px 0px 6px 0px rgba(0, 0, 0, 0.03), 0px 0px 2px 0px rgba(0, 0, 0, 0.01);
}

.header .sub-menu-item-box {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  min-width: 150px;
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 16px;
  transition: all 0.15s;
}

.header .sub-menu-item-box:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.header .login-btn {
  margin-left: 24px;
  width: 103px;
  height: 36px;
  line-height: 36px;
  background: var(--color-primary);
  border-radius: 4px;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.header .login-btn:hover {
  opacity: 0.8;
}

.header .header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header .user-info {
  display: flex;
  align-items: center;
}

.header .user-card {
  position: relative;
  margin-left: 24px;
  display: flex;
  align-items: center;
}

.header .user-card .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.header .user-card .account {
  margin-left: 8px;
  font-weight: 500;
  color: #333333;
}

.header .user-card .iconpark-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  color: var(--color-text-placeholder);
}

.header .user-card:hover .log-out-box {
  display: block;
}

.header .user-card .log-out-box {
  display: none;
  position: absolute;
  width: 100%;
  top: 32px;
  padding-top: 14px;
}

.header .user-card .log-out {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  background: var(--color-white);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.header .user-card .log-out span:hover {
  color: var(--color-primary);
  cursor: pointer;
}

.header .get-started-btn {
  margin-left: 24px;
  width: 90px;
  height: 36px;
  line-height: 36px;
  background: var(--color-primary);
  border-radius: 4px;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.header .get-started-btn:hover {
  opacity: 0.8;
}

.header .app-box {
  position: relative;
}

.header .mobile-app-btn {
  cursor: pointer;
  width: 134px;
  height: 36px;
  line-height: 34px;
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid var(--color-border-base);
  color: var(--color-text-regular);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .mobile-app-btn .iconpark-icon {
  margin-right: 4px;
  width: 14px;
  height: 14px;
}

.header .app-box:hover .mobile-app-btn {
  background-color: var(--color-primary-9);
  border: 1px solid var(--color-primary-6);
  color: var(--color-primary);
}

.header .app-box:hover .mobile-app-box {
  display: block;
}

.header .app-box .mobile-app-box {
  display: none;
  position: absolute;
  top: 32px;
  right: -73px;
  padding-top: 21px;

}

.header .app-box .mobile-app-box .mobile-app {
  position: relative;
  width: 520px;
  height: 294px;
  padding: 32px 48px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.09), 0px 0px 6px 0px rgba(0, 0, 0, 0.03), 0px 0px 2px 0px rgba(0, 0, 0, 0.01);
  display: flex;
}

.header .app-box .mobile-app-box .mobile-app::after {
  content: '';
  position: absolute;
  top: -9px;
  right: 130px;
  width: 0;
  height: 0;
  border-bottom: 9px solid var(--color-white);
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}

.header .app-box .mobile-app-box .mobile-app-item {
  font-family: "PingFang SC";
  flex: 1;
  color: var(--color-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
}

.header .app-box .mobile-app-box .mobile-app-item:first-child {
  margin-right: 48px;
}

.header .app-box .mobile-app-item .mobile-app-qrcode {
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #F3F3F3;
  background: #FBFBFB;
  width: 140px;
  height: 140px;
  padding: 24px;
}

/* 底部 */
.footer .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eeeeee;
  height: 84px;
}

.footer .logo-footer {
  width: auto;
  height: 27px;
  background-size: contain;
}

.footer .copyright {
  color: #999;
}

.footer .beian-link {
  color: inherit;
  text-decoration: none;
}

.footer .beian-link:hover {
  color: var(--color-primary);
}

/* 客服 */
.contact-service {
  position: fixed;
  z-index: 1;
  right: 24px;
  bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.03), 0px 3px 14px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  cursor: pointer;
}

.contact-service:hover .iconpark-icon {
  color: var(--color-primary);
}

.contact-service:hover .wechat-box {
  display: flex;
}

.contact-service .iconpark-icon {
  width: 24px;
  height: 24px;
  color: #999;
}

.contact-service .wechat-box {
  display: none;
  position: absolute;
  right: 72px;
  bottom: 0;
  width: 204px;
  height: 233px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.01), 0px 0px 6px rgba(0, 0, 0, 0.03),
    0px 3px 16px rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-service .wechat-box .wechat {
  width: 156px;
  height: 156px;
  border-radius: 8px;
}

.contact-service .wechat-box .text {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1;
}

/* 弹窗公共样式 */
.dialog-wrapper {
  display: block;
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  background: rgba(0, 0, 0, 0.8);
}

.dialog-wrapper .iconpark-icon-close {
  width: 16px;
  height: 16px;
  color: var(--color-text-placeholder);
  cursor: pointer;
}

.dialog-wrapper .iconpark-icon-close:hover {
  color: var(--color-primary);
}

.dialog-wrapper .agreement-policy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  line-height: 1;
  text-align: center;
  background: #f8f8f8;
  border-top: 1px solid #eee;
  color: #666;
}

.dialog-wrapper .agreement-policy .link {
  display: inline-block;
  margin: 0 4px;
  color: var(--color-primary);
  text-decoration: none;
}

.dialog-wrapper .binding-title {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 24px;
}

.dialog-wrapper .form-wrapper {
  flex: 1;
  width: 340px;
  margin: 0 auto;
}

.dialog-wrapper .form-item {
  margin-top: 24px;
}

.dialog-wrapper .form-item .login-password .iconpark-icon {
  position: absolute;
  top: 17px;
  right: 16px;
  width: 16px;
  height: 16px;
  color: #999;
  cursor: pointer;
}

.dialog-wrapper .form-item .login-password .iconpark-icon:hover {
  color: var(--color-primary);
}

.dialog-wrapper .form-item label {
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.dialog-wrapper .form-item .input {
  box-sizing: border-box;
  padding: 0 16px;
  width: 100%;
  height: 50px;
  background: #f4f5f6;
  border-radius: 8px;
  border: none;
  color: #666;
  font-weight: 500;
}

.dialog-wrapper .form-item .input:focus-visible {
  outline: 1px solid var(--color-primary);
}

.dialog-wrapper .form-item .input:focus {
  background: #fff;
}

/* Chrome, Firefox, Opera, Safari 10.1+ */
.dialog-wrapper .form-item .input::placeholder {
  color: var(--color-text-placeholder);
  opacity: 1;
  /* Firefox */
}

/* Internet Explorer 10-11 */
.dialog-wrapper .form-item .input:-ms-input-placeholder {
  color: var(--color-text-placeholder);
}

/* Microsoft Edge */
.dialog-wrapper .form-item .input::-ms-input-placeholder {
  color: var(--color-text-placeholder);
}

.dialog-wrapper .form-item .input.verification-code {
  padding-right: 100px;
}

.dialog-wrapper .form-item .send-code {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 16px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.dialog-wrapper .form-item .send-code input[type="button"] {
  border: none;
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

.dialog-wrapper .form-item .send-code input[type="button"].is-send {
  color: #999;
  cursor: auto;
}

.dialog-wrapper .error-text {
  display: flex;
  align-items: center;
  margin-top: 12px;
  line-height: 1;
  height: 14px;
  color: #f25050;
}

.dialog-wrapper .error-text .iconpark-icon-error {
  margin-right: 10px;
  width: 14px;
  height: 14px;
}

.dialog-wrapper .aliyun-captcha {
  margin-top: 12px;
}

/* 登录/注册 */
.login-dialog-wrapper .login-dialog {
  box-sizing: border-box;
  margin: 10vh auto 50px;
  width: 452px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0px 0px 2px rgba(51, 84, 255, 0.04),
    0px 4px 16px rgba(25, 84, 237, 0.04);
  border-radius: 30px;
}

.login-dialog .login-dialog-header {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 35px;
  height: 70px;
  border-bottom: 1px solid #eee;
}

.login-dialog .login-register-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.login-dialog .logo {
  display: block;
  width: 103px;
  height: 25px;
}

.login-dialog .tab {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.login-dialog .tab li {
  margin: 0 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #333;
  padding-bottom: 14px;
}

.login-dialog .tab li.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.login-dialog .forget-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  line-height: 1;
}

.login-dialog .remember-account {
  display: flex;
  align-items: center;
}

.login-dialog .remember-account input[type="checkbox"] {
  margin-right: 10px;
  background: var(--color-primary);
  width: 14px;
  height: 14px;
}

.login-dialog .remember-account input[type="checkbox"]:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 12px;
  color: #fff;
  border: 1px solid #ddd;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
  font-weight: 400;
  font-size: 13px;
}

.login-dialog .remember-account input[type="checkbox"]:checked:after {
  content: "\2713";
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.login-dialog .login {
  display: block;
  color: #fff;
  margin-top: 32px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: var(--color-primary);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}

.login-dialog .login.is-space {
  letter-spacing: 20px;
  text-indent: 20px;
}

.login-dialog .login:hover {
  opacity: 0.8;
}

.login-dialog .form-desc {
  margin: 24px 0;
  line-height: 1;
  text-align: center;
}

.login-dialog .wechat-login-btn-box {
  display: flex;
  justify-content: center;
  margin: 24px 0 32px;
}

.login-dialog .wechat-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
}

.login-dialog .wechat-login-btn:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/image-wechat-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.login-dialog .forget-password-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.login-dialog .back-login {
  margin-top: 16px;
  margin-left: 36px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
  color: #333333;
  cursor: pointer;
}

.login-dialog .back-login:hover,
.login-dialog .back-login:hover .iconpark-icon {
  color: var(--color-primary);
}

.login-dialog .back-login .iconpark-icon {
  margin-right: 4px;
  width: 16px;
  height: 16px;
  color: #999;
}

.forget-password-wrapper .tab {
  margin-top: 16px;
}

.login-dialog .set-password-success-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 128px 56px 215px;
  text-align: center;
}

.set-password-success-wrapper .iconpark-icon-success {
  width: 64px;
  height: 64px;
  color: #4ab017;
}

.set-password-success-wrapper .success-tips {
  margin-top: 24px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #333;
}

.set-password-success-wrapper .success-desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 12px;
  color: #999;
}

.wechat-login-wrapper .wechat-qrcode {
  display: inline-block;
  margin-top: 24px;
  font-size: 0;
  padding: 16px;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
}

.wechat-login-wrapper .wechat-login-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 56px;
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.wechat-login-wrapper .wechat-login-desc:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/image-wechat-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 绑定微信 */
.binding-wechat-dialog-wrapper .binding-wechat-dialog {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10vh auto 50px;
  padding: 24px;
  width: 500px;
  background: var(--color-white);
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.06),
    0px 0px 4px 0px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  text-align: center;
}

.binding-wechat-dialog .iconpark-icon-close {
  position: absolute;
  right: 0;
  top: 0;
}

.binding-wechat-dialog .binding-wechat-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.binding-wechat-dialog .button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.binding-wechat-dialog .button-group .el-button {
  width: 166px;
}

/* 绑定账号 */
.binding-account-dialog-wrapper .binding-account-dialog {
  box-sizing: border-box;
  margin: 10vh auto 50px;
  width: 452px;
  padding: 40px 56px 56px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.06),
    0px 0px 4px 0px rgba(0, 0, 0, 0.03);
  border-radius: 30px;
}

.binding-account-dialog .iconpark-icon-close {
  position: absolute;
  top: -16px;
  right: -32px;
}

.binding-account-dialog .binding-account-button {
  margin-top: 32px;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  letter-spacing: 20px;
  text-indent: 20px;
}

/* 创建账号 */
.create-account-dialog-wrapper .create-account-dialog {
  box-sizing: border-box;
  margin: 10vh auto 50px;
  width: 452px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0px 4px 16px 0px rgba(25, 84, 237, 0.04),
    0px 0px 2px 0px rgba(51, 84, 255, 0.04);
  border-radius: 30px;
}

.create-account-dialog .binding-create-dialog-header {
  padding: 40px 56px 0;
}

.create-account-dialog .iconpark-icon-close {
  position: absolute;
  top: 24px;
  right: 24px;
}

.create-account-dialog .binding-account-button {
  margin: 32px 0;
  padding: 16px 20px;
  width: 100%;
  font-size: 16px;
  letter-spacing: 20px;
  text-indent: 20px;
}

.nc-container .nc_scale .nc_ok,
.nc-container .nc_scale .nc_bg {
  background: #6CA3FF;
}

.nc-container .nc_scale .btn_ok {
  color: #6CA3FF;
}

.fade {
  opacity: 0;
  transition: all 1s;
  transform: translateY(20%);
}

.fade.faded {
  opacity: 1;
  transform: translateY(0%);
}

@keyframes line {
  0% {
    width: 0px;
  }

  100% {
    width: 40px;
  }
}

@keyframes roll-animate-left1 {
  0% {
    left: 0;
  }

  100% {
    left: -1295px;
  }
}

@keyframes roll-animate-left2 {
  0% {
    left: 1295px;
  }

  100% {
    left: 0;
  }
}

@keyframes roll-animate-right1 {
  0% {
    left: -1480px;
  }

  100% {
    left: 0;
  }
}

@keyframes roll-animate-right2 {
  0% {
    left: 0;
  }

  100% {
    left: 1480px;
  }
}

/*分页*/
.pagination {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  overflow: hidden;
}

.pagination a {
  display: inline-block;
  background: #fff;
  padding: 0 14px;
  height: 38px;
  margin: 0 3px;
  line-height: 38px;
  border: 1px solid #ddd;
  color: #666;
}

.pagination p {
  display: inline-block;
  padding: 0 12px;
  height: 38px;
  line-height: 38px;
  border: 1px #ddd solid;
  color: #999;
  background: #fafafa;
  cursor: not-allowed;
}

.pagination a:hover {
  border: 1px solid #307dff;
  background: #307dff;
  color: #fff;
}

.pagination li.active span {
  border: 1px solid #307dff;
  background: #307dff;
  color: #fff;
  display: inline-block;
  padding: 0 14px;
  height: 38px;
  margin: 0 3px;
  line-height: 38px;
}

.pagination li.disabled span {
  display: inline-block;
  padding: 0 12px;
  height: 38px;
  line-height: 38px;
  border: 1px #ddd solid;
  color: #999;
  background: #fafafa;
  cursor: not-allowed;
  margin: 0 3px;
}