/* TUTR HEADER FINAL TEST */

#tutrHeaderFinal,
#tutrHeaderFinal * {
  box-sizing: border-box;
}

#tutrHeaderFinal {
  --tutr-blue: #0a5cbc;
  --tutr-black: #111;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

#tutrHeaderFinal a {
  text-decoration: none !important;
}

#tutrHeaderFinal .tutr-pc-header-final {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
}

#tutrHeaderFinal .tutr-pc-bar-final {
  position: relative;
  height: 86px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#tutrHeaderFinal .tutr-logo-final {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
}

#tutrHeaderFinal .tutr-logo-final img {
  display: block;
  width: auto;
  height: 58px;
}

#tutrHeaderFinal .tutr-pc-nav-left-final {
  position: absolute;
  top: 50%;
  right: 50%;
  display: flex;
  gap: 55px;
  align-items: center;
  margin-right: 170px;
  transform: translateY(-50%);
}

#tutrHeaderFinal .tutr-pc-nav-right-final {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 42px;
  align-items: center;
  margin-left: 170px;
  transform: translateY(-50%);
}

#tutrHeaderFinal .tutr-pc-nav-left-final > a,
#tutrHeaderFinal .tutr-pc-nav-right-final > a,
#tutrHeaderFinal .tutr-nav-item-final > a {
  position: relative;
  color: #111 !important;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

#tutrHeaderFinal .tutr-pc-nav-left-final > a::after,
#tutrHeaderFinal .tutr-pc-nav-right-final > a::after,
#tutrHeaderFinal .tutr-nav-item-final > a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--tutr-blue);
  transition: width 0.3s ease;
}

#tutrHeaderFinal .tutr-pc-nav-left-final > a:hover::after,
#tutrHeaderFinal .tutr-pc-nav-right-final > a:hover::after,
#tutrHeaderFinal .tutr-nav-item-final > a:hover::after {
  width: 100%;
}

#tutrHeaderFinal .tutr-nav-item-final {
  position: relative;
  display: flex;
  align-items: center;
  height: 86px;
}

#tutrHeaderFinal .tutr-dropdown-final {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 200px;
  padding: 22px 18px;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(-50%) translateY(15px);
  transition: 0.3s ease;
}

#tutrHeaderFinal .tutr-nav-item-final:hover .tutr-dropdown-final {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#tutrHeaderFinal .tutr-dropdown-final a {
  display: block;
  padding: 11px 0;
  color: #333 !important;
  font-size: 15px;
  text-align: center;
}

#tutrHeaderFinal .tutr-dropdown-final a:hover {
  color: var(--tutr-blue) !important;
}

#tutrHeaderFinal .tutr-pc-tools-final {
  display: flex;
  gap: 12px;
  align-items: center;
}

#tutrHeaderFinal .tutr-pc-tool-wrap-final {
  position: relative;
}

#tutrHeaderFinal .tutr-pc-tool-final {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  color: transparent !important;
  cursor: pointer !important;
  background-color: rgba(255, 255, 255, 0.54) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px 20px !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 0 !important;
}

#tutrHeaderFinal .tutr-pc-lang-final {
  background-image: url("https://dgtutr.cn/wp-content/uploads/2026/07/Language.png") !important;
}

#tutrHeaderFinal .tutr-pc-search-final {
  background-image: url("https://dgtutr.cn/wp-content/uploads/2026/07/Search.png") !important;
}

#tutrHeaderFinal .tutr-pc-tool-final:hover {
  opacity: 0.85;
}

#tutrHeaderFinal .tutr-pc-language-menu-final,
#tutrHeaderFinal .tutr-mobile-language-final {
  padding: 10px;
}

#tutrHeaderFinal .tutr-pc-language-menu-final a,
#tutrHeaderFinal .tutr-mobile-language-final a {
  position: relative;
  display: block;
  padding: 11px 34px 11px 14px;
  color: #222 !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

#tutrHeaderFinal .tutr-pc-language-menu-final a:hover,
#tutrHeaderFinal .tutr-mobile-language-final a:hover {
  color: var(--tutr-blue) !important;
  background: #f4f7fb;
}

#tutrHeaderFinal .tutr-language-current-final {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  background: var(--tutr-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

#tutrHeaderFinal .tutr-language-empty-final {
  display: block;
  padding: 12px;
  color: #666;
  font-size: 14px;
}

#tutrHeaderFinal .tutr-pc-language-menu-final {
  position: absolute;
  top: 50px;
  right: 0;
  width: 210px;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.24s ease;
}

#tutrHeaderFinal .tutr-pc-language-menu-final.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#tutrHeaderFinal .tutr-pc-search-panel-final {
  position: fixed;
  top: 86px;
  right: 0;
  width: min(520px, 100vw);
  padding: 28px 26px 30px;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border-radius: 0 0 0 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.26s ease;
}

#tutrHeaderFinal .tutr-pc-search-panel-final.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#tutrHeaderFinal .tutr-pc-search-title-final {
  margin-bottom: 18px;
  color: #111;
  font-size: 28px;
  font-weight: 900;
}

#tutrHeaderFinal .tutr-pc-search-form-final {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
}

#tutrHeaderFinal .tutr-pc-search-form-final input {
  flex: 1;
  min-width: 0;
  height: 44px;
  color: #111;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

#tutrHeaderFinal .tutr-pc-search-form-final button,
#tutrHeaderFinal .tutr-mobile-search-form-final button {
  padding: 0;
  color: var(--tutr-blue);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-weight: 900;
}

#tutrHeaderFinal .tutr-pc-hot-final,
#tutrHeaderFinal .tutr-mobile-hot-final {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

#tutrHeaderFinal .tutr-pc-hot-final a,
#tutrHeaderFinal .tutr-mobile-hot-final a {
  padding: 8px 12px;
  color: #333 !important;
  background: #f4f7fb;
  border-radius: 999px;
  font-size: 14px;
}

#tutrHeaderFinal .tutr-mobile-header-final {
  display: none;
}

@media screen and (max-width: 768px) {
  #tutrHeaderFinal .tutr-pc-header-final {
    display: none !important;
  }

  #tutrHeaderFinal .tutr-mobile-header-final {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 2147483000 !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #tutrHeaderFinal .tutr-mobile-bar-final {
    position: relative !important;
    width: 100% !important;
    height: 66px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #tutrHeaderFinal .tutr-mobile-menu-btn-final {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 30 !important;
    display: block !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    background: transparent !important;
    border: 0 !important;
  }

  #tutrHeaderFinal .tutr-mobile-menu-btn-final span {
    display: none !important;
  }

  #tutrHeaderFinal .tutr-mobile-menu-btn-final::before {
    position: absolute !important;
    top: 50% !important;
    left: 8px !important;
    width: 24px !important;
    height: 2px !important;
    content: "" !important;
    background: var(--tutr-black) !important;
    border-radius: 2px !important;
    box-shadow: 0 -7px 0 var(--tutr-black), 0 7px 0 var(--tutr-black) !important;
    transform: translateY(-50%) !important;
  }

  #tutrHeaderFinal .tutr-mobile-logo-final {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 10 !important;
    transform: translate(-50%, -50%) !important;
  }

  #tutrHeaderFinal .tutr-mobile-logo-final img {
    display: block !important;
    width: auto !important;
    max-width: 100px !important;
    height: 36px !important;
  }

  #tutrHeaderFinal .tutr-mobile-tools-final {
    position: absolute !important;
    top: 0 !important;
    right: 10px !important;
    z-index: 20 !important;
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
    height: 66px !important;
  }

  #tutrHeaderFinal .tutr-mobile-icon-final {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: transparent !important;
    cursor: pointer !important;
    background-color: rgba(255, 255, 255, 0.55) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
  }

  #tutrHeaderFinal .tutr-mobile-lang-icon-final {
    background-image: url("https://www.dgtutr.cn/wp-content/uploads/2026/06/Language-Streamline-Rounded-Streamline-Material.png") !important;
  }

  #tutrHeaderFinal .tutr-mobile-search-icon-final {
    background-image: url("https://www.dgtutr.cn/wp-content/uploads/2026/06/Search-Streamline-Ultimate.png") !important;
  }

  #tutrHeaderFinal .tutr-mobile-language-final {
    position: fixed;
    top: 66px;
    right: 10px;
    z-index: 70;
    width: 190px;
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(8px);
    transition: 0.24s ease;
  }

  #tutrHeaderFinal .tutr-mobile-language-final.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  #tutrHeaderFinal .tutr-mobile-overlay-final {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    transition: 0.28s ease;
  }

  #tutrHeaderFinal .tutr-mobile-overlay-final.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  #tutrHeaderFinal .tutr-mobile-drawer-final {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    width: min(88vw, 360px);
    height: 100dvh;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    box-shadow: 18px 0 50px rgba(0, 0, 0, 0.17);
    transform: translateX(-105%);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  #tutrHeaderFinal .tutr-mobile-drawer-final.is-open {
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }

  #tutrHeaderFinal .tutr-mobile-drawer-head-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 18px;
    border-bottom: 1px solid #eee;
  }

  #tutrHeaderFinal .tutr-mobile-drawer-head-final > span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  #tutrHeaderFinal .tutr-mobile-drawer-head-final button {
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--tutr-black);
    background: transparent;
    border: 0;
    font-size: 34px;
  }

  #tutrHeaderFinal .tutr-mobile-drawer-body-final {
    height: calc(100dvh - 70px);
    padding: 0 20px 32px;
    overflow-y: auto;
  }

  #tutrHeaderFinal .tutr-mobile-section-final {
    margin: 0;
    border-bottom: 1px solid #e8e8e8;
  }

  #tutrHeaderFinal .tutr-mobile-section-final summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0;
    color: var(--tutr-black);
    cursor: pointer;
    list-style: none;
    user-select: none;
    font-size: 18px;
    font-weight: 800;
    -webkit-tap-highlight-color: transparent;
  }

  #tutrHeaderFinal .tutr-mobile-section-final summary::-webkit-details-marker {
    display: none;
  }

  #tutrHeaderFinal .tutr-mobile-section-final summary i {
    position: relative;
    width: 18px;
    height: 18px;
  }

  #tutrHeaderFinal .tutr-mobile-section-final summary i::before,
  #tutrHeaderFinal .tutr-mobile-section-final summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    content: "";
    background: var(--tutr-blue);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease;
  }

  #tutrHeaderFinal .tutr-mobile-section-final summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  #tutrHeaderFinal .tutr-mobile-section-final[open] summary i::after {
    transform: translate(-50%, -50%);
  }

  #tutrHeaderFinal .tutr-mobile-submenu-final {
    padding: 0 0 14px;
  }

  #tutrHeaderFinal .tutr-mobile-submenu-final a {
    display: block;
    padding: 10px 0;
    color: #444 !important;
    font-size: 15px;
  }

  #tutrHeaderFinal .tutr-mobile-contact-final {
    margin-top: 22px;
    padding: 20px 18px;
    color: #fff;
    background: #0b1220;
    border-radius: 14px;
  }

  #tutrHeaderFinal .tutr-mobile-contact-final span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 800;
  }

  #tutrHeaderFinal .tutr-mobile-contact-final strong {
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
  }

  #tutrHeaderFinal .tutr-mobile-contact-final a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: #fff !important;
    background: #1265cd;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
  }

  #tutrHeaderFinal .tutr-mobile-search-final {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    transition: 0.28s ease;
  }

  #tutrHeaderFinal .tutr-mobile-search-final.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  #tutrHeaderFinal .tutr-mobile-search-panel-final {
    position: absolute;
    inset: 0 0 auto 0;
    min-height: 42vh;
    padding: 86px 22px 30px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  #tutrHeaderFinal .tutr-mobile-search-final.is-open .tutr-mobile-search-panel-final {
    transform: translateY(0);
  }

  #tutrHeaderFinal .tutr-mobile-search-close-final {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 38px;
  }

  #tutrHeaderFinal .tutr-mobile-search-title-final {
    margin-bottom: 22px;
    color: #111;
    font-size: 30px;
    font-weight: 900;
  }

  #tutrHeaderFinal .tutr-mobile-search-form-final {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--tutr-black);
  }

  #tutrHeaderFinal .tutr-mobile-search-form-final input {
    flex: 1;
    min-width: 0;
    height: 46px;
    color: #111;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 390px) {
  #tutrHeaderFinal .tutr-mobile-menu-btn-final {
    left: 8px !important;
  }

  #tutrHeaderFinal .tutr-mobile-logo-final img {
    max-width: 92px !important;
    height: 34px !important;
  }

  #tutrHeaderFinal .tutr-mobile-tools-final {
    right: 6px !important;
    gap: 4px !important;
  }

  #tutrHeaderFinal .tutr-mobile-icon-final {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    background-size: 17px 17px !important;
  }
}


/* =====================================
   TUTR FOOTER V1
   FINAL BLACK STYLE
===================================== */

.tutr-footer-v1{
    width:100%;
    background:#000;
    color:#fff;
    padding:40px 0 0;
}


/* =====================
   主体
===================== */

.tutr-footer-v1__inner{
    width:90%;
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:
    1.5fr 1fr 1fr 1.1fr;

    gap:45px;
}


/* =====================
   品牌
===================== */

.tutr-footer-v1__logo{
    width:150px;
    margin-bottom:18px;
}

.tutr-footer-v1__brand-title{
    color:#fff !important;
    font-size:20px;
    font-weight:600;
    margin-bottom:12px;
}

.tutr-footer-v1__experience{
    color:#fff !important;
    font-size:14px;
    margin-bottom:15px;
}

.tutr-footer-v1__description{
    color:#fff !important;
    font-size:14px;
    line-height:1.7;
    opacity:.9;
}


/* =====================
   标题
===================== */

.tutr-footer-v1__heading{
    color:#fff !important;
    font-size:19px;
    font-weight:700;
    margin-bottom:22px;
}

.tutr-footer-v1__heading::after{
    content:"";
    display:block;
    width:30px;
    height:2px;
    background:#fff;
    margin-top:10px;
}


/* =====================
   快速导航
===================== */

.tutr-footer-v1__nav{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.tutr-footer-v1__nav a,
.tutr-footer-v1__nav a:visited{
    color:#fff !important;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
}

.tutr-footer-v1__nav a:hover{
    opacity:.75;
}


/* =====================
   服务支持
===================== */

.tutr-footer-v1__service-list{
    margin:0;
    padding:0;
    list-style:none;
}

.tutr-footer-v1__service-list li{
    color:#fff !important;
    font-size:15px;
    margin-bottom:10px;
}


/* =====================
   联系方式
===================== */

.tutr-footer-v1__phone{
    color:#fff !important;
    font-size:25px;
    font-weight:700;
    text-decoration:none;
    display:block;
    margin-bottom:15px;
}

.tutr-footer-v1__contact-list{
    padding:0;
    margin:0;
    list-style:none;
}

.tutr-footer-v1__contact-list li,
.tutr-footer-v1__contact-list a{
    color:#fff !important;
    font-size:14px;
    text-decoration:none;
    margin-bottom:8px;
}


/* =====================
   社交媒体
   无边框版本
===================== */

.tutr-footer-v1__social{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.tutr-footer-v1__social a{
    width:auto;
    height:auto;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
}

.tutr-footer-v1__social img{
    width:22px;
    height:22px;
    display:block;
}

.tutr-footer-v1__social a:hover{
    opacity:.7;
}

.tutr-footer-v1__social a:hover img{
    filter:none;
}


/* =====================
   底部版权
===================== */

.tutr-footer-v1__bottom{
    width:90%;
    max-width:1400px;
    margin:30px auto 0;

    padding:18px 0;

    border-top:1px solid rgba(255,255,255,.25);

    display:flex;
    justify-content:space-between;

    color:#fff !important;
    font-size:13px;
}


/* =====================
   强制覆盖主题链接颜色
===================== */

.tutr-footer-v1 a,
.tutr-footer-v1 a:visited,
.tutr-footer-v1 a:active{
    color:#fff !important;
}


/* =====================
   手机端
===================== */

@media(max-width:768px){

.tutr-footer-v1{
    padding-top:35px;
}

.tutr-footer-v1__inner{
    width:90%;
    grid-template-columns:1fr 1fr;
    gap:30px 20px;
}


/* 品牌全宽 */

.tutr-footer-v1__brand{
    grid-column:1 / 3;
}


/* 快速导航 + 服务支持 */

.tutr-footer-v1__column:nth-child(2),
.tutr-footer-v1__column:nth-child(3){
    grid-column:auto;
}


/* 联系方式 */

.tutr-footer-v1__column:nth-child(4){
    grid-column:1 / 3;
}

.tutr-footer-v1__heading{
    font-size:17px;
}

.tutr-footer-v1__nav a{
    font-size:14px;
}

.tutr-footer-v1__service-list li{
    font-size:14px;
}

.tutr-footer-v1__phone{
    font-size:22px;
}

.tutr-footer-v1__social img{
    width:20px;
    height:20px;
}

.tutr-footer-v1__bottom{
    width:90%;
    flex-direction:column;
    gap:8px;
    margin-top:25px;
}

}

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

}