html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike,  sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

:root {
  --sub-theme-bg-color: #f9f9f9;
  --title-size: 2.6rem;
  --sub-text-size: 1.4rem;
  --sub-text-color: #8b8b8b;
  --text-color: #303133;
  --theme-text-size: 1.4rem;
  --site-title: 1.8rem;
  --theme-color: #2f82ff;
  --spacing-padding: 1.5rem;
  --active-color: #de0029;
  --border-color: #ebeef4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation-duration: 2s;
  animation-name: fadeIn;
}

.fade-in-up {
  animation-duration: 0.5s;
  animation-name: fadeInUp;
}

.wrapper-margin {
  margin: 5rem 3rem;
}

.wrapper-padding {
  padding: 5rem 0 3rem;
}

.m-t-b-2 {
  margin-bottom: 2rem;
}

.common-title {
  font-size: 3rem;
  color: #111;
  line-height: normal;
  text-align: center;
}

.common-subtitle {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
}

.ptadmin-btn {
  --padding: 0.8rem 1.5rem;
  color: #fff;
  padding: var(--padding);
  white-space: nowrap;
  cursor: pointer;
}
.ptadmin-btn[theme=primary] {
  background: var(--theme-color);
}
.ptadmin-btn[type=round] {
  border-radius: 2rem;
}

.horizontal-form-wrapper {
  display: flex;
  box-sizing: border-box;
  border: 0.2rem solid var(--theme-color);
}
@media (max-width: 767.98px) {
  .horizontal-form-wrapper {
    flex-wrap: wrap;
  }
}
.horizontal-form-wrapper .input-group {
  align-items: center;
  position: relative;
}
.horizontal-form-wrapper .input-group::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  background: #ccc;
  height: 2rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .horizontal-form-wrapper .input-group::before {
    width: 0rem;
  }
}
.horizontal-form-wrapper .input-group:first-child::before {
  width: 0;
}
.horizontal-form-wrapper .input-group img {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0 1.5rem;
}
.horizontal-form-wrapper .input-group .form-control {
  height: 6rem;
  padding: 0;
  border: none;
  font-size: 1.6rem;
}
.horizontal-form-wrapper .input-group .form-control:focus {
  box-shadow: none;
}
.horizontal-form-wrapper .input-group .form-control::-moz-placeholder {
  font-size: 1.6rem;
}
.horizontal-form-wrapper .input-group .form-control::placeholder {
  font-size: 1.6rem;
}
.horizontal-form-wrapper .submit-btn {
  width: 18rem;
  background: var(--theme-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .horizontal-form-wrapper .submit-btn {
    height: 6rem;
    width: 100%;
  }
}

.packages-cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.packages-cards .item {
  margin: 0 2rem 2rem 0rem;
  width: calc((100% - 6rem) / 4);
  color: #fff;
  padding-bottom: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
}
.packages-cards .item:nth-child(4n) {
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .packages-cards .item {
    margin-bottom: 2rem;
    width: calc((100% - 2rem) / 2);
  }
  .packages-cards .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .packages-cards .item {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
.packages-cards .item .title {
  font-size: 1.8rem;
  padding: 3.5rem 0;
  text-align: center;
}
.packages-cards .item .desc {
  font-size: 1.4rem;
  padding-bottom: 2.6rem;
  text-align: center;
}
.packages-cards .item .btn {
  margin: 0 auto;
  display: block;
  color: #fff;
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
  width: 11.8rem;
  height: 3.4rem;
  font-size: 1.6rem;
  transition: all 0.4s;
}
.packages-cards .item .btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.25);
}
.packages-cards .item:nth-child(1) {
  background-image: url("../images/home_icon/tc_bg1.png");
}
.packages-cards .item:nth-child(2) {
  background-image: url("../images/home_icon/tc_bg2.png");
}
.packages-cards .item:nth-child(3) {
  background-image: url("../images/home_icon/tc_bg3.png");
}
.packages-cards .item:nth-child(4) {
  background-image: url("../images/home_icon/tc_bg4.png");
}

.advantage-common-cards {
  --color: #f1f3ff;
  display: flex;
  align-items: center;
}
.advantage-common-cards .item {
  margin: 0 2rem 0 0;
  width: calc((100% - 10rem) / 6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  background: var(--color);
  border-radius: 0.5rem;
}
.advantage-common-cards .item:last-child {
  margin-right: 0;
}
.advantage-common-cards .item img {
  width: 5.5rem;
  height: 5.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
}
.advantage-common-cards .item .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.advantage-common-cards .item .desc {
  color: #666;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2rem;
}

.encyclopedia-common-cards {
  --active: var(--active-color);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.encyclopedia-common-cards .item:nth-of-type(1) .header {
  background: #eae2c9;
}
.encyclopedia-common-cards .item:nth-of-type(2) .header {
  background: #d7e3f4;
}
.encyclopedia-common-cards .item:nth-of-type(3) .header {
  background: #ece3ee;
}
.encyclopedia-common-cards .item .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.encyclopedia-common-cards .item .header img {
  margin: 2.5rem 0 1.4rem 0;
  width: 5.4rem;
  height: 5.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.encyclopedia-common-cards .item .header .title {
  font-size: 1.8rem;
  color: #333;
  padding-bottom: 2.8rem;
}
.encyclopedia-common-cards .item .header .title:hover {
  color: var(--active);
}
.encyclopedia-common-cards .item .news-wrapper {
  padding: 2rem;
  border: 0.1rem solid #eee;
  border-top: 0;
  box-sizing: border-box;
}
.encyclopedia-common-cards .item .news-wrapper .news {
  line-height: 3.2rem;
  padding-left: 1.4rem;
  position: relative;
}
.encyclopedia-common-cards .item .news-wrapper .news::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background: #ff6600;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.encyclopedia-common-cards .item .news-wrapper .news a {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.encyclopedia-common-cards .item .news-wrapper .news a:hover {
  color: var(--active);
}

.register-common-introduce {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.register-common-introduce .item {
  display: flex;
  align-items: flex-end;
}
.register-common-introduce .item img {
  width: 4.8rem;
  height: 4.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.register-common-introduce .item .intro {
  color: #333;
  margin-left: 2rem;
}
.register-common-introduce .item .intro .title {
  font-size: 1.8rem;
}
.register-common-introduce .item .intro .subtitle {
  padding-top: 1rem;
  font-size: 1.4rem;
}

.common-form-item {
  display: flex;
  align-items: center;
}
.common-form-item .form-label {
  font-size: 1.6rem;
  color: #333;
  white-space: nowrap;
  margin-right: 1.5rem;
  margin-bottom: 0;
}
.common-form-item .required::after {
  content: "*";
  color: red;
}
.common-form-item .form-control {
  height: 4.2rem;
  border-color: #eee;
  border-radius: 0;
  font-size: 1.4rem;
  padding: 0 2rem;
}
.common-form-item .form-control::-moz-placeholder {
  font-size: 1.4rem;
}
.common-form-item .form-control::placeholder {
  font-size: 1.4rem;
}
.common-form-item .form-control:focus {
  box-shadow: none;
  border-color: #eee;
}

.checkbox-form-item {
  display: flex;
  position: relative;
}
.checkbox-form-item .checkbox {
  margin-right: 1rem;
}
.checkbox-form-item .checkbox:last-child {
  margin-right: 0;
}
.checkbox-form-item .checkbox .form-label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
}
.checkbox-form-item .checkbox .form-label .icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../images/register_company_icon/radio_gray.png);
  margin-right: 1rem;
}
.checkbox-form-item .checkbox .customize-form-check-input {
  position: absolute;
  left: 0;
  opacity: 0;
}
.checkbox-form-item .checkbox .customize-form-check-input:checked + .form-label .icon {
  background-image: url(../images/register_company_icon/radio_color.png);
}

.should-cards .item {
  padding: 2.5rem 0;
  background: #f1f3ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #333;
}
.should-cards .item img {
  width: 5.4rem;
  height: 5.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.should-cards .item .label {
  margin-top: 0.5rem;
}

.common-problem-wrapper {
  background: url(../images//register_company_icon/wd_bg.jpg) no-repeat center #6643ff;
  padding-bottom: 7rem;
}
.common-problem-wrapper .title {
  padding: 5rem 3rem;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
.common-problem-wrapper .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.common-problem-wrapper .content .item {
  padding: 5rem 3.6rem;
  min-height: 16rem;
  background: #fff;
  border-radius: 0.5rem;
}
.common-problem-wrapper .content .item .question,
.common-problem-wrapper .content .item .answer {
  display: flex;
}
.common-problem-wrapper .content .item .question img,
.common-problem-wrapper .content .item .answer img {
  width: 2.6rem;
  height: 2.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1.8rem;
  line-height: 3rem;
}
.common-problem-wrapper .content .item .question .link a,
.common-problem-wrapper .content .item .answer .link a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #333;
}
.common-problem-wrapper .content .item .question {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
}
.common-problem-wrapper .content .item .question .link a {
  -webkit-line-clamp: 1;
  font-size: 1.6rem;
  color: #30c8c6;
}
.common-problem-wrapper .content .item .answer .link a {
  -webkit-line-clamp: 3;
}

.common-provide-wrapper {
  padding-bottom: 6rem;
}
.common-provide-wrapper .common-provide {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
}
.common-provide-wrapper .common-provide .item {
  padding: 3.5rem;
  border: 0.1rem solid #eee;
  transition: all 0.4s;
}
.common-provide-wrapper .common-provide .item:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}
.common-provide-wrapper .common-provide .item:hover a {
  color: var(--active-color);
}
.common-provide-wrapper .common-provide .item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.common-provide-wrapper .common-provide .item a img {
  width: 7rem;
  height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-provide-wrapper .common-provide .item a .label {
  margin-top: 1.5rem;
  color: #333;
  font-size: 1.6rem;
}

.common-advertisement-wrapper {
  height: 42rem;
}
.common-advertisement-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trademark-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.2rem;
}
.trademark-service-cards .cards-item {
  border: 0.1rem solid #e9e9e9;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 2px rgba(187, 186, 207, 0.3);
}
.trademark-service-cards .cards-item img {
  width: 6.6rem;
  height: 6.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2.5rem 0 1.5rem;
}
.trademark-service-cards .cards-item .title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: normal;
  line-height: normal;
}
.trademark-service-cards .cards-item .price {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: normal;
  color: #f30;
  line-height: normal;
}
.trademark-service-cards .cards-item .desc {
  color: #666;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 3rem;
}

.trademark-hot-service-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
.trademark-hot-service-cards .card-item {
  background: #fff;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.5rem;
}
.trademark-hot-service-cards .card-item img {
  width: 4.65rem;
  height: 5rem;
  margin-bottom: 1.5rem;
}
.trademark-hot-service-cards .card-item .title {
  line-height: 4.6rem;
  font-size: 2rem;
  font-weight: normal;
}
.trademark-hot-service-cards .card-item .subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: normal;
}
.trademark-hot-service-cards .card-item .link {
  margin-top: 2.5rem;
  color: #666;
}
.trademark-hot-service-cards .card-item .link a {
  font-size: 2.5rem;
  color: #df1344;
  display: inline-block;
}

.common-patent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.common-patent-cards .card-item {
  border: 0.1rem solid #e8e8e8;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}
.common-patent-cards .card-item:hover::after {
  width: 100%;
}
.common-patent-cards .card-item:hover::before {
  height: 100%;
}
.common-patent-cards .card-item:hover .line::after {
  width: 100%;
}
.common-patent-cards .card-item:hover .line::before {
  height: 100%;
}
.common-patent-cards .card-item::before, .common-patent-cards .card-item::after {
  content: "";
  position: absolute;
  background: #04b398;
  left: 0;
  top: 0;
}
.common-patent-cards .card-item::after {
  height: 0.2rem;
  width: 0%;
  transition: all 0.5s linear;
}
.common-patent-cards .card-item::before {
  height: 0%;
  width: 0.2rem;
  transition: all 0.5s linear;
}
.common-patent-cards .card-item .line {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}
.common-patent-cards .card-item .line::before, .common-patent-cards .card-item .line::after {
  content: "";
  position: absolute;
  background: #04b398;
  right: 0;
  bottom: 0;
}
.common-patent-cards .card-item .line::after {
  height: 0.2rem;
  width: 0%;
  transition: all 0.5s linear;
}
.common-patent-cards .card-item .line::before {
  height: 0%;
  width: 0.2rem;
  transition: all 0.5s linear;
}
.common-patent-cards .card-item img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2.5rem;
}
.common-patent-cards .card-item .title {
  font-size: 2rem;
  line-height: normal;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.common-patent-cards .card-item .reserve {
  flex: 1;
}
.common-patent-cards .card-item .desc {
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.common-patent-cards .card-item .link a {
  display: inline-block;
  height: 3.4rem;
  background: #f8f8f8;
  border: 0.1rem solid #ccc;
  color: #666;
  transition: all 0.4s;
  min-width: 13.2rem;
  line-height: 3.4rem;
  text-align: center;
  border-radius: 13.2rem;
}
.common-patent-cards .card-item .link a:hover {
  color: #fff;
  border-color: #04b398;
  background: #04b398;
}

.common-copyright-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.common-copyright-cards .card-item {
  background: #fff;
  padding: 3rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.common-copyright-cards .card-item .title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: normal;
}
.common-copyright-cards .card-item .subtitle {
  flex: 1;
  font-size: 1.4rem;
  color: #666;
  line-height: 2.2rem;
}
.common-copyright-cards .card-item .link a {
  font-size: 2rem;
  color: #f60;
}

.common-determine-advantage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.common-determine-advantage .item {
  display: flex;
  padding: 2.5rem;
  border-radius: 0.5rem;
}
.common-determine-advantage .item .icon {
  flex-shrink: 0;
}
.common-determine-advantage .item .icon img {
  width: 9.4rem;
  height: 9.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-determine-advantage .item .info {
  flex: 1;
  padding-left: 2.5rem;
}
.common-determine-advantage .item .info .title {
  margin-bottom: 0.4rem;
  line-height: 3.8rem;
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
}
.common-determine-advantage .item .info .introduce {
  line-height: 2.6rem;
  color: rgba(255, 255, 255, 0.8);
}
.common-determine-advantage .item:nth-of-type(1) {
  background: #e45957;
}
.common-determine-advantage .item:nth-of-type(2) {
  background: #ea8f25;
}
.common-determine-advantage .item:nth-of-type(3) {
  background: #844ef3;
}
.common-determine-advantage .item:nth-of-type(4) {
  background: #6f6ef7;
}
.common-determine-advantage .item:nth-of-type(5) {
  background: #2fb9c9;
}
.common-determine-advantage .item:nth-of-type(6) {
  background: #2fc675;
}

.fixed-buttons {
  position: fixed;
  right: 5rem;
  bottom: 10rem;
  z-index: 1;
}
@keyframes playScale {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
@keyframes playOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fixed-buttons .item {
  width: 5rem;
  height: 5rem;
  background: var(--active-color);
  border-radius: 50%;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.fixed-buttons .item:hover .layer-desc {
  display: block;
  animation: playOpacity 0.4s linear;
}
.fixed-buttons .item:last-child {
  background: #f08200;
}
.fixed-buttons .item:last-child .icon {
  width: 1.9rem;
  height: 2.1rem;
}
.fixed-buttons .item:last-child .scale .round {
  background: #f08200;
}
.fixed-buttons .item .icon {
  width: 2.5rem;
  height: 2.5rem;
}
.fixed-buttons .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fixed-buttons .item .layer-desc {
  position: absolute;
  right: calc(100% + 2rem);
  top: 0;
  height: 6rem;
  white-space: nowrap;
  display: none;
  z-index: 9;
}
.fixed-buttons .item .layer-desc .text {
  white-space: nowrap;
  box-shadow: 0.3rem 0.1rem 0.5rem rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  line-height: 6rem;
  font-size: 1.6rem;
  color: #333;
  padding: 0 2rem;
  border-radius: 1rem;
  position: relative;
}
.fixed-buttons .item .layer-desc .text::before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
.fixed-buttons .item .scale .round {
  z-index: -1;
  position: absolute;
  background: var(--active-color);
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: playScale 3s linear infinite;
  transform: scale(0);
}
.fixed-buttons .item .scale .round:nth-of-type(2) {
  animation-delay: 1s;
}
.fixed-buttons .item .scale .round:nth-of-type(3) {
  animation-delay: 2s;
}

.ptadmin-header-wrapper {
  position: fixed;
  width: 100%;
  background: #fff;
  border-bottom: 0.1rem solid var(--border-color);
  box-sizing: border-box;
  height: 8rem;
  z-index: 99;
}
@media (max-width: 1199.98px) {
  .ptadmin-header-wrapper {
    height: 7.5rem;
  }
}
.ptadmin-header-wrapper .ptadmin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left {
  display: flex;
  align-items: center;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .logo img {
  height: 5rem;
}
@media (max-width: 1199.98px) {
  .ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .logo img {
    height: 3.8rem;
  }
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service {
  box-sizing: border-box;
  margin-left: 2.5rem;
  position: relative;
  height: 8rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service {
    display: none;
  }
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .ptadmin-btn {
  background: #8fb4cd;
  border: 0.2rem solid #8fb4cd;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .ptadmin-btn .iconfont {
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .ptadmin-btn .icon-rotate {
  transform: rotate(180deg);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .active {
  background: var(--theme-color);
  border: 0.2rem solid var(--theme-color);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: auto;
  box-sizing: border-box;
  white-space: nowrap;
  display: none;
  z-index: 999;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list > .item {
  display: flex;
  align-items: center;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list > .item .label {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list > .item .label img {
  width: 3.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1.6rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list > .item .values .value {
  display: inline-flex;
  color: var(--text-color);
  padding-left: 2rem;
  margin-left: 2rem;
  font-size: 1.6rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list > .item .values .value:hover {
  transition: all 0.4s;
  color: var(--active-color);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .wrapper-padding {
  padding: 5rem 3rem;
}

.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .wrapper-padding .item .values {
    width: 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-left .more-service .more-list-active {
  display: block;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav {
    display: none;
  }
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .item {
  margin: 0 1.2rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .item a {
  display: inline-block;
  white-space: nowrap;
  height: 8rem;
  line-height: 8rem;
  text-align: center;
  color: var(--text-color);
  transition: all 0.4s;
  position: relative;
  font-size: 1.6rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .item a:hover {
  color: var(--active-color);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .item a:hover::before {
  width: 100%;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .item a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0.2rem;
  background: var(--active-color);
  left: 50%;
  bottom: 0;
  transition: all 0.4s;
  transform: translateX(-50%);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .ptadmin-nav .active a {
  color: var(--active-color);
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .layer-nav-btn {
  cursor: pointer;
  display: none;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .layer-nav-btn .text {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}
.ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .layer-nav-btn .iconfont {
  font-size: var(--title-size);
}
@media (max-width: 1199.98px) {
  .ptadmin-header-wrapper .ptadmin-header .ptadmin-header-right .layer-nav-btn {
    display: flex;
    align-items: center;
  }
}

.layer-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #035cac;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  display: none;
}
.layer-nav .layer-nav-header {
  display: flex;
  justify-content: flex-end;
}
.layer-nav .layer-nav-header .iconfont {
  font-size: var(--title-size);
  color: #fff;
  cursor: pointer;
}
.layer-nav .ptadmin-nav {
  flex: 1;
  overflow-y: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.layer-nav .ptadmin-nav .item a {
  color: #fff;
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.6rem;
}

.ptadmin-footer .ptadmin-footer-wrapper {
  background: #181818;
  padding: 6rem 0 5.6rem 0;
}
.ptadmin-footer .ptadmin-footer-wrapper .container-md {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ptadmin-footer .ptadmin-footer-wrapper .company-information .logo {
  width: 224px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ptadmin-footer .ptadmin-footer-wrapper .company-information .item {
  line-height: 3.4rem;
  color: rgba(255, 255, 255, 0.46);
}
.ptadmin-footer .ptadmin-footer-wrapper .company-information .item a {
  color: inherit;
  transition: all 0.4s;
}
.ptadmin-footer .ptadmin-footer-wrapper .company-information .item a:hover {
  color: #fff;
}
.ptadmin-footer .ptadmin-footer-wrapper .company-information .contact {
  padding-top: 2rem;
}
.ptadmin-footer .ptadmin-footer-wrapper .links {
  color: rgba(255, 255, 255, 0.46);
  padding: 2rem 5rem 0 5rem;
  width: 36rem;
}
@media (max-width: 575.98px) {
  .ptadmin-footer .ptadmin-footer-wrapper .links {
    padding: 2rem 0rem 0 0rem;
  }
}
.ptadmin-footer .ptadmin-footer-wrapper .links .title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4rem;
}
@media (max-width: 575.98px) {
  .ptadmin-footer .ptadmin-footer-wrapper .links .title {
    margin-bottom: 2rem;
  }
}
.ptadmin-footer .ptadmin-footer-wrapper .links ul {
  display: flex;
  flex-wrap: wrap;
}
.ptadmin-footer .ptadmin-footer-wrapper .links ul .item {
  line-height: 2.8rem;
  width: 50%;
}
.ptadmin-footer .ptadmin-footer-wrapper .links ul .item a {
  color: inherit;
}
.ptadmin-footer .ptadmin-footer-wrapper .code-wrapper {
  width: 26rem;
  text-align: center;
}
@media (max-width: 575.98px) {
  .ptadmin-footer .ptadmin-footer-wrapper .code-wrapper {
    width: 15rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .ptadmin-footer .ptadmin-footer-wrapper .code-wrapper {
    width: 36rem;
  }
}
.ptadmin-footer .ptadmin-footer-wrapper .code-wrapper .code {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ptadmin-footer .ptadmin-footer-wrapper .code-wrapper .code .text {
  margin-top: 1rem;
}
.ptadmin-footer .ptadmin-footer-wrapper .code-wrapper .code img {
  width: 10.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.ptadmin-footer .ptadmin-copy-right-wrapper {
  background: #111;
  padding: var(--spacing-padding) 0;
  text-align: center;
  color: var(--sub-text-color);
  font-size: var(--sub-text-size);
  line-height: 2;
}
.ptadmin-footer .ptadmin-copy-right-wrapper a {
  margin-right: 5px;
  color: inherit;
}
.ptadmin-footer .ptadmin-copy-right-wrapper a:hover {
  color: var(--theme-color);
}

@media (max-width: 767.98px) {
  .home-swiper-container {
    --swiper-navigation-size: 2rem;
  }
}
.home-swiper-container .swiper-slide {
  height: 60rem;
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .home-swiper-container .swiper-slide {
    height: 28rem;
  }
}
@media (max-width: 767.98px) {
  .home-swiper-container .swiper-slide {
    height: 15rem;
  }
}
.home-swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-swiper-container .swiper-button-next,
.home-swiper-container .swiper-button-prev {
  width: 7rem;
  height: 7rem;
  color: #fff;
  transition: all 0.4s;
  border-radius: 0.5rem;
}
.home-swiper-container .swiper-button-next:hover,
.home-swiper-container .swiper-button-prev:hover {
  background: #1c4ab0;
}
@media (max-width: 767.98px) {
  .home-swiper-container .swiper-button-next,
  .home-swiper-container .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
}

.home-reservation-service-wrapper .common-title {
  text-align: center;
}
.home-reservation-service-wrapper .rolling-messages {
  padding: 2rem 0;
  border-bottom: 0.1rem dashed #ccc;
}
@media (max-width: 1199.98px) {
  .home-reservation-service-wrapper .rolling-messages {
    display: none;
  }
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper {
  height: 3rem;
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper .swiper-slide .item {
  flex: 1;
  display: flex;
  flex-shrink: 0;
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper .swiper-slide .item .lable {
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 1rem;
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper .swiper-slide .item .values {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.home-reservation-service-wrapper .rolling-messages .rolling-messages-swiper .swiper-slide .item .values .value {
  margin-left: 1.5rem;
}

.home-recommended-packages-wrapper {
  padding-bottom: 4rem;
}
.home-recommended-packages-wrapper .common-title {
  text-align: center;
}

.home-popular-services-wrapper {
    padding-bottom: 6rem;
    background: rgb(239, 245, 254);
}
.home-popular-services-wrapper .wrapper-padding {
    padding: 5rem 0 3rem 0;
}
@media (max-width: 1199.98px) {
    .home-popular-services-wrapper {
        display: none;
    }
}
.home-popular-services-wrapper .common-title {
    text-align: center;
    margin-bottom: 1rem;
}
.home-popular-services-wrapper .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-popular-services-wrapper .tabs .item {
    border-radius: 2rem;
    padding: 0.8rem 3rem;
    background: #fff;
    margin: 0 1rem;
    cursor: pointer;
    font-size: 1.6rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.4s;
}
.home-popular-services-wrapper .tabs .active {
    background: #ff6270;
    color: #fff;
}
.home-popular-services-wrapper .content {
    margin-top: 3.5rem;
}
.home-popular-services-wrapper .content .item {
    display: none;
}
.home-popular-services-wrapper .content .item .card-l {
    --bg: url("");
    border-radius: 2rem 0 0 0;
    width: 20rem;
    background: var(--bg) no-repeat;
    background-size: cover;
    padding: 3.6rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.home-popular-services-wrapper .content .item .card-l[field=fiscalAndTaxServices] {
    background-position: -200px;
}
.home-popular-services-wrapper .content .item .card-l[field=ntellectualProperty] {
    background-position: -600px;
}
.home-popular-services-wrapper .content .item .card-l[field=qualificationAgent] {
    background-position: -1000px;
}
.home-popular-services-wrapper .content .item .card-l .title {
    font-size: 1.8rem;
    color: #fff;
    padding-left: 1rem;
}
.home-popular-services-wrapper .content .item .card-l .subtitle {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    padding-left: 1rem;
    color: #fff;
    opacity: 0.3;
}
.home-popular-services-wrapper .content .item .card-l .more {
    width: 15.6rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.4s;
}
.home-popular-services-wrapper .content .item .card-l .more:hover {
    color: #333;
    background: #fff;
}
.home-popular-services-wrapper .content .item .section {
    flex: 1;
    background: #fff;
    flex-shrink: 0;
    display: grid;
    grid-template-areas: "a b" "a c" "d e";
    grid-template-columns: repeat(2, 1fr); /* 两列，每列占据相等的空间 */
    grid-auto-rows: auto; /* 行高自动调整以适应内容 */
}
.home-popular-services-wrapper .content .item .section .section-item {
    padding: 1.5rem 2.5rem;
    box-sizing: border-box !important;
}
.home-popular-services-wrapper .content .item .section .section-item .btn {
    display: inline-block;
    font-size: 1.2rem;
    border-radius: 2.5rem;
    transition: all 0.4s;
    border: 0.1rem solid #ddd;
    padding: 0.4rem 2rem;
    margin-left: 1rem;
    white-space: nowrap;
}
.home-popular-services-wrapper .content .item .section .section-item .btn:hover {
    color: #fff;
    background: #d90024;
    border-color: #d90024;
}
.home-popular-services-wrapper .content .item .section .section-item .btn:first-child {
    margin-left: 0;
}
.home-popular-services-wrapper .content .item .section .section-item .header {
    position: relative;
    z-index: 2;
}
.home-popular-services-wrapper .content .item .section .section-item .header .title {
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-popular-services-wrapper .content .item .section .section-item .header .subtitle {
    font-size: 1.2rem;
    line-height: 4rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-popular-services-wrapper .content .item .section .section-item .footer {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: end;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(1) {
    --bg: url("");
    grid-area: a;
    box-sizing: border-box;
    padding: 3rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 0.1rem solid #eee;
    position: relative;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(1)::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    width: 14rem;
    height: 14rem;
    background: var(--bg) no-repeat center;
    background-size: cover;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(1) .footer {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(2) {
    grid-area: b;
    border: 0.1rem solid #eee;
    border-top: 0;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(3) {
    grid-area: c;
    border: 0.1rem solid #eee;
    border-top: 0;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(4) {
    grid-area: d;
}
.home-popular-services-wrapper .content .item .section .section-item:nth-of-type(5) {
    border: 0.1rem solid #eee;
    border-top: 0;
    border-bottom: 0;
    grid-area: e;
}
.home-popular-services-wrapper .content .item .card-r {
    background: #fff;
    width: 30rem;
    box-sizing: border-box;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
}
.home-popular-services-wrapper .content .item .card-r .title {
    padding-left: 1rem;
    line-height: 3rem;
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
}
.home-popular-services-wrapper .content .item .card-r .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.6rem;
    width: 0.4rem;
    background: #d90024;
}
.home-popular-services-wrapper .content .item .card-r .list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.home-popular-services-wrapper .content .item .card-r .list .it {
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #eee;
}
.home-popular-services-wrapper .content .item .card-r .list .it .link {
    display: flex;
    color: #333;
    align-items: center;
}
.home-popular-services-wrapper .content .item .card-r .list .it .link:hover .text {
    color: #d90024;
}
.home-popular-services-wrapper .content .item .card-r .list .it .link .text {
    overflow: hidden;
    transition: all 0.4s;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-popular-services-wrapper .content .item .card-r .list .it .link img {
    margin-right: 1rem;
}
.home-popular-services-wrapper .content .active {
    display: flex;
}
.home-popular-services-wrapper .hotline-wrapper {
    --color: #ff6270;
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-popular-services-wrapper .hotline-wrapper .hotline {
    display: flex;
    align-items: center;
    height: 4.8rem;
}
.home-popular-services-wrapper .hotline-wrapper .hotline:hover .box {
    padding: 0 5rem;
}
.home-popular-services-wrapper .hotline-wrapper .hotline .box {
    transition: all 0.4s;
    height: inherit;
    border: 0.15rem solid var(--color);
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}
.home-popular-services-wrapper .hotline-wrapper .hotline .box .icon {
    position: absolute;
    left: -2rem;
    width: 4rem;
    height: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/home_icon/com_tel.png) no-repeat;
    background-size: cover;
}
.home-popular-services-wrapper .hotline-wrapper .hotline .box .label {
    font-size: 1.6rem;
    color: var(--color);
}
.home-popular-services-wrapper .hotline-wrapper .hotline .box .number {
    color: #ff6270;
    padding-left: 2.5rem;
    font-size: 3.2rem;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.home-popular-services-wrapper .hotline-wrapper .hotline .now-hotline {
    width: 15rem;
    background: var(--color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    height: inherit;
    color: #fff;
}
.home-service-advantages-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.home-service-advantages-wrapper .common-title {
  text-align: center;
  margin-bottom: 1rem;
}

.home-advertisement-wrapper {
  margin-top: 3rem;
  height: 12rem;
}
.home-advertisement-wrapper img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-encyclopedia-wrapper {
  padding-bottom: 6rem;
}
.home-encyclopedia-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.home-encyclopedia-wrapper .common-title {
  text-align: center;
  margin-bottom: 1rem;
}

.register-company-banner {
  height: 42rem;
}
.register-company-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.register-company-wrapper {
  padding: 2.5rem 0 2rem 0;
}

.register-company-form-wrapper {
  background: #f4f9fc;
  padding-bottom: 6rem;
}
.register-company-form-wrapper .title-wrapper {
  padding-top: 6rem;
}
.register-company-form-wrapper .title-wrapper .title {
  text-align: center;
  color: #333;
  font-size: 2.8rem;
}
.register-company-form-wrapper .title-wrapper .line {
  position: relative;
  padding-top: 3rem;
}
.register-company-form-wrapper .title-wrapper .line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 5rem;
  height: 0.3rem;
  background: #9098ff;
}
.register-company-form-wrapper .section-wrapper {
  padding-top: 5rem;
  display: flex;
}
.register-company-form-wrapper .section-wrapper .form {
  width: 45rem;
  margin-right: 2rem;
  background: #fff;
  padding-bottom: 5rem;
}
.register-company-form-wrapper .section-wrapper .form .header {
  height: 9rem;
  background-image: url(../images/register_company_icon/table_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 9rem;
  text-align: center;
  font-size: 2rem;
  color: #fff;
}
.register-company-form-wrapper .section-wrapper .form .content {
  padding: 0 3rem 0rem 3rem;
}
.register-company-form-wrapper .section-wrapper .form .content .item {
  padding-top: 3rem;
}
.register-company-form-wrapper .section-wrapper .form .submit {
  width: 29rem;
  margin: 0 auto;
  height: 4.8rem;
  line-height: 4.8rem;
  color: #fff;
  text-align: center;
  background: #ff6c2a;
  display: block;
  margin-top: 3.5rem;
  font-size: 1.6rem;
  box-shadow: 0 0 18px rgba(242, 117, 63, 0.3);
  border-radius: 0.6rem;
}
.register-company-form-wrapper .section-wrapper .section-r {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.register-company-form-wrapper .section-wrapper .section-r .tabs {
  display: flex;
}
.register-company-form-wrapper .section-wrapper .section-r .tabs .item {
  list-style-type: none;
  flex: 1;
  height: 6.3rem;
  line-height: 6.3rem;
  text-align: center;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
}
.register-company-form-wrapper .section-wrapper .section-r .tabs .active {
  background: #6d6bff;
  color: #fff;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content {
  flex: 1;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item {
  list-style-type: none;
  display: none;
  padding: 2rem 5rem 4rem 5rem;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .header .desc {
  line-height: 2.4rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .header .btn {
  display: inline-block;
  padding: 0 4rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #ff6c2a;
  font-size: 1.6rem;
  box-shadow: 0 0 18px rgba(242, 117, 63, 0.3);
  border-radius: 0.6rem;
  margin-top: 2rem;
  color: #fff;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .images {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .images .img img {
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item .images .img .alt {
  margin-top: 1rem;
  text-align: center;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item:first-child .images .img:nth-of-type(2) img {
  width: 100%;
  height: 8.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .item:first-child .images .alt {
  margin: 0.5rem 0;
  text-align: center;
}
.register-company-form-wrapper .section-wrapper .section-r .register-company-form-tabs-content .active {
  display: block;
}

.register-company-hot-service {
  padding-bottom: 6rem;
}
.register-company-hot-service .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.register-company-hot-service .common-title {
  text-align: center;
  margin-bottom: 1rem;
}
.register-company-hot-service .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.register-company-hot-service .content .item {
  box-shadow: 0 0 50px rgba(187, 186, 207, 0.3);
  border-radius: 0.5rem;
  padding: 2.5rem 3.6rem 6rem 3.6rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.register-company-hot-service .content .item .header {
  border-radius: 0.5rem 0.5rem 0 0;
  margin: -2.5rem -3.6rem 0 -3.6rem;
  background: linear-gradient(to right, #00cca8, #61dba3);
}
.register-company-hot-service .content .item .header .images-bg {
  padding-bottom: 2.5rem;
  background: url(../images/register_company_icon/hot_01.png) no-repeat right center;
}
.register-company-hot-service .content .item .header .title {
  font-size: 2.8rem;
  color: #fff;
  padding: 2.5rem 0 1.5rem 3.6rem;
}
.register-company-hot-service .content .item .header .service-box {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  align-items: center;
  padding-left: 3.6rem;
}
.register-company-hot-service .content .item .header .service-box .label {
  margin-top: 0.6rem;
}
.register-company-hot-service .content .item .header .service-box .label:first-child {
  margin-right: 0.6rem;
}
.register-company-hot-service .content .item .header .service-box .tag {
  padding: 0.5rem 1rem;
  color: #00b192;
  margin: 0.6rem 0.6rem 0rem 0;
  border-radius: 1.4rem;
  background: #fff;
}
.register-company-hot-service .content .item:last-child .header {
  background: linear-gradient(to right, #464aff, #9447fa);
}
.register-company-hot-service .content .item:last-child .header .images-bg {
  padding-bottom: 2.5rem;
  background: url(../images/register_company_icon/hot_02.png) no-repeat right center;
}
.register-company-hot-service .content .item:last-child .service-box .label {
  margin-bottom: 1rem;
}
.register-company-hot-service .content .item .details,
.register-company-hot-service .content .item .details-r {
  flex: 1;
}
.register-company-hot-service .content .item .details .tabs {
  display: flex;
  padding: 3.2rem 0;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #e2e2e2;
}
.register-company-hot-service .content .item .details .tabs .tab {
  padding-left: 2.4rem;
  flex: 1;
  font-size: 1.6rem;
  color: #333;
}
.register-company-hot-service .content .item .details .elements {
  display: flex;
  padding-left: 2.4rem;
}
.register-company-hot-service .content .item .details .elements .ele {
  flex: 1;
}
.register-company-hot-service .content .item .details .elements .ele .checkbox-form-item {
  margin-bottom: 2.5rem;
}
.register-company-hot-service .content .item .details .elements .ele .checkbox-form-item .form-label {
  color: #1cd0a6;
}
.register-company-hot-service .content .item .details .elements .ele .icon {
  display: inline-block;
  width: 2.2rem;
  margin-right: 1rem;
  height: 2.2rem;
  background: url(../images/register_company_icon/hot_icon1.png) no-repeat;
}
.register-company-hot-service .content .item .details .elements .ele .checkbox-form-item .customize-form-check-input:checked + .form-label .icon {
  background: url(../images/register_company_icon/hot_icon2.png) no-repeat;
}
.register-company-hot-service .content .item .pt-btn {
  width: 100%;
  text-align: center;
}
.register-company-hot-service .content .item .pt-btn a {
  display: inline-block;
  padding: 0 4rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #00d0a6;
  font-size: 1.6rem;
  box-shadow: 0 0 18px rgba(1, 204, 168, 0.3);
  border-radius: 0.6rem;
  margin-top: 2rem;
  color: #fff;
  margin-top: 0;
  padding: 0;
  width: 26rem;
  margin: 0 auto;
}
.register-company-hot-service .content .item .pt-btn a:hover {
  background: #11c3a3;
}
.register-company-hot-service .content .item:last-child .pt-btn a {
  background: #6c6eff;
  box-shadow: 0 0 18px rgba(108, 110, 255, 0.3);
}
.register-company-hot-service .content .item:last-child .pt-btn a:hover {
  background: #5154f4;
}
.register-company-hot-service .content .item .details-r .icons {
  padding: 6rem 0 3rem 0;
  display: flex;
}
.register-company-hot-service .content .item .details-r .icons .icon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register-company-hot-service .content .item .details-r .icons .icon img {
  width: 6.2rem;
  height: 6.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.register-company-hot-service .content .item .details-r .icons .icon .label {
  font-size: 1.4rem;
  padding-top: 1.6rem;
  color: #666;
}
.register-company-hot-service .content .item .details-r .icons .icon .label:hover {
  color: #6c6eff;
}
.register-company-hot-service .content .item .details-r .links {
  display: flex;
  padding: 0 2.4rem;
  justify-content: center;
  flex-wrap: wrap;
  white-space: nowrap;
}
.register-company-hot-service .content .item .details-r .links .link {
  margin: 0 1.2rem 1.6rem 0;
}
.register-company-hot-service .content .item .details-r .links .link a {
  padding: 0 2rem;
  display: block;
  height: 4rem;
  line-height: 4rem;
  color: #6c6eff;
  border: 0.1rem solid #6d6bff;
  border-radius: 4.8rem;
}

.register-company-vip-wrapper {
  background: url(../images/register_company_icon/vip_banner.png) no-repeat center center;
  background-color: #6643ff;
  height: 37rem;
}
.register-company-vip-wrapper .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: inherit;
}
.register-company-vip-wrapper .content .title {
  font-size: 3.2rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
  color: #e7e3ff;
}
.register-company-vip-wrapper .content .title span {
  color: #3fffd2;
}
.register-company-vip-wrapper .vip-list {
  width: 60%;
  display: flex;
  white-space: nowrap;
  flex-wrap: wrap;
}
.register-company-vip-wrapper .vip-list .item {
  width: 50%;
  display: flex;
  align-items: center;
  padding-bottom: 1.4rem;
  color: #e7e3ff;
  font-size: 1.6rem;
}
.register-company-vip-wrapper .vip-list .item .icon {
  margin-right: 1rem;
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../images/register_company_icon/vip01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.register-company-vip-wrapper .vip-list .item:nth-of-type(2) .icon {
  background-image: url(../images/register_company_icon/vip02.png);
}
.register-company-vip-wrapper .vip-list .item:nth-of-type(3) .icon {
  background-image: url(../images/register_company_icon/vip03.png);
}
.register-company-vip-wrapper .vip-list .item:nth-of-type(4) .icon {
  background-image: url(../images/register_company_icon/vip04.png);
}
.register-company-vip-wrapper .pt-btn {
  display: inline-block;
  padding: 0 4rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #00d0a6;
  font-size: 1.6rem;
  box-shadow: 0 0 18px rgba(242, 117, 63, 0.3);
  border-radius: 0.6rem;
  margin-top: 2rem;
  color: #fff;
  box-shadow: none;
  display: inline-block;
  padding: 0;
  width: 20rem;
  text-align: center;
}

.register-company-should-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.register-company-should-wrapper .common-title {
  text-align: center;
}
.register-company-should-wrapper .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.register-company-should-wrapper .cards-wrapper section .title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.register-company-should-wrapper .cards-wrapper section .should-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.register-company-process-wrapper .advantage-common-cards .item {
  margin: 0 2rem 0 0;
  padding: 2.5rem 0;
  width: calc((100% - 8rem) / 5);
}
.register-company-process-wrapper .advantage-common-cards .item:last-child {
  margin-right: 0;
}
.register-company-process-wrapper .advantage-common-cards .item img {
  width: 6.5rem;
  height: 6.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
}
.register-company-process-wrapper .advantage-common-cards .item .title {
  font-size: 1.5rem;
  font-weight: 800;
}

.register-company-information-wrapper {
  margin-bottom: 5rem;
}
.register-company-information-wrapper .advantage-common-cards .item {
  margin: 0 2rem 0 0;
  padding: 2.5rem 0;
  width: calc((100% - 8rem) / 5);
}
.register-company-information-wrapper .advantage-common-cards .item:last-child {
  margin-right: 0;
}
.register-company-information-wrapper .advantage-common-cards .item img {
  width: 9rem;
  height: 9rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.accounting-hot-service-wrapper {
  padding-bottom: 6rem;
}
.accounting-hot-service-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.accounting-hot-service-wrapper .common-title {
  margin-bottom: 1rem;
  text-align: center;
}
.accounting-hot-service-wrapper .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.accounting-hot-service-wrapper .cards .card-item {
  transition: all 0.4s;
  height: 20.8rem;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.accounting-hot-service-wrapper .cards .card-item:hover {
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
.accounting-hot-service-wrapper .cards .card-item:hover .link {
  transform: translateY(0);
}
.accounting-hot-service-wrapper .cards .card-item:hover .title {
  padding-top: 2.5rem;
}
.accounting-hot-service-wrapper .cards .card-item:nth-of-type(1) {
  background-image: url(../images/accounting_icon/dljz_bg1.jpg);
}
.accounting-hot-service-wrapper .cards .card-item:nth-of-type(2) {
  background-image: url(../images/accounting_icon/dljz_bg2.jpg);
}
.accounting-hot-service-wrapper .cards .card-item:nth-of-type(3) {
  background-image: url(../images/accounting_icon/dljz_bg3.jpg);
}
.accounting-hot-service-wrapper .cards .card-item .title {
  padding-top: 5rem;
  transition: all 0.4s;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.accounting-hot-service-wrapper .cards .card-item .subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}
.accounting-hot-service-wrapper .cards .card-item .price {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.accounting-hot-service-wrapper .cards .card-item .price span {
  font-size: 2.8rem;
}
.accounting-hot-service-wrapper .cards .card-item .link {
  transform: translateY(10rem);
  transition: all 0.4s;
}
@keyframes opacityFrames {
  from {
    width: 0%;
    opacity: 1;
  }
  to {
    width: 100%;
    opacity: 0;
  }
}
.accounting-hot-service-wrapper .cards .card-item .link .pt-btn {
  width: 16rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  border: solid 1px rgba(255, 255, 255, 0.6);
  text-align: center;
  color: #fff;
  border-radius: 5.2rem;
  line-height: 3.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.accounting-hot-service-wrapper .cards .card-item .link .pt-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border-color: #fff;
}
.accounting-hot-service-wrapper .cards .card-item .link .pt-btn::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 100%;
  animation: opacityFrames 1.3s infinite;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.1);
}

.accounting-vip-wrapper {
  background: #eff5fe;
  padding-bottom: 9rem;
}
.accounting-vip-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.accounting-vip-wrapper .common-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #111;
  font-size: 3rem;
}
.accounting-vip-wrapper .accounting-vip {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 4rem;
}
.accounting-vip-wrapper .accounting-vip form {
  background: #fff;
  padding: 2.5rem 5rem;
  border-radius: 1rem;
}
.accounting-vip-wrapper .accounting-vip form .title {
  line-height: 2.8rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #666;
}
.accounting-vip-wrapper .accounting-vip form .form-group .item > .label {
  font-size: 1.6rem;
  color: #333;
  line-height: 4.6rem;
}
.accounting-vip-wrapper .accounting-vip form .form-group .radio-box .values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.accounting-vip-wrapper .accounting-vip form .form-group .radio-box .values .value {
  position: relative;
  flex-shrink: 0;
}
.accounting-vip-wrapper .accounting-vip form .form-group .radio-box .values .value input {
  position: absolute;
  left: 0;
  opacity: 0;
}
.accounting-vip-wrapper .accounting-vip form .form-group .radio-box .values .value input:checked + .form-label {
  background: #5b79f1;
  color: #fff;
}
.accounting-vip-wrapper .accounting-vip form .form-group .radio-box .values .value .form-label {
  min-width: 12rem;
  text-align: center;
  cursor: pointer;
  line-height: 4rem;
  background: #dce3fe;
  padding: 0 2rem;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  box-sizing: border-box;
  color: #333;
}
.accounting-vip-wrapper .accounting-vip form .form-group .input-box {
  padding-bottom: 2rem;
}
.accounting-vip-wrapper .accounting-vip form .form-group .input-box .values {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.accounting-vip-wrapper .accounting-vip form .form-group .input-box .values .value {
  flex-shrink: 0;
  flex: 1;
  border-radius: 0.3rem;
  overflow: hidden;
}
.accounting-vip-wrapper .accounting-vip form .form-group .input-box .values .submit a {
  border-radius: 0.3rem;
  display: block;
  text-align: center;
  font-size: 1.7rem;
  line-height: 4.2rem;
  color: #fff;
  width: 18rem;
  background: linear-gradient(left, #f7cd6e, #ff8f2c);
  background: -webkit-gradient(linear, left top, right top, from(#f7cd6e), to(#ff8f2c));
}
.accounting-vip-wrapper .accounting-vip .user-info {
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}
.accounting-vip-wrapper .accounting-vip .user-info img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accounting-vip-wrapper .accounting-vip .user-info .info {
  padding: 1.5rem 3rem 0 3rem;
}
.accounting-vip-wrapper .accounting-vip .user-info .info .user-name-box {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.accounting-vip-wrapper .accounting-vip .user-info .info .user-name-box .name {
  font-size: 1.8rem;
  margin-right: 2.5rem;
  color: #333;
}
.accounting-vip-wrapper .accounting-vip .user-info .info .user-name-box .job {
  color: #333;
  font-size: 1.5rem;
}
.accounting-vip-wrapper .accounting-vip .user-info .info .introduction {
  text-align: justify;
  line-height: 2.2rem;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.accounting-service-content-wrapper {
  padding-bottom: 6rem;
}
.accounting-service-content-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.accounting-service-content-wrapper .common-title {
  margin-bottom: 1rem;
  text-align: center;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item {
  display: flex;
  flex-direction: column;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .header {
  color: #fff;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .header img {
  width: 3.4rem;
  height: 3.4rem;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .header .title {
  padding-bottom: 1rem;
  color: #fff;
  cursor: default;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .header .desc {
  padding-bottom: 2.8rem;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .news-wrapper {
  flex: 1;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item .news-wrapper .news::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ccc;
}

.accounting-service-content-wrapper .encyclopedia-common-cards .item:nth-of-type(1) .header {
  background: #5b79f1;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item:nth-of-type(2) .header {
  background: #3bcfa3;
}
.accounting-service-content-wrapper .encyclopedia-common-cards .item:nth-of-type(3) .header {
  background: #985dfc;
}

.accounting-advertisement-wrapper {
  height: 10.3rem;
  background: url("../images/accounting_icon/dljz-ads.jpg") center center no-repeat;
  background-size: cover;
}

.accounting-service-process-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.accounting-service-process-wrapper .common-title {
  margin-bottom: 1rem;
  text-align: center;
}
.accounting-service-process-wrapper .process-box {
  --color: #d0d0d1;
  position: relative;
  margin-bottom: 5rem;
}
@keyframes skewFrames {
  0%, 100%, 11% {
    transform: none;
  }
  0% {
    transform: none;
  }
  22% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44% {
    transform: skewX(-3.12deg) skewY(-3.12deg);
  }
  55% {
    transform: skewX(1.56deg) skewY(1.56deg);
  }
  66% {
    transform: skewX(-0.78deg) skewY(-0.78deg);
  }
  77% {
    transform: skewX(0.39deg) skewY(0.39deg);
  }
  88% {
    transform: skewX(-0.19deg) skewY(-0.19deg);
  }
}
@keyframes progressFramesTop {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(225deg);
  }
}
@keyframes progressFramesBottom {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(225deg);
  }
  100% {
    transform: rotate(225deg);
  }
}
.accounting-service-process-wrapper .process-box::before {
  content: "";
  position: absolute;
  top: 7rem;
  left: 0;
  width: 100%;
  border-top: 0.1rem dashed #c1c1c1;
  z-index: 0;
}
.accounting-service-process-wrapper .process-box .cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.accounting-service-process-wrapper .process-box .cards .cards-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header {
  background: #fff;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.2rem solid var(--color);
  border-radius: 50%;
  z-index: 4;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-top,
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-bottom {
  height: 7rem;
  width: 14rem;
  overflow: hidden;
  position: absolute;
  left: 0;
  z-index: 5;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-top {
  top: 0;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-bottom {
  bottom: 0;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-b,
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-t {
  position: absolute;
  left: 0;
  width: 14rem;
  height: 14rem;
  border: 0.2rem solid var(--active-color);
  border-radius: 50%;
  transform: rotate(45deg);
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-b {
  bottom: 0;
  border-bottom: 2px solid #d0d0d1 !important;
  border-right: 2px solid #d0d0d1 !important;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .progress-t {
  top: 0;
  border-top: 2px solid #d0d0d1 !important;
  border-left: 2px solid #d0d0d1 !important;
  z-index: 99;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .progress-b {
  animation: progressFramesBottom 2s linear forwards;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .progress-t {
  animation: progressFramesTop 2s linear forwards;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .image img {
  filter: none;
  opacity: 1;
  animation-name: skewFrames;
  animation-duration: 1s;
  animation-timing-function: ease;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .step {
  color: #ed4237;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .step span::after {
  transition-delay: 2s;
  background: var(--active-color);
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header:hover .step span::before {
  background: var(--active-color);
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .image {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .image img {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.6s ease-in-out;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .step {
  position: absolute;
  background: #fff;
  width: 6rem;
  height: 3.5rem;
  top: 50%;
  left: calc(100% - 3.4rem);
  z-index: 9;
  transform: translateY(-50%);
  line-height: 3.5rem;
  text-align: center;
  color: #5c5c5c;
  transition: all 0.4s;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .step span {
  display: block;
  position: relative;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .step span::after {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color);
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  border-radius: 50%;
  transition-duration: 0.5s;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .header .step span::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color);
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border-radius: 50%;
  transition: all 0.5s;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .info {
  margin-top: 2.5rem;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .info .title {
  font-size: 1.6rem;
  color: #3d3d3d;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}
.accounting-service-process-wrapper .process-box .cards .cards-item .info .subtitle {
  line-height: 2.2rem;
  color: #999;
  text-align: center;
}
.accounting-service-process-wrapper .customer-service .title {
  font-size: 2.4rem;
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}
.accounting-service-process-wrapper .customer-service .link {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.accounting-service-process-wrapper .customer-service .link a {
  width: 25.5rem;
  height: 4.4rem;
  line-height: 4.4rem;
  border-radius: 4.4rem;
  background: #2f82ff;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  transition: all 0.4s;
}
.accounting-service-process-wrapper .customer-service .link a:hover {
  background: var(--active-color);
}

.accounting-standard-wrapper {
  border-top: 0.1rem solid #eaedf0;
  background: #f4f9fc;
  padding-bottom: 8.4rem;
}
.accounting-standard-wrapper .wrapper-padding {
  padding: 5rem 0 3rem 0;
}
.accounting-standard-wrapper .common-title {
  margin-bottom: 1rem;
  text-align: center;
}
.accounting-standard-wrapper .cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.accounting-standard-wrapper .cards-list .cards-item {
  transition: all 0.4s;
  border: 0.1rem solid #ddd;
  min-height: 35.5rem;
}
.accounting-standard-wrapper .cards-list .cards-item .image {
  overflow: hidden;
  height: 20rem;
}
.accounting-standard-wrapper .cards-list .cards-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.accounting-standard-wrapper .cards-list .cards-item .image img:hover {
  transform: scale(1.05);
}
.accounting-standard-wrapper .cards-list .cards-item .info {
  transform: translateY(-3rem);
}
.accounting-standard-wrapper .cards-list .cards-item .info .title {
  height: 9.5rem;
  line-height: 8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: url(../images/accounting_icon/dljz-bg-wj.png) center no-repeat;
}
.accounting-standard-wrapper .cards-list .cards-item .info .subtitle {
  text-align: center;
  color: #666;
  margin-top: 1.5rem;
  line-height: 2;
}
.accounting-standard-wrapper .cards-list .cards-item:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.2);
}

.qualifications-banner-wrapper {
  height: 42rem;
  background: url("../images/qualifications_icon/page_ban7.jpg") no-repeat;
  background-size: cover;
}
.qualifications-banner-wrapper .form-content {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.qualifications-banner-wrapper .form-content .form {
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
}
.qualifications-banner-wrapper .form-content .form .title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #333;
}
.qualifications-banner-wrapper .form-content .form .content .common-form-item {
  margin-bottom: 1.5rem;
}
.qualifications-banner-wrapper .form-content .form .content .common-form-item .form-control {
  width: 27rem;
  border-radius: 0.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background: #f3f3f3;
}
.qualifications-banner-wrapper .form-content .form .submit {
  width: 100%;
}
.qualifications-banner-wrapper .form-content .form .submit a {
  width: 100%;
  display: block;
  min-height: 4.5rem;
  text-align: center;
  line-height: 4.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffcb5b), to(#ff8800));
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.6rem;
}

.qualifications-introduce-wrapper {
  margin-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.qualifications-introduce-wrapper .register-common-introduce .item {
  align-items: center;
}
.qualifications-introduce-wrapper .register-common-introduce .item img {
  width: 4.8rem;
  height: 4.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.qualifications-common-layout .wrapper-padding {
  padding-bottom: 3rem;
  background: #eaf2ff;
}
.qualifications-common-layout .wrapper-padding .common-subtitle {
  margin-top: 1rem;
}
.qualifications-common-layout .outside-box {
  padding: 8rem 0 6rem 0;
  background: #537dc2;
}
.qualifications-common-layout .outside-box:nth-of-type(2) {
  padding-top: 0rem;
}
.qualifications-common-layout .outside-box:nth-of-type(2n) {
  background: #eaf2ff;
}
.qualifications-common-layout .outside-box:last-child {
  background: #eaf2ff;
}
.qualifications-common-layout .cards-layout {
  display: flex;
  gap: 1rem;
}
.qualifications-common-layout .cards-layout .common-card {
  min-width: 27.6rem;
  max-width: 27.6rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5rem;
}
.qualifications-common-layout .cards-layout .common-card .title {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.qualifications-common-layout .cards-layout .common-card .line {
  height: 0.2rem;
  background: #fff;
  width: 5rem;
  opacity: 0.7;
  margin: 2rem 0;
}
.qualifications-common-layout .cards-layout .common-card .subtitle {
  padding-right: 3rem;
  line-height: 3rem;
}
.qualifications-common-layout .cards-layout .common-card .link {
  margin-top: 6rem;
}
.qualifications-common-layout .cards-layout .common-card .link a {
  display: block;
  width: 16rem;
  height: 4.8rem;
  line-height: 4.8rem;
  color: #fff;
  text-align: center;
  border: 0.1rem solid #fff;
  border-radius: 0.4rem;
  font-weight: 800;
  font-size: 1.6rem;
}
.qualifications-common-layout .cards-layout .grid-cards {
  --number: 3;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(var(--number), minmax(100px, 1fr));
  gap: 1rem;
}
.qualifications-common-layout .cards-layout .grid-cards .grid-item {
  background: #fff;
  box-sizing: border-box;
  padding: 3rem;
  height: 17.8rem;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.qualifications-common-layout .cards-layout .grid-cards .grid-item .title {
  line-height: 3rem;
  font-size: 1.6rem;
  color: #233767;
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qualifications-common-layout .cards-layout .grid-cards .grid-item .subtitle {
  box-sizing: border-box;
  line-height: 2.4rem;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: #888;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.qualifications-common-layout .cards-layout .grid-cards .grid-item .link {
  box-sizing: border-box;
  line-height: 5rem;
}
.qualifications-common-layout .cards-layout .grid-cards .grid-item .link a {
  display: inline-block;
  color: #f03;
  font-size: 1.6rem;
  font-weight: 800;
}
.qualifications-common-layout .cards-layout .grid-cards .more {
  display: none;
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more .title-wrapper {
  margin-right: 3rem;
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more .title-wrapper .title a {
  line-height: 3rem;
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more .title-wrapper .title a:hover {
  color: var(--active-color);
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more .title-wrapper .subtitle {
  font-weight: normal;
  color: #999;
  line-height: 2.6rem;
  font-size: 1.4rem;
}
.qualifications-common-layout .cards-layout .grid-cards[more] .more img {
  width: 5.4rem;
  height: 5.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.qualifications-common-layout .cards-layout .grid-cards[merge] {
  grid-template-areas: "a b c" "d d e";
}
.qualifications-common-layout .cards-layout .grid-cards[merge] .grid-item:nth-of-type(1) {
  grid-area: a;
}
.qualifications-common-layout .cards-layout .grid-cards[merge] .grid-item:nth-of-type(2) {
  grid-area: b;
}
.qualifications-common-layout .cards-layout .grid-cards[merge] .grid-item:nth-of-type(3) {
  grid-area: c;
}
.qualifications-common-layout .cards-layout .grid-cards[merge] .grid-item:nth-of-type(4) {
  grid-area: d;
}
.qualifications-common-layout .cards-layout .grid-cards[merge] .grid-item:last-of-type {
  grid-area: e;
}
.qualifications-common-layout .special-box {
  padding-top: 0;
}
.qualifications-common-layout .special-box .common-card {
  padding: 3rem 0 3rem 5rem;
}
.qualifications-common-layout .special-box .common-card .link {
  margin-top: 2rem;
}
.qualifications-common-layout .special-box .grid-cards .grid-item {
  height: auto;
}

.trademark-banner-wrapper {
  background: #3033c0;
  height: 42rem;
    background-size:cover;

}
.trademark-banner-wrapper .container-md {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trademark-banner-wrapper .title {
  font-size: 5rem;
  color: #fff;
  text-align: center;
  font-weight: 800;
}
.trademark-banner-wrapper .subtitle {
  margin: 3.6rem 0 6.6rem 0;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
}
.trademark-banner-wrapper .horizontal-form-wrapper {
  border: 0;
  border-radius: 0;
}
.trademark-banner-wrapper .horizontal-form-wrapper .input-group .form-control {
  border-radius: 0;
  min-width: 40rem;
  padding-left: 1.2rem;
  height: 5.2rem;
}
.trademark-banner-wrapper .horizontal-form-wrapper .submit-btn {
  background: #df1344;
}

.trademark-service-wrapper {
  padding-bottom: 6rem;
}
.trademark-service-wrapper .wrapper-padding {
  text-align: center;
}
.trademark-service-wrapper .wrapper-padding .subtitle {
  margin-top: 1rem;
}

.trademark-hot-service-wrapper {
  background: #eff5fe;
  padding-bottom: 8rem;
}
.trademark-hot-service-wrapper .wrapper-padding {
  text-align: center;
}
.trademark-hot-service-wrapper .wrapper-padding .subtitle {
  margin-top: 1rem;
}

.trademark-common-bg-card {
  width: 27.2rem;
  height: 34.6rem;
  padding: 3.9rem 2rem 0 2.5rem;
}
.trademark-common-bg-card .title {
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.2rem;
  font-weight: 800;
  color: #04b398;
}
.trademark-common-bg-card .subtitle {
  color: #04b398;
  line-height: 1.6;
}
.trademark-common-bg-card[first] {
  background: url("../images//trademark_icon/zl_bg1.jpg");
}
.trademark-common-bg-card[second] {
  background: url("../images//trademark_icon/zl_bg2.jpg");
}
.trademark-common-bg-card[second] .title {
  color: #f69000;
}
.trademark-common-bg-card[second] .subtitle {
  color: #f69000;
}

.trademark-patent-wrapper {
  padding-bottom: 6rem;
}
.trademark-patent-wrapper .wrapper-padding {
  text-align: center;
}
.trademark-patent-wrapper .wrapper-padding .subtitle {
  margin-top: 1rem;
}
.trademark-patent-wrapper .content {
  display: flex;
  gap: 2rem;
}
.trademark-patent-wrapper .content .common-patent-cards {
  flex: 1;
}

.trademark-copyright-wrapper {
  padding-bottom: 6rem;
  background: url("../images/trademark_icon/youshi_bg.jpg") no-repeat center;
  background-size: cover;
}
.trademark-copyright-wrapper .wrapper-padding {
  text-align: center;
}
.trademark-copyright-wrapper .wrapper-padding .common-title {
  color: #fff;
}
.trademark-copyright-wrapper .wrapper-padding .subtitle {
  margin-top: 1rem;
  color: #fff;
}
.trademark-copyright-wrapper .content {
  display: flex;
  gap: 2rem;
}
.trademark-copyright-wrapper .content .common-copyright-cards {
  flex: 1;
}

.determine-banner-wrapper {
  background: #4833d8;
  height: 42rem;
    background-size:cover;
}
.determine-banner-wrapper .container-md {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
    padding-bottom: 4rem;

}
.determine-banner-wrapper .container-md .title {
  font-size: 6rem;
  color: #fff;
  text-align: center;
  font-weight: 800;
}
.determine-banner-wrapper .container-md .tags {
  display: flex;
  height: 5.2rem;
  background: rgba(255, 255, 255, 0.2);
  min-width: 62rem;
  margin: 3.5rem 0;
  border-radius: 0.8rem;
  align-items: center;
}
.determine-banner-wrapper .container-md .tags .item {
  text-align: center;
  flex: 1;
  color: #fff;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
}
.determine-banner-wrapper .container-md .tags .item:first-child::before {
  width: 0;
}
.determine-banner-wrapper .container-md .tags .item::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #04d298;
}
.determine-banner-wrapper .container-md .horizontal-form-wrapper {
  background: #fff;
  border: 0;
}
.determine-banner-wrapper .container-md .horizontal-form-wrapper .input-group {
  padding: 0 1rem;
}
.determine-banner-wrapper .container-md .horizontal-form-wrapper .input-group:nth-of-type(2) .form-control {
  padding-left: 1rem;
}
.determine-banner-wrapper .container-md .horizontal-form-wrapper .input-group .form-control {
  width: 30.4rem;
}
.determine-banner-wrapper .container-md .horizontal-form-wrapper .submit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#4facfe), to(#00f1fe));
}

.high-tech-determine-wrapper {
  padding-bottom: 8rem;
}
.high-tech-determine-wrapper .wrapper-padding .common-title {
  margin-bottom: 1rem;
}
.high-tech-determine-wrapper .desc {
  padding: 2rem 20rem;
  line-height: 2.4rem;
  color: #3e444f;
  border-radius: 0.5rem;
  background: #f4f7fb;
  font-size: 1.3rem;
  /*text-align: center;*/
  text-align: left;
}

.high-tech-determine-wrapper .desc p {
    margin-bottom: 10px;
}


.determine-condition-wrapper {
  padding-bottom: 10rem;
  background: rgb(239, 245, 254);
}
.determine-condition-wrapper .wrapper-padding .common-title {
  margin-bottom: 1rem;
}
.determine-condition-wrapper .content {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 6rem;
  display: grid;
}
.determine-condition-wrapper .content .cards > .card-item {
  margin-bottom: 2rem;
  background: #767af8;
}
.determine-condition-wrapper .content .cards .card-item {
  border-radius: 0.8rem;
  padding: 4rem 2.5rem;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  line-height: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.determine-condition-wrapper .content .cards .card-wrapper {
  display: flex;
  gap: 2rem;
}
.determine-condition-wrapper .content .cards .card-wrapper .card-item:first-child {
  background: #f59c3c;
}
.determine-condition-wrapper .content .cards .card-wrapper .card-item:last-child {
  background: #ae69f4;
}
.determine-condition-wrapper .content .icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.determine-condition-wrapper .content .icons .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.determine-condition-wrapper .content .icons .item .title {
  margin-top: 2rem;
}

.determine-template-wrapper {
  padding-bottom: 10rem;
}
.determine-template-wrapper .wrapper-padding .common-title {
  margin-bottom: 1rem;
}
.determine-template-wrapper .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.determine-template-wrapper .cards .card-item {
  box-shadow: 2px 2px 10px rgba(40, 85, 166, 0.3);
  padding: 3rem 0 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.determine-template-wrapper .cards .card-item img {
  width: 6.6rem;
  height: 6.6rem;
  margin-bottom: 3rem;
}
.determine-template-wrapper .cards .card-item .title {
  font-size: 1.7rem;
  line-height: 2rem;
  color: #333;
  margin-bottom: 1.8rem;
}
.determine-template-wrapper .cards .card-item .introduce {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #666;
  line-height: 2.4rem;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 3.4rem;
}

.news-bread-crumb-wrapper {
  line-height: 6rem;
  background: #f5f5f5;
}
.news-bread-crumb-wrapper .bread-navs {
  display: flex;
  align-items: center;
}
.news-bread-crumb-wrapper .bread-navs .link a {
  color: #333;
}
.news-bread-crumb-wrapper .bread-navs .link a:hover {
  color: var(--active-color);
}

.news-banner-wrapper {
  display: flex;
  gap: 2rem;
  height: 36rem;
}
@media (max-width: 1399.98px) {
  .news-banner-wrapper {
    display: block;
  }
}
.news-banner-wrapper .swiper-content {
  height: 100%;
}
.news-banner-wrapper .swiper-content .swiper-container {
  height: 100%;
  width: 95rem;
}
@media (max-width: 1399.98px) {
  .news-banner-wrapper .swiper-content .swiper-container {
    width: 100%;
  }
}
.news-banner-wrapper .swiper-content .swiper-container .swiper-slide {
  height: 100%;
}
.news-banner-wrapper .swiper-content .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-banner-wrapper .form-content {
  height: 100%;
  flex: 1;
  background: url("../images/tax_consulting_icon/im_bg_jsfwtd.png") no-repeat center;
  padding: 2rem;
  flex-shrink: 0;
}
@media (max-width: 1399.98px) {
  .news-banner-wrapper .form-content {
    display: none;
  }
}
.news-banner-wrapper .form-content .title {
  font-size: 2.3rem;
  line-height: 8rem;
  color: #fff;
  text-align: center;
  font-weight: 8000;
}
.news-banner-wrapper .form-content .form .content .common-form-item {
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-banner-wrapper .form-content .form .content .common-form-item .form-control {
  height: 4.6rem;
}
.news-banner-wrapper .form-content .form .submit a {
  border-radius: 0.5rem;
  height: 4.6rem;
  background: -webkit-gradient(linear, left top, right top, from(#f7cd6e), to(#ff8f2c));
  display: block;
  line-height: 4.6rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}

.news-list-wrapper {
  padding-top: 3.5rem;
  padding-bottom: 8rem;
}
.news-list-wrapper .news-wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1399.98px) {
  .news-list-wrapper .news-wrapper {
    display: block;
  }
}
.news-list-wrapper .news-wrapper .news {
  width: 95rem;
}
@media (max-width: 1399.98px) {
  .news-list-wrapper .news-wrapper .news {
    width: 100%;
  }
}
.news-list-wrapper .news-wrapper .news .header {
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
}
.news-list-wrapper .news-wrapper .news .header .title {
  font-weight: bold;
  font-size: 2.2rem;
  margin-right: 2.5rem;
}
.news-list-wrapper .news-wrapper .news .header .news-navs {
  display: flex;
  align-items: center;
}
.news-list-wrapper .news-wrapper .news .header .news-navs .item a {
  display: inline-block;
  color: #333;
  font-size: 1.6rem;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
}
.news-list-wrapper .news-wrapper .news .header .news-navs .item a:hover {
  color: var(--active-color);
}
.news-list-wrapper .news-wrapper .news .header .news-navs .active a {
  background: #2faaff;
  color: #fff;
}
.news-list-wrapper .news-wrapper .news .header .news-navs .active a:hover {
  color: #fff;
}
.news-list-wrapper .news-wrapper .news .news-lists .item {
  display: flex;
  margin-bottom: 2rem;
}
.news-list-wrapper .news-wrapper .news .news-lists .item:last-child {
  margin-bottom: 0;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .image {
  flex-shrink: 0;
  width: 26rem;
  height: 16rem;
  background: #e6e6e6;
  overflow: hidden;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .image img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .image img:hover {
  transform: scale(1.06);
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info {
  margin-left: 2rem;
  flex: 1;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info .title {
  padding-top: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info  .subtitle{
    margin-top: 1.2rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info .title a {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: normal;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info .title a:hover {
  color: var(--active-color);
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info .introduce {
  font-size: 1.3rem;
  line-height: 2.8rem;
  color: #666;
  margin: 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list-wrapper .news-wrapper .news .news-lists .item .info .time {
  text-align: right;
  color: #666;
  font-size: 1.3rem;
}
.news-list-wrapper .news-wrapper .news .paging {
  display: flex;
  margin-top: 6rem;
  padding: 3rem 0;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.news-list-wrapper .news-wrapper .news .paging .item {
  padding: 0;
}
.news-list-wrapper .news-wrapper .news .paging .item a {
  display: inline-block;
  padding: 0 1.5rem;
  border: 0.1rem solid #edebeb;
  background: #fff;
  line-height: 3.4rem;
  color: #333;
}
.news-list-wrapper .news-wrapper .news .paging .item a:hover {
  background: #67b306;
  color: #fff;
  border-color: #67b306;
}
.news-list-wrapper .news-wrapper .news .paging .active a {
  background: #67b306;
  color: #fff;
  border-color: #67b306;
}

.news-advertisement {
  flex: 1;
}
.news-advertisement .hot {
  position: relative;
}
.news-advertisement .hot .title {
  font-size: 2.3rem;
  line-height: 3rem;
  color: #333;
  padding-left: 2rem;
  position: relative;
  font-weight: 800;
}
.news-advertisement .hot .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: #30c8c6;
}
.news-advertisement .hot .service-pic {
  margin-top: 3.5rem;
}
.news-advertisement .hot .service-pic .image {
  width: 100%;
  height: 23.8rem;
}
.news-advertisement .hot .service-pic .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     /*object-fit: cover;*/
}
.news-advertisement .hot .service-pic .text {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 2.4rem;
}
.news-advertisement .hot .service-pic .text a {
  display: block;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-advertisement .hot .service-pic .text a:hover {
  color: #30c8c6;
}
.news-advertisement .process .item {
  padding-left: 4.5rem;
  padding-top: 1.5rem;
  min-height: 7rem;
  position: relative;
}
.news-advertisement .process .item:last-child::after {
  height: 0;
  border: 0;
}
.news-advertisement .process .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 0.3rem solid #b4ebea;
  z-index: 2;
  background: #fff;
}
.news-advertisement .process .item::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 1.5rem;
  border: 0.1rem dashed #b4ebea;
  height: 100%;
  z-index: 1;
}
.news-advertisement .process .item .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.8rem;
}
.news-advertisement .process .item .title a:hover {
  color: var(--active-color);
}
.news-advertisement .process .item .time {
  font-size: 1.3rem;
  line-height: 2.2rem;
  color: #333;
}
.news-advertisement .ad {
  margin-top: 6rem;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.news-advertisement .ad img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-advertisement .recommend-news {
  margin-top: 3.5rem;
}
.news-advertisement .recommend-news .title {
  font-size: 2.3rem;
  line-height: 3rem;
  color: #333;
  padding-left: 2rem;
  position: relative;
  font-weight: 800;
}
.news-advertisement .recommend-news .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: #30c8c6;
}
.news-advertisement .recommend-news .list .item {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.news-advertisement .recommend-news .list .item .image {
  flex-shrink: 0;
  width: 13rem;
  height: 8.8rem;
  overflow: hidden;
}
.news-advertisement .recommend-news .list .item .image img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-advertisement .recommend-news .list .item .image img:hover {
  transform: scale(1.1);
}
.news-advertisement .recommend-news .list .item .info .name {
  margin: 1rem 0 0.5rem 0;
}
.news-advertisement .recommend-news .list .item .info .name a {
  font-size: 1.3rem;
  line-height: 2.2rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-advertisement .recommend-news .list .item .info .name a:hover {
  color: var(--active-color);
}
.news-advertisement .recommend-news .list .item .info .time {
  font-size: 1.3rem;
  color: #666;
}

.news-details-wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1399.98px) {
  .news-details-wrapper {
    display: block;
  }
}
.news-details-wrapper .news {
  width: 95rem;
}
@media (max-width: 1399.98px) {
  .news-details-wrapper .news {
    width: 100%;
  }
}
.news-details-wrapper .news .header {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.1rem solid #eee;
}
.news-details-wrapper .news .header .title {
  padding-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 800;
}
.news-details-wrapper .news .header .desc {
  color: #999;
  font-size: 1.3rem;
  line-height: normal;
}
.news-details-wrapper .news .header .desc > span {
  display: inline-block;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  position: relative;
}
.news-details-wrapper .news .header .desc > span:last-child {
  padding-right: 0rem;
  margin-right: 0rem;
}
.news-details-wrapper .news .header .desc > span:last-child::after {
  width: 0;
}
.news-details-wrapper .news .header .desc > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 80%;
  background: #eee;
}
.news-details-wrapper .news .content p {
    line-height: 3rem;
    margin-bottom: 2rem
}

.news-details-wrapper .news .paging {
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: #f2f2f2;
  line-height: 3rem;
  color: #333;
  font-size: 1.4rem;
}
.news-details-wrapper .news .paging a {
  font-size: inherit;
  color: #333;
}
.news-details-wrapper .news .paging a:hover {
  color: var(--active-color);
}

.about-banner {
  height: 42rem;
}
/*.about-banner .container-md {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-banner .container-md .title {
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  line-height: normal;
}
.about-banner .container-md .subtitle {
  line-height: normal;
  font-size: 3rem;
  margin-top: 2rem;
  color: #fff;
}*/

.about-banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-company-wrapper {
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.about-company-wrapper .introduce {
  display: flex;
  gap: 10rem;
}
.about-company-wrapper .introduce .images {
  width: 46rem;
  height: 44.8rem;
  position: relative;
  border: 0.1rem solid #ddd;
  flex-direction: 0;
}
.about-company-wrapper .introduce .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 2rem;
  top: 2rem;
}
.about-company-wrapper .introduce .info {
  flex: 1;
}
.about-company-wrapper .introduce .info .name {
  margin-top: 4rem;
  font-size: 2.5rem;
  font-weight: 800;
}
.about-company-wrapper .introduce .info .content p {
  text-indent: 2em;
  text-align: justify;
  line-height: 3.5rem;
  margin-top: 1.5rem;
  color: #555;
}
.about-company-wrapper .about-cards {
  margin-top: 5rem;
  display: flex;
}
.about-company-wrapper .about-cards .item {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 12rem;
  min-height: 8rem;
  position: relative;
}
.about-company-wrapper .about-cards .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0.1rem;
  background: #ddd;
}
.about-company-wrapper .about-cards .item:first-child::after {
  height: 0;
}
.about-company-wrapper .about-cards .item .number {
  line-height: normal;
  color: #146bbb;
}
.about-company-wrapper .about-cards .item .number .num {
  font-size: 3.6rem;
  color: #146bbb;
  font-weight: normal;
  font-family: Impact;
  position: relative;
}
.about-company-wrapper .about-cards .item .number .num .sup {
  position: absolute;
  right: -2rem;
  top: 0;
  font-size: 1.3rem;
}
.about-company-wrapper .about-cards .item .number .sub {
  padding-left: 1.5rem;
}
.about-company-wrapper .about-cards .item .desc {
  font-size: 1.4rem;
  color: #666;
}
.about-company-wrapper .about-cards .item:nth-of-type(1) {
  background: url("../images/about_icon/youshi01.png") no-repeat 6.5rem center;
}
.about-company-wrapper .about-cards .item:nth-of-type(2) {
  background: url("../images/about_icon/youshi02.png") no-repeat 5rem center;
}
.about-company-wrapper .about-cards .item:nth-of-type(3) {
  background: url("../images/about_icon/youshi03.png") no-repeat 5rem center;
}
.about-company-wrapper .about-cards .item:nth-of-type(4) {
  background: url("../images/about_icon/youshi04.png") no-repeat 4.5rem center;
}

.about-hot-service {
  background: #f1f2f4;
  border-top: 1px solid rgb(234, 237, 240);
  padding-bottom: 8rem;
}
.about-hot-service .common-title {
  margin-bottom: 1rem;
}
.about-hot-service .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.about-hot-service .cards .cards-item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.8rem;
  transition: all 0.4s ease-in-out;
}
.about-hot-service .cards .cards-item:hover {
  box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -0.5rem, 0);
}
.about-hot-service .cards .cards-item .image {
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
}
.about-hot-service .cards .cards-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-hot-service .cards .cards-item .title {
  font-size: 2rem;
  line-height: normal;
}

.about-guarantee-service {
  padding-bottom: 17rem;
}
.about-guarantee-service .common-title {
  margin-bottom: 1rem;
}
.about-guarantee-service .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 5rem;
}
.about-guarantee-service .cards .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-guarantee-service .cards .item .image {
  width: 8.6rem;
  height: 8.6rem;
}
.about-guarantee-service .cards .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-guarantee-service .cards .item .title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: normal;
  font-weight: 500;
}
.about-guarantee-service .cards .item .subtitle {
  color: #666;
  font-size: 1.4rem;
  line-height: normal;
}
.about-guarantee-service .images {
  display: grid;
  grid-template-areas: "a a b c";
  gap: 2rem;
}
.about-guarantee-service .images .item:first-child {
  grid-area: a;
}
.about-guarantee-service .images .item:nth-of-type(2) {
  grid-area: b;
}
.about-guarantee-service .images .item:nth-of-type(3) {
  grid-area: c;
}
.about-guarantee-service .images .item .image {
  width: 100%;
  height: 30rem;
}
.about-guarantee-service .images .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-guarantee-service .images .item:last-child .image {
  width: 100%;
  height: 15rem;
  box-sizing: border-box;
}
.about-guarantee-service .images .item:last-child .image:first-child {
  padding-bottom: 1.5rem;
}
.about-guarantee-service .images .item:last-child .image:last-child {
  padding-top: 1.5rem;
}
.about-guarantee-service .images .item:last-child .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  font-size: 62.5%;
  color: #333;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  font-size: var(--theme-text-size);
}
body main {
  margin-top: 8rem;
  flex: 1;
  background: #fff;
}
@media (max-width: 1199.98px) {
  body main {
    margin-top: 7.5rem;
  }
}/*# sourceMappingURL=index.css.map */
