.contact1d {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 20px;
}.rhead h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}
.rhead .breadcrumbs {
  margin-bottom: 20px;
}
.rhead nav {
  position: relative;
  margin-bottom: 50px;
}
.rhead nav:after {
  content: '';
  position: absolute;
  left: -50vw;
  right: -50vw;
  bottom: 0;
  height: 1px;
  background: #e5e5e5;
}
.rhead nav:before{
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.rhead .nav {
  position: relative;
  display: flex;
  gap: 40px;
  padding-right: 80px;
  overflow: auto;
}
.rhead .nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.rhead .nav-item {
  flex-shrink: 0;
}
.rhead .nav-link {
  white-space: nowrap;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0 30px;
  transition: color .2s;
}
.rhead .nav-link.active,
.rhead .nav-link:hover {
  color: var(--c1);
}
.rhead .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: transparent;
  z-index: 1;
}
.rhead .nav-link.active:after {
  background: var(--c1);
}
@media (max-width: 1530px) {
  .rhead .nav {
    gap: 30px;
  }
}
@media (max-width: 1060px) {
  .rhead .breadcrumbs {
    margin-bottom: 10px;
  }
  .rhead h1{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .rhead nav {
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }
  .rhead nav:before{
    display: none;
  }
  .rhead .nav {
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .rhead .nav-link {
    padding: 0 0 15px;
  }
}.uishare {
  display: flex;
  align-items: center;
  gap: 20px;
}
.uishare-links {
  display: flex;
  gap: 6px;
}
.uishare-link {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 54px;
  height: 44px;
  width: 54px;
  height: 44px;
  border-radius: 8px;
  background: #F5F5F5;
  overflow: hidden;
  transition: background .2s, color .2s;
}
.uishare-link:hover{
  background: var(--c1);
  color: #fff;
}
.uishare.ui.dropdown{
  display: inline-flex;
}
.uishare._icon .uishare-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.uishare-thumb{
  display: contents;
}
.uishare.ui.dropdown > .uishare-text{
  padding-bottom: 1px;
  border-bottom: 1px dashed;
  transition: border .2s;
}
.uishare.ui.dropdown:hover > .uishare-text{
  border-bottom-color: transparent;
}
.uishare.ui.dropdown .menu{
  margin-top: 12px;
  width: 170px;
  background: #fff;
  padding: 10px 0;
  border-radius: 12px;
  border: 1px solid #E5E5E5 !important;
}
.uishare.ui.dropdown.upward .menu{
  margin-top: 0;
  margin-bottom: 12px;
}
.uishare.ui.dropdown .menu>.item {
  color: rgba(0,0,0,.6);
  font-size: 14px;
  padding: 8px 20px !important;
  font-weight: 400;
}
.uishare.ui.dropdown .menu>.item>img{
  margin: 0 6px 0 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 400px) {
  .uishare {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
}@media (min-width: 1261px) {
  .ppage .wysiwyg {
    display: grid;
    grid-template-columns: 540px 980px;
    justify-content: space-between;
    width: 100%;
  }
  .ppage .wysiwyg > * {
    grid-column: 2;
  }
  .ppage .wysiwyg > h2 {
    grid-row: span 3;
    position: relative;
    grid-column: 1;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
  }
  .ppage .wysiwyg > h2 + * {
    margin-top: 0;
  }
  .ppage .wysiwyg > h2:not(:first-child) {
    margin-top: 110px;
  }
  .ppage .wysiwyg > h2:not(:first-child) + * {
    margin-top: 110px;
  }
  .ppage .wysiwyg > h2:not(:first-child):before {
    content: '';
    position: absolute;
    top: -60px;
    left: -50vw;
    right: -100vw;
    height: 1px;
    background: #e5e5e5;
  }
}
@media (max-width: 1760px) {
  .ppage .wysiwyg {
    grid-template-columns: 520px 880px;
  }
}
@media (max-width: 1530px) {
  .ppage .wysiwyg {
    grid-template-columns: 320px 840px;
  }
}