:root {
  --caus-brand: #fdbe28;
  --caus-ink: #151515;
  --caus-muted: #6d6d6d;
  --caus-line: #e8e8e8;
  --caus-page: #f3f3f3;
  --caus-surface: #fff;
  --caus-container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--caus-ink);
  background: var(--caus-page);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  background: skyblue;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  width: min(calc(100% - 40px), var(--caus-container));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px minmax(430px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.site-branding {
  min-width: 0;
}

.custom-logo-link,
.text-logo {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 160px;
  max-height: 42px;
}

.text-logo {
  gap: 9px;
}

.text-logo-mark {
  width: 34px;
  height: 24px;
  border: 7px solid var(--caus-ink);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  transform: rotate(-8deg);
}

.text-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.text-logo-copy strong {
  font-size: 18px;
  letter-spacing: .02em;
}

.text-logo-copy small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: .28em;
}

.primary-navigation {
  min-width: 0;
}

.primary-menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  list-style: none;
  position: relative;
}


.primary-menu::-webkit-scrollbar {
  display: none;
}

.primary-menu li {
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
}

.primary-menu li:hover .submenus{
  display: block;
}

.primary-menu li .submenus{ 
    box-sizing: border-box ; 
    margin: 0 auto ; 
    padding: 0 0 10px 0 ; 
    width: 100% ; 
    height: auto ; 
    text-align: center ; 
    position: absolute;
    z-index: 999999;
    left: 0px;
    top: 85px;
    background-color: skyblue;
    display: none;
}

.primary-menu li .submenus>a{ 
    box-sizing: border-box ; 
    margin: 0 0 ; 
    padding: 0px 10px !important; 
    width: 100% ; 
    min-height: 40px !important;
    height: 40px ; 
    text-align: center ;  
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.primary-menu a {
  min-height: 86px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
}

.primary-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.primary-menu .current-menu-item>a,
.primary-menu .current-menu-ancestor>a,
.primary-menu .current-cat>a,
.primary-menu a[aria-current="page"] {
  background: var(--caus-ink);
  color: var(--caus-brand);
  font-weight: 700;
  text-decoration: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-link,
.account-link {
  width: 46px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .72);
  font-size: 14px;
}

.account-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.search-form {
  position: relative;
  width: 230px;
  height: 42px;
  background: #fff;
}

.search-form label {
  display: block;
  height: 100%;
}

.search-field {
  width: 100%;
  height: 100%;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  outline: 0;
  font-size: 14px;
}

.search-field:focus {
  border-color: var(--caus-ink);
}

.search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #707070;
  stroke-width: 1.8;
}

.main-layout {
  width: min(calc(100% - 40px), var(--caus-container));
  margin: 20px auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: start;
  background: var(--caus-surface);
}

.feed-column {
  min-width: 0;
}

.channel-heading {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--caus-line);
}

.channel-heading span {
  color: var(--caus-muted);
  font-size: 12px;
}

.channel-heading h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.post-list-item {
  min-height: 154px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 44px;
  border-bottom: 1px solid var(--caus-line);
}

.post-list-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-list-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: -.01em;
}

.post-list-title a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-list-meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--caus-muted);
  font-size: 12.5px;
}

.post-list-tags a {
  margin-right: 10px;
}

.post-list-thumbnail,
.post-list-placeholder {
  width: 190px;
  height: 112px;
  align-self: center;
  display: block;
  overflow: hidden;
  background: #ececec;
}

.post-list-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: cover;
  transition: transform .24s ease;
}

.post-list-item:hover .post-list-thumbnail img {
  transform: scale(1.025);
}

.post-list-placeholder {
  display: grid;
  place-items: center;
  color: #888;
  font-size: 12px;
  letter-spacing: .18em;
}

.navigation.pagination {
  margin: 0;
  padding: 26px 20px;
  border-top: 1px solid var(--caus-line);
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a9a9a9;
  background: #fff;
  color: var(--caus-ink);
  font-size: 15px;
  font-weight: 600;
}

.pagination .page-numbers.current {
  border: 2px solid var(--caus-ink);
  background: var(--caus-ink);
  color: #fff;
}

.pagination .prev,
.pagination .next {
  min-width: 132px;
  height: 52px;
  border: 2px solid var(--caus-ink);
  background: var(--caus-brand);
  font-size: 16px;
  font-weight: 700;
}

.pagination .prev:hover,
.pagination .next:hover {
  background: var(--caus-ink);
  color: #fff;
}

.sidebar {
  min-height: 100%;
  padding: 0 22px 40px;
  border-left: 1px solid var(--caus-line);
}

.sidebar-module {
  padding: 24px 0 30px;
}

.sidebar-module+.sidebar-module {
  border-top: 1px solid var(--caus-line);
}

.sidebar-title,
.sidebar-module h2 {
  margin: 0 0 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--caus-line);
  font-size: 18px;
}

.sidebar-module,
.sidebar-module p {
  color: #4e4e4e;
  font-size: 14px;
  line-height: 1.9;
}

.sidebar-module a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--caus-line);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--caus-container));
  min-height: 120px;
  margin: 0 auto;
  padding: 28px 0;
  color: var(--caus-muted);
  font-size: 12.5px;
}

.footer-menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.footer-inner p {
  margin: 18px 0 0;
}

.single-layout {
  width: min(calc(100% - 40px), 1100px);
  grid-template-columns: minmax(0, 760px) 220px;
  justify-content: center;
  gap: 36px;
}

.single-feed-column {
  min-width: 0;
}

.single-layout .singular-content {
  padding: 44px 0 48px;
}

.singular-content h1 {
  margin: 1em 0 0;
  font-size: clamp(26px, 2.45vw, 34px);
  line-height: 1.34;
  letter-spacing: -.012em;
  font-weight: 700;
  font-size: 26px;
}

.single-layout .article-header {
  margin-bottom: 10px;
}

.single-layout .post-list-meta {
  margin-top: 5px;
  padding-top: 0;
}

.entry-content {
  font-size: 17px;
  line-height: 1.95;
}

.entry-content a {
  text-decoration: underline;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.single-post .entry-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content figure,
.entry-content .wp-caption,
.entry-content .wp-block-image {
  max-width: 100% !important;
}

.entry-content p {
  margin: 0 0 ;
}

.single-layout .sidebar-single {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 0;
  padding: 30px 0 40px 26px;
  border-left: 1px solid var(--caus-line);
}

.admin-bar .single-layout .sidebar-single {
  top: 142px;
}

.single-layout .sidebar-promotion-card {
  margin: 0;
  padding: 20px 18px 22px;
  border: 1px solid skyblue;
  background: rgb(206, 230, 240);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
}

.single-layout .sidebar-promotion-card .sidebar-title {
  margin: 0 0 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid skyblue;
  font-size: 16px;
  line-height: 1.35;
}

.sidebar-promotion-content {
  color: #4c4c4c;
  font-size: 14px;
  line-height: 1.8;
}

.sidebar-promotion-content .widget {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.sidebar-promotion-content .widget+.widget {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid skyblue;
}

.sidebar-promotion-content .widget .sidebar-title,
.sidebar-promotion-content .widget h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font-size: 14px;
  line-height: 1.45;
}

.sidebar-promotion-content p {
  margin: 0 0 1em;
}

.sidebar-promotion-content p:last-child {
  margin-bottom: 0;
}

.sidebar-promotion-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sidebar-widget-title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
}

.article-bottom-promotion-area {
  margin-top: 48px;
}

.article-bottom-promotion {
  padding: 28px 8px 30px;
  border-top: 1px solid #bfc3c7;
  border-bottom: 1px solid #bfc3c7;
  color: #333;
}

.article-bottom-promotion .promotion-title {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.4;
}

.article-bottom-promotion p {
  max-width: 600px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
}

.article-bottom-promotion .promotion-cta,
.article-bottom-promotion .wp-block-button__link {
  min-width: 145px;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9a000;
  border-radius: 0;
  background: var(--caus-brand);
  color: var(--caus-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.article-bottom-promotion .promotion-cta:hover,
.article-bottom-promotion .wp-block-button__link:hover {
  background: var(--caus-ink);
  color: #fff;
}

.no-results {
  min-height: 320px;
  padding: 70px 20px;
  text-align: center;
  color: var(--caus-muted);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 145px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .primary-menu a {
    padding-inline: 10px;
  }

  .search-form {
    width: 170px;
  }

  .post-list-item {
    grid-template-columns: minmax(0, 1fr) 176px;
    gap: 34px;
  }

  .post-list-thumbnail,
  .post-list-placeholder {
    width: 176px;
    height: 108px;
  }

  .single-layout {
    grid-template-columns: minmax(0, 720px) 210px;
    gap: 28px;
  }

  .single-layout .sidebar-single {
    padding-left: 26px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .admin-bar .site-header {
    top: 0;
  }

  .header-inner {
    padding-top: 14px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand tools" "nav nav";
    gap: 12px 16px;
  }

  .site-branding {
    grid-area: brand;
  }

  .primary-navigation {
    grid-area: nav;
  }

  .header-tools {
    grid-area: tools;
  }

  .primary-menu {
    justify-content: flex-start;
  }

  .primary-menu a {
    min-height: 51px;
    padding: 0 12px;
  }

  .main-layout {
    grid-template-columns: 1fr;
  }

  .single-layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }

  .sidebar {
    min-height: 0;
    padding: 0 20px 20px;
    border-left: 0;
    border-top: 1px solid var(--caus-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .single-layout .sidebar-single {
    position: static;
    padding: 24px 20px 28px;
    border-left: 0;
    border-top: 1px solid var(--caus-line);
    display: block;
  }

  .sidebar-module+.sidebar-module {
    border-top: 0;
  }
}

@media (max-width: 640px) {

  .header-inner,
  .main-layout,
  .footer-inner {
    width: min(calc(100% - 28px), var(--caus-container));
  }

  .text-logo-copy strong {
    font-size: 15px;
  }

  .language-link {
    display: none;
  }

  .account-link {
    width: 38px;
    height: 38px;
  }

  .search-form {
    width: 40px;
    height: 38px;
    background: transparent;
  }

  .search-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .search-submit {
    width: 40px;
    height: 38px;
  }

  .main-layout {
    margin-top: 14px;
  }

  .channel-heading {
    min-height: 54px;
    padding: 0 10px;
  }

  .channel-heading h1 {
    font-size: 19px;
  }

  .post-list-item {
    min-height: 120px;
    padding: 15px 10px;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 14px;
  }

  .post-list-title {
    font-size: 18px;
    line-height: 1.46;
    font-weight: 700;
  }

  .post-list-meta {
    width: 100%;
    padding-top: 9px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .post-list-thumbnail,
  .post-list-placeholder {
    width: 112px;
    height: 82px;
  }

  .navigation.pagination {
    padding: 22px 10px;
  }

  .pagination .nav-links {
    gap: 8px;
  }

  .pagination .page-numbers {
    min-width: 40px;
    height: 44px;
    padding: 0 10px;
  }

  .pagination .prev,
  .pagination .next {
    min-width: 104px;
    height: 50px;
    font-size: 15px;
  }

  .sidebar {
    padding: 0 10px 10px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sidebar-module+.sidebar-module {
    border-top: 1px solid var(--caus-line);
  }

  .single-layout {
    width: min(calc(100% - 28px), var(--caus-container));
  }

  .single-layout .singular-content {
    padding: 32px 10px 36px;
  }

  .singular-content h1 {
    font-size: 25px;
    line-height: 1.32;
  }

  .entry-content {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-bottom-promotion-area {
    margin-top: 38px;
  }

  .article-bottom-promotion {
    padding: 24px 0 26px;
  }

  .single-layout .sidebar-single {
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}


/* CAUS article blockquote style - scoped to single post content */
.single-post .entry-content blockquote:not(.wp-block-quote) {
  margin: 28px 0 30px;
  padding: 32px 36px;
  border-left: 3px solid #fdbe28;
  background: #f6f6f6;
  color: #222;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
}

.single-post .entry-content blockquote:not(.wp-block-quote) p {
  margin-top: 0;
}

.single-post .entry-content blockquote:not(.wp-block-quote) p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .single-post .entry-content blockquote:not(.wp-block-quote) {
    padding: 20px 22px;
    margin: 24px 0;
  }
}



.gtranslate {
  box-sizing: border-box;
  margin: 0 0;
  padding: 0 0 0 0;
  width: auto;
  height: auto;
  text-align: center;
  position: relative;
}


.addtoany_content {
  clear: both;
  margin: 16px auto
}

.addtoany_header {
  margin: 0 0 16px
}

.addtoany_list {
  display: inline;
  line-height: 16px
}

.a2a_kit a:empty,
.a2a_kit a[class^="a2a_button_"]:has(.a2a_s_undefined) {
  display: none
}

.addtoany_list a,
.widget .addtoany_list a {
  border: 0;
  box-shadow: none;
  display: inline-block;
  font-size: 16px;
  padding: 0 4px;
  vertical-align: middle
}

.addtoany_list a img {
  border: 0;
  display: inline-block;
  opacity: 1;
  overflow: hidden;
  vertical-align: baseline
}

.addtoany_list a span {
  display: inline-block;
  float: none
}

.addtoany_list.a2a_kit_size_32 a {
  font-size: 32px
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span {
  height: 32px;
  line-height: 32px;
  width: 32px
}

.addtoany_list a:not(.addtoany_special_service)>span {
  border-radius: 4px;
  display: inline-block;
  opacity: 1
}

.addtoany_list a .a2a_count {
  position: relative;
  vertical-align: top
}

.site .a2a_kit.addtoany_list a:focus,
.addtoany_list a:hover,
.widget .addtoany_list a:hover {
  background: none;
  border: 0;
  box-shadow: none
}

.addtoany_list a:hover img,
.addtoany_list a:hover span {
  opacity: .7
}

.addtoany_list a.addtoany_special_service:hover img,
.addtoany_list a.addtoany_special_service:hover span {
  opacity: 1
}

.addtoany_special_service {
  display: inline-block;
  vertical-align: middle
}

.addtoany_special_service a,
.addtoany_special_service div,
.addtoany_special_service div.fb_iframe_widget,
.addtoany_special_service iframe,
.addtoany_special_service span {
  margin: 0;
  vertical-align: baseline !important
}

.addtoany_special_service iframe {
  display: inline;
  max-width: none
}

a.addtoany_share.addtoany_no_icon span.a2a_img_text {
  display: none
}

a.addtoany_share img {
  border: 0;
  width: auto;
  height: auto
}

/*------------------- css ---------------------*/



@media screen and (max-width: 750px) {
  #gt_float_wrapper {
    position: fixed;
    top: 13px !important;
    right: 120px !important;
    z-index: 999999;
  }

  .gt_float_switcher .gt-selected .gt-current-lang {
    padding: 3px 3px !important;
    color: #333;
    font-weight: bold;
  }

  .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    position: relative;
    top: 2px;
    display: none !important;
  }

  .nturl {
    font-size: 0;
  }

  /* 但这样图标也会被隐藏，需要单独设置图标大小 */
  .nturl img {
    font-size: initial;
    width: 24px;
    /* 或你需要的尺寸 */
    height: auto;
  }

  .gt_float_switcher .gt_options a {
    display: block;
    text-decoration: none;
    padding: 3px 3px !important;
    color: #444;
    transition: color .4s linear;
  }


}




.mobhead-c {
  box-sizing: border-box;
  width: 100%;
  height: 0px;
  min-height: 0px;
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
}

.mobhead-nav-modalbg.on {
  transform: translateX(0%);
}

.mobhead-nav-modal.on {
  transform: translateX(0%);
}

.mobhead-bar {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 10px;
  border-bottom: solid 1px #eee;
  background: #fff;
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
}

.mobhead-bar-l {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-bar-l>a>.img1 {
  width: auto;
  height: 50px;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  object-fit: cover;
}

.mobhead-bar-l>a {
  margin: 0 0;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.mobhead-bar-r {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-bar-r>.mobhead-icon-nav {
  margin: 0px 15px 0px 0px;
  padding: 0px 0px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.mobhead-bar-r>.mobhead-icon-search {
  margin: 0px 0px;
  padding: 0px 0px;
  font-size: 24px;
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.mobhead-nav-modalbox {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0px 0px;
  padding: 0px 0px;
  overflow: hidden;
}

.mobhead-nav-modalbg {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  background: #000;
  position: fixed;
  z-index: 999991;
  left: 0px;
  top: 0px;
  transform: translateX(-150%);
  transition: all .2s linear 100ms;
  opacity: 0.3;
}

.mobhead-nav-modal {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: fixed;
  z-index: 9999999;
  left: 0px;
  top: 0px;
  overflow: hidden;
  transform: translateX(-150%);
  transition: all .2s linear 100ms;
  opacity: 1;
}

.mobhead-nav-navmob {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-nav-navmob-t {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  border-bottom: solid 1px #ddd;
}

.mobhead-nav-navhead {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 10px;
}

.mobhead-nav-navhead-l {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-nav-navhead-l>.img1 {
  width: auto;
  height: 30px;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  object-fit: cover;
}

.mobhead-nav-navhead-r {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-nav-navhead-r>.label-close {
  margin: 0px 0px;
  padding: 0px 0px;
  font-size: 26px;
  font-weight: normal;
  color: red;
  cursor: pointer;
}

.mobhead-nav-navmob-b {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 20px 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

.mobhead-nav-navtree-c {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
}

.mobhead-nav-navtree {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: 50px;
  margin: 0px 0px;
  padding: 0px 10px;
  border-bottom: solid 1px #eee;
  cursor: pointer;
}

.mobhead-nav-navtree>.label1 {
  padding: 0px 0px;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  color: #666;
}

.mobhead-nav-navtree>.arr-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0px 0px;
  padding: 0px 0px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.mobhead-nav-navtree-childs {
  box-sizing: border-box;
  display: none;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin: 0px auto;
  padding: 10px 0px;
}

.mobhead-nav-navtree-childs-a {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: 40px;
  margin: 0px auto;
  padding: 0px 20px;
}

.mobhead-nav-navtree-childs-a>.label1 {
  padding: 0px 0px;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  color: #666;
}

.mobhead-searchbox {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0px;
  margin: 0px 0px;
  padding: 0px 0px;
  background: skyblue;
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 60px;
  overflow: hidden;
  transition: all .2s linear 100ms;
}

.mobhead-search {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  min-height: 30px;
  margin: 30px 30px;
  padding: 0px 0px;
  border: solid 1px #ddd;
  border-radius: 30px;
  overflow: hidden;
}

.mobhead-search-l {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-search-l>.search-input {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 20px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  color: #666;
  outline: none;
}

.mobhead-search-r {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: auto;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
}

.mobhead-search-r>.button-search {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 30px;
  margin: 0px 0px;
  padding: 0px 0px;
  border: solid 0px #ccc;
  border-radius: 0px;
  background: #ddd;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #666;
  outline: none;
  cursor: pointer;
}

/*--------自适应--------*/


.detailbox{
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    padding: 0px 0px;
    text-align: left;
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}


.detailbox p{
    text-align: left;
    font-size: 14px;
    color: #000;
    line-height: 1.8;
}


.detailbox form[name=s2form]{
  margin: 0 0;
  padding: 10px 10px;
}


.detailbox form[name=s2form] p{
  margin: 10px 0px;
}

.detailbox form[name=s2form] label{
  font-size: 20px;
}

.detailbox form[name=s2form] input[type=email]{
  font-size: 20px;
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  outline: none;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  border: solid 1px #999;
  padding: 0px 10px;
}


.detailbox form[name=s2form] input[type=submit]:nth-child(1){
  font-size: 20px;
  width: 100%;
  max-width: 150px;
  margin: 10px 0;
  outline: none;
  height: 50px;
  line-height: 50px;
  outline: none;
  background-color: skyblue;
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.detailbox form[name=s2form] input[type=submit]:nth-child(2){
  font-size: 20px;
  width: 100%;
  max-width: 150px;
  margin: 10px 0;
  outline: none;
  height: 50px;
  line-height: 50px;
  outline: none;
  background-color: #ccc;
  color: #000;
  border: none;
  border-radius: 10px;
  margin-left: 20px;
  cursor: pointer;
}