.font-size-20 {
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .font-size-20 {
    font-size: 0.4rem;
  }
}
.font-size-18 {
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .font-size-18 {
    font-size: 0.32rem;
  }
}
.font-size-16 {
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .font-size-16 {
    font-size: 0.32rem;
  }
}
.font-black {
  color: #000;
}
.font-theme {
  color: #ff379c;
}
.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
  font-size: 18px;
  background-color: #ff379c;
  border-radius: 60px;
  color: #fff;
  border: 1px solid #ff379c;
  height: 54px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .primary-btn {
    font-size: 0.32rem;
  }
}
.primary-btn:hover {
  background-color: #fff;
  border-color: #ff379c;
  color: #ff379c;
}
@media screen and (max-width: 960px) {
  .primary-btn {
    height: 0.8rem;
    padding: 0 1em;
  }
}
.outline-primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
  font-size: 18px;
  background-color: #fff;
  border: 1px solid #ff379c;
  border-radius: 60px;
  color: #ff379c;
  height: 54px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .outline-primary-btn {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 960px) {
  .outline-primary-btn {
    height: 0.8rem;
    padding: 0 1em;
  }
}
.outline-primary-btn:hover {
  background-color: #ff379c;
  color: #fff;
}
.section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.section-footer a {
  margin: 0 12px;
}
@media screen and (max-width: 960px) {
  .section-footer {
    margin-top: 0.48rem;
  }
  .section-footer a {
    margin: 0 0.24rem;
  }
}
.pr-0 {
  padding-right: 0!important;
}
/** Header && Footer **/
.header {
  background-color: #fff;
  height: 89px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
.header .header-con {
  max-width: 1244px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
}
.header .header-logo {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: auto;
  cursor: pointer;
  flex: none;
}
.header .header-logo img {
  width: 100%;
  height: auto;
}
.header .header-logo:hover {
  opacity: 0.7;
}
.header .header-nav {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.header .header-nav .header-nav-item {
  display: inline-flex;
  align-items: center;
  padding: 20px;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .header .header-nav .header-nav-item {
    font-size: 0.32rem;
  }
}
.header .header-nav .header-nav-item:hover,
.header .header-nav .header-nav-item.current {
  color: #ff379c;
}
.header .noLogin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: 46.6px;
  border-radius: 48px;
  background-color: #ff379c;
  color: #fff;
  font-size: 16px;
  padding: 0 1em;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .header .noLogin {
    font-size: 0.32rem;
  }
}
.header .noLogin .icon-user {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/icon-user@2x.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}
.header .noLogin:hover {
  opacity: 0.7;
}
.header .hasLogined {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.header .hasLogined span {
  color: #000;
  font-size: 16px;
  margin-left: 0.5em;
}
@media screen and (max-width: 960px) {
  .header .hasLogined span {
    font-size: 0.32rem;
  }
}
.header .hasLogined .avatar {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}
.header .hasLogined .avatar img {
  height: 100%;
  width: auto;
}
.header .hasLogined:hover span {
  color: #ff379c;
}
.header .header-bars {
  display: none;
}
@media screen and (max-width: 1500px) {
  .header .header-con {
    max-width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 960px) {
  .header {
    height: 1.2rem;
    padding-right: 0.8rem;
  }
  .header .header-con {
    padding: 0 0.4rem 0 0.2rem;
  }
  .header .header-nav {
    display: none;
  }
  .header .header-logo {
    width: 1.72rem;
  }
  .header .noLogin {
    height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.32rem;
  }
  .header .noLogin .icon-user {
    width: 0.4rem;
    height: 0.4rem;
  }
  .header .noLogin span {
    font-size: 0.32rem;
  }
  .header .hasLogined span {
    font-size: 0.32rem;
  }
  .header .hasLogined .avatar {
    width: 0.4rem;
    height: 0.4rem;
  }
  .header .header-bars {
    display: block;
    width: 0.54rem;
    height: 0.54rem;
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .header-bars .header-bars-line {
    display: block;
    width: 100%;
    height: 0.075rem;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: width 0.3s;
  }
  .header .header-bars::before,
  .header .header-bars::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.075rem;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
    transform-origin: center;
  }
  .header .header-bars::before {
    top: 0;
  }
  .header .header-bars::after {
    bottom: 0;
  }
  .header .header-bars.open .header-bars-line {
    width: 0;
  }
  .header .header-bars.open::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header .header-bars.open::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header.open .header-nav {
    position: fixed;
    top: 1.2rem;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    width: 100%;
    padding: 0 0.2rem;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  .header.open .header-nav .header-nav-item {
    width: 100%;
    height: 1.2rem;
    margin-right: 0;
    align-items: center;
  }
  .header.open .header-nav .header-nav-item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }
}
.footer {
  background-color: #f0f0ed;
  padding: 54px 0;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 0.48rem 0;
  }
}
.footer .footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .footer .footer-content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 960px) {
  .footer .footer-content {
    padding: 0 0.2rem;
  }
}
.footer .left {
  padding-right: 50px;
}
@media screen and (max-width: 960px) {
  .footer .left {
    padding-right: 0;
  }
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer-top .logo {
  display: block;
  width: 172px;
  margin-bottom: 54px;
  font-size: 0;
  cursor: pointer;
}
.footer .footer-top .logo:hover {
  opacity: 0.7;
}
.footer .footer-top p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .footer .footer-top p {
    font-size: 0.32rem;
  }
}
.footer .footer-top .des {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .footer .footer-top .des {
    font-size: 0.32rem;
  }
}
.footer .footer-top .contact-item {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 0;
  cursor: pointer;
  color: #000;
}
@media screen and (max-width: 960px) {
  .footer .footer-top .contact-item {
    font-size: 0.32rem;
  }
}
.footer .footer-top .contact-item .icon-mail,
.footer .footer-top .contact-item .icon-phone {
  width: 20px;
  height: 20px;
  background-position: left;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 1em;
}
.footer .footer-top .contact-item .icon-mail {
  background-image: url('../images/icons/icon-mail@2x.png');
}
.footer .footer-top .contact-item .icon-phone {
  background-image: url('../images/icons/icon-phone@2x.png');
}
.footer .footer-top .contact-item span {
  font-weight: 700;
}
.footer .footer-top .contact-item:hover {
  color: #ff379c;
}
.footer .footer-top .nav-title {
  font-size: 20px;
  font-weight: bolder;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .footer .footer-top .nav-title {
    font-size: 0.4rem;
  }
}
.footer .footer-top .footer-nav-item {
  display: flex;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 960px) {
  .footer .footer-top .footer-nav-item {
    font-size: 0.32rem;
  }
}
.footer .footer-top .footer-nav-item:hover {
  color: #ff379c;
}
@media screen and (max-width: 960px) {
  .footer .footer-top {
    flex-flow: column;
  }
  .footer .footer-top .logo {
    width: 1.72rem;
    margin-bottom: 0.24rem;
  }
  .footer .footer-top .des {
    margin-bottom: 0.12rem;
  }
  .footer .footer-top .contact-item {
    padding: 0.12rem 0;
    align-items: center;
  }
  .footer .footer-top .contact-item .icon-mail,
  .footer .footer-top .contact-item .icon-phone {
    width: 0.44rem;
    height: 0.44rem;
  }
  .footer .footer-top .nav-title {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    margin-bottom: 0.24rem;
  }
  .footer .footer-top .footer-nav-item {
    margin-bottom: 0.24rem;
  }
}
.footer .footer-bottom {
  padding-top: 40px;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .footer .footer-bottom {
    font-size: 0.32rem;
  }
}
.footer .footer-bottom .partners-title {
  font-size: 20px;
  font-weight: bolder;
  margin-bottom: 0.5em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .footer .footer-bottom .partners-title {
    font-size: 0.4rem;
  }
}
.footer .footer-bottom .partner-list {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-bottom .partner-list li {
  margin-right: 1em;
  margin-bottom: 1em;
}
.footer .footer-bottom .partner-list li a {
  font-size: inherit;
  color: inherit;
}
.footer .footer-bottom .partner-list li a:hover {
  color: #ff379c;
}
.footer .footer-bottom .copyright {
  display: flex;
  align-items: center;
  flex-flow: column;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
.footer .footer-bottom .copyright a,
.footer .footer-bottom .copyright p {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .footer .footer-bottom .copyright a,
  .footer .footer-bottom .copyright p {
    font-size: 0.32rem;
  }
}
.footer .footer-bottom .copyright a:hover {
  color: #ff379c;
}
.footer .footer-bottom .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2px 0 1em;
  height: 54px;
  border-radius: 60px;
  background-color: #ff379c;
  font-size: 20px;
  color: white;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .footer .footer-bottom .link-btn {
    font-size: 0.4rem;
  }
}
.footer .footer-bottom .link-btn .icon-link-go {
  width: 48px;
  height: 48px;
  margin-left: 1em;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url('../images/icons/icon-link-go@2x.png');
}
.footer .footer-bottom .link-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .footer .footer-bottom {
    flex-flow: column;
    padding-top: 0.48rem;
  }
  .footer .footer-bottom .partners-title {
    font-size: 0.4rem;
  }
  .footer .footer-bottom .partner-list li {
    margin-bottom: 0.5em;
  }
  .footer .footer-bottom .copyright a,
  .footer .footer-bottom .copyright p {
    flex-flow: column;
  }
  .footer .footer-bottom .copyright a {
    margin-bottom: 0.5em;
  }
  .footer .footer-bottom .link-btn {
    margin-top: 0.48rem;
    padding: 0 2px 0 1em;
    height: 0.8rem;
    border-radius: 0.8rem;
    font-size: 0.32rem;
  }
  .footer .footer-bottom .link-btn .icon-link-go {
    width: calc(0.8rem - 4px);
    height: calc(0.8rem - 4px);
  }
}
/** 首页样式 **/
.banner {
  position: relative;
  z-index: 50;
}
.banner-content {
  position: absolute;
  z-index: 50;
  max-width: 960px;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-content .banner-title {
  display: block;
  text-align: center;
  white-space: pre-wrap;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.banner-content .banner-desc {
  display: block;
  text-align: center;
  white-space: pre-wrap;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  .banner-content .banner-desc {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 960px) {
  .banner-content {
    padding: 0 0.3rem;
  }
  .banner-content .banner-title {
    font-size: 0.64rem;
  }
  .banner-content .banner-desc {
    margin: 1em 0;
  }
}
.product {
  margin-top: -100px;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .product {
    margin-top: 90px;
  }
}
@media screen and (max-width: 960px) {
  .product {
    margin-top: 0.64rem;
    padding-bottom: 0.64rem;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
}
.product .product-con {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  flex-wrap: wrap;
}
.product .product-con .product-item {
  width: 20%;
  padding: 8px;
}
.product .product-con .product-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 146.43%;
}
.product .product-con .product-item a .product-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.product .product-con .product-item a .product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .product-con .product-item a:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 960px) {
  .product .product-con .product-item {
    width: 50%;
    padding: 0.1rem;
  }
}
.search {
  margin-bottom: 98px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .search {
    margin-bottom: 0.72rem;
  }
}
.search .search-form {
  max-width: 980px;
  padding: 0 16px;
  width: 100%;
  display: flex;
  align-items: center;
}
.search .search-form .search-form-item {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.search .search-form .search-form-item > label {
  font-size: 24px;
  color: #4f4f4f;
  margin-right: 40px;
}
.search .search-form .search-form-item > input[type=search] {
  position: relative;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0.2em 1em;
  font-size: 24px;
  color: #000;
  border-radius: 100px;
  background-color: #f0f0ed;
  border: 1px solid #4f4f4f;
}
.search .search-form .search-form-item .search-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  background: url('../images/icons/icon-search@2x.png') center center no-repeat;
  background-size: 100%;
  top: 6px;
  right: 6px;
  -webkit-appearance: none;
  display: block;
  outline: none;
  border: 0;
  opacity: 1;
  cursor: pointer;
  font-size: 0;
}
.search .search-form .search-form-item .search-btn:focus,
.search .search-form .search-form-item .search-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .search .search-form {
    padding: 0 0.2rem;
  }
  .search .search-form .search-form-item > label {
    display: none;
  }
  .search .search-form .search-form-item > input[type=search] {
    height: 1rem;
    font-size: 0.4rem;
  }
  .search .search-form .search-form-item .search-btn {
    position: absolute;
    width: calc(1rem - 12px);
    height: calc(1rem - 12px);
  }
}
.manufacturing-center {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .manufacturing-center {
    padding-bottom: 1.2rem;
    margin-bottom: 0;
  }
}
.manufacturing-center .manufacturing-center-con {
  padding-left: 12.5%;
}
.manufacturing-center .manufacturing-center-con .section-title {
  font-size: 40px;
  color: #000;
  margin-bottom: 1em;
  padding-left: 0;
  font-weight: 400;
}
.manufacturing-center .manufacturing-center-con .section-title span {
  font-weight: 800;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con {
    padding-left: 0;
  }
  .manufacturing-center .manufacturing-center-con .section-title {
    font-size: 0.54rem;
    padding-left: 0.2rem;
  }
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-categories {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-categories li {
  cursor: pointer;
  height: 60px;
  background-color: #f5f5f5;
  border-radius: 60px;
  font-size: 20px;
  color: #4f4f4f;
  padding: 0 1em;
  margin-right: 1em;
  margin-bottom: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con .manufacturing-center-categories li {
    font-size: 0.4rem;
  }
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-categories li a {
  font-size: inherit;
  color: inherit;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-categories li.active,
.manufacturing-center .manufacturing-center-con .manufacturing-center-categories li:hover {
  background-color: #ff379c;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con .manufacturing-center-categories {
    padding-left: 0.2rem;
    margin-bottom: 0.24rem;
  }
  .manufacturing-center .manufacturing-center-con .manufacturing-center-categories li {
    height: 0.8rem;
  }
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products {
  padding-left: 0;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap {
  display: block;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img {
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100%;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap:hover .manufacturing-center-product-item-img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #4f4f4f;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 24px;
  padding-right: 0.24px;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
    font-size: 0.32rem;
  }
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-name {
  font-size: 20px;
  color: #000;
  padding: 0 24px;
  margin: 0;
  line-height: 1.2;
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  opacity: 1;
  outline: 0;
  height: 36px;
  border-radius: 36px;
  padding: 0 1em;
  font-size: 16px;
  color: #ff379c;
  border: 1px solid #ff379c;
  background-color: white;
  margin-left: 24px;
  margin-top: 16px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
    font-size: 0.32rem;
  }
}
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn:hover,
.manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn.active {
  background-color: #ff379c;
  color: white;
  border: 1px solid #ff379c;
}
@media screen and (max-width: 960px) {
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products {
    padding-left: 0.2rem;
  }
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img {
    border-radius: 20px;
  }
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
    margin-top: 0.32rem;
    margin-bottom: 0.32rem;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
  }
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-name {
    font-size: 0.4rem;
    padding: 0 0.32rem;
  }
  .manufacturing-center .manufacturing-center-con .manufacturing-center-products .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
    height: 0.64rem;
    margin-left: 0.32rem;
    margin-top: 0.32rem;
  }
}
.infomations {
  padding-top: 150px;
  background: url('../images/static/bg-blue@2x.jpg') center top no-repeat;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .infomations {
    padding-top: 0.72rem;
    margin-bottom: 1.2rem;
    background-size: auto 6.4rem;
  }
}
.infomations .infomations-con {
  width: 100%;
  max-width: 1200px;
}
.infomations .infomations-con .section-des {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: lighter;
  color: white;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .section-des {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .section-des {
    padding: 0 0.2rem;
  }
}
.infomations .infomations-con .section-title {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
  margin-top: 16px;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .section-title {
    font-size: 0.54rem;
    padding: 0 0.2rem;
    margin-bottom: 0.48rem;
    margin-top: 0.32rem;
  }
}
.infomations .infomations-con .infomations-wrapper {
  display: flex;
  align-items: flex-start;
}
.infomations .infomations-con .infomations-wrapper .infomation-col {
  width: 50%;
  padding: 20px;
}
.infomations .infomations-con .infomations-wrapper .infomation-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic {
  width: 50%;
  padding: 12px;
  position: relative;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 15;
  font-size: 18px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-content {
    font-size: 0.32rem;
  }
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-content h4 {
  margin: 0;
  font-weight: normal;
  padding: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic:hover {
  opacity: 0.7;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic {
  padding: 15px 12px;
  font-size: 18px;
  color: #636363;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic {
    font-size: 0.32rem;
  }
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic h4 {
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic span {
  color: #4f4f4f;
  flex: none;
  white-space: nowrap;
}
.infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic:hover h4,
.infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic:hover span {
  color: #ff379c;
}
@media screen and (max-width: 960px) {
  .infomations .infomations-con .infomations-wrapper {
    flex-flow: column;
  }
  .infomations .infomations-con .infomations-wrapper .infomation-col {
    width: 100%;
    padding: 0.2rem;
  }
  .infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic {
    padding: 0.2rem;
  }
  .infomations .infomations-con .infomations-wrapper .infomation-card .item-has-pic .infomation-card-item-content {
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
  }
  .infomations .infomations-con .infomations-wrapper .infomation-card .item-no-pic {
    padding: 0.24rem 0.2rem;
  }
}
.about-us {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .about-us {
    margin-bottom: 0.72rem;
  }
}
.about-us .about-us-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-container {
    padding: 0 0.2rem;
  }
}
.about-us .about-us-container .section-title {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-container .section-title {
    font-size: 0.54rem;
    margin-bottom: 0.48rem;
  }
}
.about-us .about-us-content {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-content {
    flex-flow: column;
  }
}
.about-us .about-us-content .about-us-content-right {
  width: 50%;
  text-align: right;
  flex: none;
}
.about-us .about-us-content .about-us-content-right img {
  max-width: 575px;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-content .about-us-content-right {
    width: 100%;
    margin-top: 0.48rem;
  }
  .about-us .about-us-content .about-us-content-right img {
    max-width: 100%;
  }
}
.about-us .about-us-content .about-us-content-left {
  display: flex;
  flex-flow: column;
  width: 50%;
  padding-right: 72px;
}
.about-us .about-us-content .about-us-content-left .about-us-content-left-des {
  font-size: 20px;
  color: #636363;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-content .about-us-content-left .about-us-content-left-des {
    font-size: 0.4rem;
  }
}
.about-us .about-us-content .about-us-content-left .about-us-content-left-title {
  font-size: 36px;
  color: #000;
  margin-bottom: 1em;
}
.about-us .about-us-content .about-us-content-left .about-us-content-left-text {
  text-align: left;
  font-size: 18px;
  color: #4f4f4f;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .about-us .about-us-content .about-us-content-left {
    width: 100%;
    padding-right: 0;
  }
  .about-us .about-us-content .about-us-content-left .about-us-content-left-des {
    font-size: 0.36rem;
  }
  .about-us .about-us-content .about-us-content-left .about-us-content-left-title {
    font-size: 0.48rem;
  }
  .about-us .about-us-content .about-us-content-left .about-us-content-left-text {
    font-size: 0.32rem;
  }
}
.message-board {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .message-board {
    margin-bottom: 0.72rem;
  }
}
.message-board .section-des {
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: lighter;
  color: #000;
}
@media screen and (max-width: 960px) {
  .message-board .section-des {
    font-size: 0.36rem;
    padding: 0 0.2rem;
  }
}
.message-board .section-title {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  margin-top: 16px;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .message-board .section-title {
    font-size: 0.54rem;
    padding: 0 0.2rem;
    margin-bottom: 0.48rem;
    margin-top: 0.32rem;
  }
}
.message-board .message-board-content {
  width: 1200px;
  max-width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .message-board .message-board-content {
    width: 100%;
    padding: 0 0.2rem;
  }
}
.message-board .message-board-content .message-wrapper {
  margin: 0 -12px;
  display: flex;
  align-items: flex-start;
}
.message-board .message-board-content .message-wrapper .message-item {
  width: 33.3%;
  padding: 12px;
}
.message-board .message-board-content .message-wrapper .message-item .message-card {
  height: 360px;
  background-color: #fff;
  font-size: 18px;
  color: #636363;
  position: relative;
  padding-top: 14px;
  padding-right: 14px;
  padding-bottom: 48px;
  display: block;
}
@media screen and (max-width: 960px) {
  .message-board .message-board-content .message-wrapper .message-item .message-card {
    font-size: 0.32rem;
  }
}
.message-board .message-board-content .message-wrapper .message-item .message-card .icon-quote {
  display: block;
  position: absolute;
  z-index: 50;
  width: 67px;
  height: 67px;
  background: url('../images/icons/icon-quote@2x.png') center center no-repeat;
  background-size: 100% 100%;
  right: 0;
  top: 0;
}
.message-board .message-board-content .message-wrapper .message-item .message-card .avatar {
  position: absolute;
  display: block;
  width: 96px;
  height: 96px;
  border: 2px solid #9f9f9f;
  bottom: 0;
  right: 90px;
}
.message-board .message-board-content .message-wrapper .message-item .message-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-board .message-board-content .message-wrapper .message-item .message-card .card-main {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 100%;
  height: 100%;
  border: 1px solid #9f9f9f;
  padding: 60px 26px;
}
.message-board .message-board-content .message-wrapper .message-item .message-card .card-main .main-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .message-board .message-board-content .message-wrapper .message-item .message-card .card-main .main-text {
    font-size: 0.32rem;
  }
}
.message-board .message-board-content .message-wrapper .message-item .message-card .card-main .name {
  display: block;
  color: #80c32f;
  font-size: 20px;
  font-weight: bold;
  margin: 0.5em 0;
}
.message-board .message-board-content .message-wrapper .message-item .message-card .card-main .company {
  display: block;
  color: #9f9f9f;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .message-board .message-board-content .message-wrapper .message-item .message-card .card-main .company {
    font-size: 0.32rem;
  }
}
.message-board .message-board-content .message-wrapper .message-item .message-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .message-board .message-board-content .message-wrapper {
    margin: -0.2rem;
    flex-flow: column;
  }
  .message-board .message-board-content .message-wrapper .message-item {
    width: 100%;
    padding: 0.2rem;
  }
  .message-board .message-board-content .message-wrapper .message-item .message-card {
    height: auto;
    padding-top: 0.28rem;
    padding-right: 0.28rem;
    padding-bottom: 0.9rem;
  }
  .message-board .message-board-content .message-wrapper .message-item .message-card .icon-quote {
    width: 1.2rem;
    height: 1.2rem;
  }
  .message-board .message-board-content .message-wrapper .message-item .message-card .avatar {
    width: 1.8rem;
    height: 1.8rem;
    right: 1.8rem;
    bottom: 0;
  }
  .message-board .message-board-content .message-wrapper .message-item .message-card .card-main .name {
    font-size: 0.36rem;
    margin-top: 0.64rem;
  }
}
.slogan {
  background-color: #272727;
  color: #fff;
}
.slogan .slogan-content {
  padding: 20px;
  min-height: 172px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slogan .slogan-content .slogan-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.slogan .slogan-content .slogan-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  background-color: #bfea01;
  height: 60px;
  border-radius: 60px;
  border: 1px solid #bfea01;
  padding: 0 1em;
  margin-left: 1em;
  flex: none;
}
@media screen and (max-width: 960px) {
  .slogan .slogan-content .slogan-btn {
    font-size: 0.4rem;
  }
}
.slogan .slogan-content .slogan-btn:hover {
  background-color: transparent;
  color: #bfea01;
}
@media screen and (max-width: 960px) {
  .slogan .slogan-content {
    padding: 0.4rem 0.2rem;
    flex-flow: column;
    min-height: 2.44rem;
  }
  .slogan .slogan-content .slogan-text {
    font-size: 0.48rem;
  }
  .slogan .slogan-content .slogan-btn {
    font-size: 0.4rem;
    height: 0.8rem;
    margin-top: 0.4rem;
    margin-left: 0;
  }
}
/** 弹窗层 Layer **/
.layer {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.layer.show {
  display: block;
}
.layer .layer-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.layer .layer-content {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
  width: 720px;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .layer .layer-content {
    font-size: 0.32rem;
  }
}
.layer .layer-content .layer-header {
  border-bottom: 1px solid #272727;
  padding: 24px;
  position: relative;
}
.layer .layer-content .layer-header .layer-title {
  font-size: 30px;
  color: #000;
}
.layer .layer-content .layer-header .layer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: url('../images/icons/icon-close-layer@2x.png') center center no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}
.layer .layer-content .layer-header .layer-close:hover {
  transform: rotate(180deg);
}
.layer .layer-content .layer-body {
  min-height: 480px;
}
.layer .layer-content .layer-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 24px 48px 24px;
}
.layer .layer-content .layer-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 0 1em;
  margin-left: 1em;
  border-radius: 60px;
  height: 48px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .layer-body {
    padding: 0 0.2rem;
  }

  .layer .layer-content .layer-footer > a {
    font-size: 0.32rem;
  }
}
.layer .layer-content .layer-footer > a.reset-btn {
  background-color: #f7f8f9;
  border: 1px solid #d3d8de;
}
.layer .layer-content .layer-footer > a.submit-btn {
  color: white;
  background-color: #ff379c;
  border: 1px solid #ff379c;
}
.layer .layer-content .layer-footer > a .icon-send {
  display: block;
  width: 20px;
  height: 20px;
  background: url('../images/icons/icon-send-white@2x.png') center center no-repeat;
  background-size: 100%;
  margin-left: 1em;
}
.layer .layer-content .layer-footer > a:hover {
  opacity: 0.7;
}
.layer .layer-content .caculate {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.layer .layer-content .caculate .item-1 {
  width: 50%;
  display: flex;
  flex-flow: column;
  padding: 24px;
  position: relative;
  height: 118px;
}
.layer .layer-content .caculate .item-1 .caculate-label {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #636363;
  cursor: pointer;
  pointer-events: all;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-1 .caculate-label {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-1 .caculate-label .icon-arrow-down {
  display: block;
  margin-left: 0.5em;
  width: 14px;
  height: 9px;
  background: url('../images/icons/icon-arrow-down@2x.png') center center no-repeat;
  background-size: contain;
}
.layer .layer-content .caculate .item-1 .form-input {
  display: block;
  padding: 1.9em 0 0.75em 0;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  right: 24px;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-1 .form-input {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-2 {
  width: 100%;
}
.layer .layer-content .caculate .item-2 .caculate-label {
  display: flex;
  align-items: center;
  padding-left: 24px;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-2 .caculate-label {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-2 .caculate-size {
  width: 100%;
  margin-top: 0.5em;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-2 .caculate-size {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-2 .item-3 {
  width: 20%;
}
.layer .layer-content .caculate .item-2 .item-3.paper {
  width: 25%;
}
.layer .layer-content .caculate .item-2 .item-3 .caculate-label {
  padding: 0 1em;
  font-size: 18px;
  color: #4f4f4f;
  font-weight: 300;
  display: flex;
  align-items: center;
  height: 45px;
  background-color: #f7f8f9;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-2 .item-3 .caculate-label {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-2 .item-3 .caculate-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  height: 90px;
  padding: 0 0.5em;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate .item-2 .item-3 .caculate-input {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate .item-2 .item-3 .caculate-input .cell-input,
.layer .layer-content .caculate .item-2 .item-3 .caculate-input .cell-select {
  width: 100%;
  min-width: 80px;
  height: 32px;
  border-radius: 3px;
  border: 1px solid #d3d8de;
  padding: 0 1em;
  display: flex;
  align-items: center;
  text-align: right;
  color: #000;
  outline: 0;
  opacity: 1;
}
.layer .layer-content .caculate .item-2 .item-3 .caculate-input .unit {
  font-weight: 300;
  margin-left: 0.25em;
}
.layer .layer-content .caculate-result {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  padding: 48px 24px;
}
.layer .layer-content .caculate-result .label {
  font-weight: 300;
  font-size: 18px;
  margin-right: 1em;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .caculate-result .label {
    font-size: 0.32rem;
  }
}
.layer .layer-content .caculate-result .value {
  font-size: 22px;
  font-weight: 700;
}
.layer .layer-content .layer-textarea {
  display: block;
  height: 400px;
  width: 100%;
  font-size: 18px;
  background-color: #f0f0ed;
  color: #000;
  padding:.5em 1em;
  margin-bottom: 24px;
  border-color: #ededed;
  border-radius: 10px;
  text-indent:5em;
}
@media screen and (max-width: 960px) {
  .layer .layer-content .layer-textarea {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 960px) {
  .layer .layer-content {
    width: 90%;
    padding: 0;
  }
  .layer .layer-content .layer-header {
    padding: 0.32rem;
  }
  .layer .layer-content .layer-header .layer-title {
    font-size: 0.44rem;
  }
  .layer .layer-content .layer-header .layer-close {
    position: absolute;
    top: 0.24rem;
    right: 0.24rem;
    width: 0.4rem;
    height: 0.4rem;
  }
  .layer .layer-content .layer-footer {
    padding: 0 0.32rem 0.32rem 0.32rem;
  }
  .layer .layer-content .layer-footer > a {
    height: 0.8rem;
  }
  .layer .layer-content .layer-footer > a.submit-btn .icon-send {
    width: 0.32rem;
    height: 0.32rem;
  }
  .layer .layer-content .layer-body {
    min-height: 0;
  }
  .layer .layer-content .caculate .item-1 {
    height: 2rem;
    padding: 0.32rem;
  }
  .layer .layer-content .caculate .item-1 .caculate-label .icon-arrow-down {
    width: 0.28rem;
    height: 0.18rem;
  }
  .layer .layer-content .caculate .item-1 .form-input {
    left: 0.32rem;
    right: 0.32rem;
    top: 0.32rem;
    bottom: 0.32rem;
  }
  .layer .layer-content .caculate .item-2 .caculate-label {
    padding-left: 0.32rem;
  }
  .layer .layer-content .caculate .item-2 .caculate-size {
    flex-wrap: wrap;
    margin: 0.2rem 0.2rem 0.2rem 0.2rem;
    width: auto;
  }
  .layer .layer-content .caculate .item-2 .item-3 {
    width: 50%;
  }
  .layer .layer-content .caculate .item-2 .item-3.paper {
    width: 50%;
  }
  .layer .layer-content .caculate .item-2 .item-3 .caculate-label {
    height: 0.8rem;
  }
  .layer .layer-content .caculate .item-2 .item-3 .caculate-input {
    height: 1.8rem;
    padding: 0 0.5em;
  }
  .layer .layer-content .caculate .item-2 .item-3 .caculate-input .cell-input,
  .layer .layer-content .caculate .item-2 .item-3 .caculate-input .cell-select {
    width: 100%;
    height: 0.8rem;
  }
  .layer .layer-content .caculate-result {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    padding: 0.64rem 0.32rem;
  }
  .layer .layer-content .caculate-result .value {
    font-size: 0.48rem;
    font-weight: 700;
  }
  .layer .layer-content .layer-textarea {
    height: 5.4rem;
    margin-bottom: 0.32rem;
  }
}
/**
* Login && Register && Member
**/
.login {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  background-color: #e2e3e7;
  padding: 20px ;
}
@media screen and (max-width: 960px) {
  .login {
    width: 100vw;
    padding: 0.2rem;
  }
}
.login .login-box {
  display: flex;
  font-size: 0;
  max-width: 1720px;
  width: 100%;
  background-color: white;
  align-items: stretch;
}
.login .login-box .login-form-box {
  width: 680px;
  min-width: 630px;
  padding: 180px 100px;
  min-height: calc(100vh - 40px);
}
.login .login-box .login-form-bg {
  width: 100%;
  max-width: calc(100% - 680px);
  border-top-left-radius: 130px;
  background: url('../images/static/login-bg@2x.jpg') center center no-repeat;
  background-size: cover;
}
.login .login-box .login-title {
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 120px;
  margin-top: 0;
}
.login .login-box .login-title.register-title {
  margin-bottom: 36px;
}
.login .login-box .login-des {
  font-size: 16px;
  color: #636363;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-des {
    font-size: 0.32rem;
  }
}
.login .login-box .login-form-item {
  display: block;
  margin-bottom: 24px;
}
.login .login-box .login-form-item .login-form-label {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  line-height: 1;
  color: #636363;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-item .login-form-label {
    font-size: 0.32rem;
  }
}
.login .login-box .login-form-item .login-input {
  display: flex;
  width: 430px;
  align-items: center;
  outline: 0;
  border: 1px solid #d9d9d9;
  height: 56px;
  background-color: white;
  padding: 0 1em;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-item .login-input {
    font-size: 0.32rem;
  }
}
.login .login-box .login-form-item .login-input.login-input-inline {
  width: 260px;
  margin-right: 20px;
  display: inline-flex;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-item .login-input.login-input-inline {
    width: 5.4rem;
    margin-right: 0.2rem;
  }
}
.login .login-box .login-form-item .inline-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  background-color: #ff379c;
  color: #fff;
  font-size: 16px;
  -webkit-appearance: none;
  box-shadow: none;
  outline: 0;
  border: 1px solid #ff379c;
  cursor: pointer;
  width: 150px;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-item .inline-btn {
    font-size: 0.32rem;
  }
}
.login .login-box .login-form-item .inline-btn:disabled {
  background-color: rgba(255, 55, 156, 0.3);
  border: 1px solid rgba(255, 55, 156, 0.3);
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-item .inline-btn {
    width: calc(100% - 5.6rem);
    height: 0.88rem;
  }
}
.login .login-box .login-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #ff379c;
  color: #fff;
  font-size: 18px;
  width: 430px;
  max-width: 100%;
  -webkit-appearance: none;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  margin: 8px 0 32px 0;
  border: none;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-btn {
    font-size: 0.32rem;
  }
}
.login .login-box .login-btn:hover {
  opacity: 0.7;
}
.login .login-box .login-links {
  display: flex;
  font-size: 18px;
  font-weight: 300;
  color: #636363;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-links {
    font-size: 0.32rem;
  }
}
.login .login-box .login-links > a {
  color: #ff379c;
}
.login .login-box .login-links > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .login .login-box .login-form-bg {
    display: none;
  }
  .login .login-box .login-form-box {
    width: 100%;
    min-width: 0;
    padding: 2rem 0.32rem 0.32rem 0.32rem;
    min-height: calc(100vh - 0.4rem);
  }
  .login .login-box .login-form-box.register-form-box {
    padding-top: 0.64rem;
  }
  .login .login-box .login-title {
    margin-bottom: 0.64rem;
    font-size: 0.54rem;
  }
  .login .login-box .login-title.register-title {
    margin-bottom: 0.32rem;
  }
  .login .login-box .login-des {
    margin-bottom: 0.24rem;
  }
  .login .login-box .login-form-item {
    display: block;
    margin-bottom: 0.32rem;
  }
  .login .login-box .login-form-item .login-form-label {
    display: block;
    padding: 0.75em 0;
  }
  .login .login-box .login-form-item .login-input {
    height: 0.88rem;
    width: 100%;
  }
  .login .login-box .login-btn {
    height: 0.88rem;
    margin: 0.16rem 0 0.48rem 0;
    border: none;
  }
  .login .login-box .login-btn:hover {
    opacity: 0.7;
  }
}
.member {
  padding: 100px 20px;
}
@media screen and (max-width: 960px) {
  .member {
    padding: 0.64rem 0.2rem;
  }
}
.member .member-con {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .member .member-con {
    font-size: 0.32rem;
  }
}
.member .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .member .section-title {
    font-size: 0.54rem;
    margin-bottom: 0.54rem;
  }
}
.member .member-avatar {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
.member .member-avatar .preview-circle {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #272727;
  overflow: hidden;
  margin-right: 12px;
}
.member .member-avatar .preview-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member .member-avatar .upload-btn input[type=file] {
  display: none;
}
.member .member-avatar .upload-btn label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  padding: 0 1em;
  font-size: 20px;
  background-color: #edf2f5;
  border-radius: 12px;
}
@media screen and (max-width: 960px) {
  .member .member-avatar .upload-btn label {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .member .member-avatar {
    margin-bottom: 0.72rem;
  }
  .member .member-avatar .preview-circle {
    width: 2rem;
    height: 2rem;
    margin-right: 0.24rem;
  }
  .member .member-avatar .upload-btn label {
    height: 1rem;
    border-radius: 0.24rem;
  }
}
.member .member-info-form {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.member .member-info-form .member-info-item {
  width: 50%;
  padding: 12px;
  display: block;
}
.member .member-info-form .member-info-item .member-info-label {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  color: #4f4f4f;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .member .member-info-form .member-info-item .member-info-label {
    font-size: 0.4rem;
  }
}
.member .member-info-form .member-info-item .login-input {
  display: flex;
  width: 100%;
  height: 60px;
  border: 1px solid #e1e2e6;
  border-radius: 16px;
  font-size: 20px;
  align-items: center;
  padding: 0 1em;
}
@media screen and (max-width: 960px) {
  .member .member-info-form .member-info-item .login-input {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .member .member-info-form {
    margin: 0 -0.2rem;
  }
  .member .member-info-form .member-info-item {
    width: 100%;
    padding: 0.2rem;
  }
  .member .member-info-form .member-info-item .login-input {
    height: 1rem;
    border-radius: 0.24rem;
  }
}
.member .member-btns {
  display: flex;
  align-items: center;
}
.member .save-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
  font-size: 18px;
  background-color: #ff379c;
  border-radius: 60px;
  color: #fff;
  border: 1px solid #ff379c;
  height: 54px;
  cursor: pointer;
  margin-top: 1em;
  border-radius: 12px;
}
@media screen and (max-width: 960px) {
  .member .save-btn {
    font-size: 0.32rem;
  }
}
.member .save-btn:hover {
  background-color: #fff;
  border-color: #ff379c;
  color: #ff379c;
}
@media screen and (max-width: 960px) {
  .member .save-btn {
    height: 0.8rem;
    padding: 0 1em;
  }
}
@media screen and (max-width: 960px) {
  .member .save-btn {
    height: 1rem;
    border-radius: 0.24rem;
  }
}
.member .logout-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
  font-size: 18px;
  background-color: #ff379c;
  border-radius: 60px;
  color: #fff;
  border: 1px solid #ff379c;
  height: 54px;
  cursor: pointer;
  background-color: #edf2f5;
  color: #1e2023;
  border-radius: 12px;
  border: 1px solid #edf2f5;
  margin-left: 48px;
  margin-top: 1em;
}
@media screen and (max-width: 960px) {
  .member .logout-btn {
    font-size: 0.32rem;
  }
}
.member .logout-btn:hover {
  background-color: #fff;
  border-color: #ff379c;
  color: #ff379c;
}
@media screen and (max-width: 960px) {
  .member .logout-btn {
    height: 0.8rem;
    padding: 0 1em;
  }
}
.member .logout-btn:hover {
  background-color: white;
  color: #ff379c;
  border: 1px solid #ff379c;
}
@media screen and (max-width: 960px) {
  .member .logout-btn {
    height: 1rem;
    border-radius: 0.24rem;
  }
}
/**
* Page
**/
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -20px;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .row {
    font-size: 0.4rem;
  }
}
.row + .row {
  margin-top: 1em;
}
.row .col {
  width: 50%;
  padding: 20px;
}
.row.col-1 .col {
  width: 100%;
}
.row.col-3 .col {
  width: 33.3%;
}
@media screen and (max-width: 960px) {
  .row {
    margin: 0;
  }
  .row .col {
    width: 100%;
    padding: 0.2rem;
  }
  .row.col-3 .col {
    width: 100%;
  }
}
.page-content {
  display: flex;
  justify-content: center;
  padding: 72px 0;
}
.page-content .page-con {
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 960px) {
  .page-content {
    padding: 1rem 0;
  }
}
.page-content .about-title {
  font-size: 45px;
  margin-bottom: 1em;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .page-content .about-title {
    font-size: 0.54rem;
  }
}
.page-content .about-des {
  display: block;
  text-align: left;
  font-size: 24px;
  color: #4f4f4f;
  line-height: 1.5;
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .page-content .about-des {
    font-size: 0.36rem;
    padding-right: 0;
  }
}
.page-content .contact-item {
  display: flex;
  align-items: flex-start;
}
.page-content .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 24px;
}
.page-content .contact-item .contact-title {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 24px;
  font-size: 45px;
  font-weight: bold;
}
.page-content .contact-item .contact-des {
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .page-content .contact-item .contact-des {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .page-content .contact-item .contact-icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.24rem;
  }
  .page-content .contact-item .contact-title {
    height: 0.8rem;
    font-size: 0.54rem;
    margin-bottom: 0.24rem;
  }
}
/**
* 列表页面
**/
.paginations {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.paginations .pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #4f4f4f;
  width: 48px;
  height: 48px;
  border: 1px solid #d3d8de;
  background-color: #fff;
  margin: 0 10px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .paginations .pagination-item {
    font-size: 0.32rem;
  }
}
.paginations .pagination-item .icon-arrow-left,
.paginations .pagination-item .icon-arrow-right {
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.paginations .pagination-item .icon-arrow-left.icon-arrow-left,
.paginations .pagination-item .icon-arrow-right.icon-arrow-left {
  background-image: url('../images/icons/prev-page@2x.png');
}
.paginations .pagination-item .icon-arrow-left.icon-arrow-right,
.paginations .pagination-item .icon-arrow-right.icon-arrow-right {
  background-image: url('../images/icons/next-page@2x.png');
}
.paginations .pagination-item:hover,
.paginations .pagination-item.current {
  background-color: #ff379c;
  border-color: #ff379c;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .paginations {
    padding: 0.64rem 0;
  }
  .paginations .pagination-item {
    width: 0.96rem;
    height: 0.96rem;
    margin: 0 0.2rem;
  }
  .paginations .pagination-item .icon-arrow-left,
  .paginations .pagination-item .icon-arrow-right {
    width: 0.2rem;
    height: 0.36rem;
  }
  .paginations .pagination-item.page-number {
    display: none;
  }
}
.categorys-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 90px 0 60px 0;
}
.categorys-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 60px;
  margin: 16px;
  font-size: 20px;
  font-weight: 400;
  background-color: #f5f5f5;
  padding: 0 1.2em;
}
@media screen and (max-width: 960px) {
  .categorys-list li {
    font-size: 0.4rem;
  }
}
.categorys-list li a {
  color: inherit;
}
.categorys-list li:hover,
.categorys-list li.active,
.categorys-list li.current {
  background-color: #ff379c;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .categorys-list {
    padding: 1rem 0;
  }
  .categorys-list li {
    height: 0.8rem;
    margin: 0.2rem;
  }
}
.product-con {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.list-page {
  background-position: top center;
  background-repeat: no-repeat;
}
.categorys-result-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.categorys-result-list .product-item {
  width: 25%;
  padding: 20px;
  margin-bottom: 20px;
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap {
  display: block;
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img {
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100%;
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap:hover .manufacturing-center-product-item-img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #4f4f4f;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 24px;
  padding-right: 0.24px;
}
@media screen and (max-width: 960px) {
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
    font-size: 0.32rem;
  }
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-name {
  font-size: 20px;
  color: #000;
  padding: 0 24px;
  margin: 0;
  line-height: 1.2;
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  opacity: 1;
  outline: 0;
  height: 36px;
  border-radius: 36px;
  padding: 0 1em;
  font-size: 16px;
  color: #ff379c;
  border: 1px solid #ff379c;
  background-color: white;
  margin-left: 24px;
  margin-top: 16px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
    font-size: 0.32rem;
  }
}
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn:hover,
.categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn.active {
  background-color: #ff379c;
  color: white;
  border: 1px solid #ff379c;
}
@media screen and (max-width: 960px) {
  .categorys-result-list .product-item {
    width: 100%;
    padding: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-img {
    border-radius: 20px;
  }
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-description {
    margin-top: 0.32rem;
    margin-bottom: 0.32rem;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
  }
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-name {
    font-size: 0.4rem;
    padding: 0 0.32rem;
  }
  .categorys-result-list .product-item .manufacturing-center-product-item-wrap .manufacturing-center-product-item-btn {
    height: 0.64rem;
    margin-left: 0.32rem;
    margin-top: 0.32rem;
  }
}
.categorys-result-empty {
  padding-bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.categorys-result-empty img {
  width: 190px;
}
@media screen and (max-width: 960px) {
  .categorys-result-empty {
    padding-bottom: 2rem;
  }
  .categorys-result-empty img {
    width: 3.2rem;
  }
}
.infomations-con {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .infomations-con {
    padding: 0 0.2rem;
  }
}
.infomations-con .infomation-item {
  width: 100%;
  border-top: 1px solid #e5e5e5;
}
.infomations-con .infomation-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.infomations-con .infomation-item .infomation-item-wrap {
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap {
    flex-flow: column;
    padding: 0.64rem 0;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date .date {
  color: #999;
  font-weight: bold;
  font-size: 50px;
  line-height: 60px;
  flex: none;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .date {
    font-size: 0.54rem;
    line-height: 0.8rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date .devide {
  display: block;
  width: 1px;
  background-color: #e5e5e5;
  height: 60px;
  margin: 0 20px;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .devide {
    height: 0.8rem;
    margin: 0 0.4rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date .years {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date .years span {
  display: block;
  font-size: 18px;
  color: #999;
  font-weight: 300;
  margin-bottom: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .years span {
    font-size: 0.32rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-date .years .icon-clock {
  width: 12px;
  height: 12px;
  background: url('../images/icons/icon-clock@2x.png') no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .years {
    height: 0.8rem;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .years span {
    margin-bottom: 0.1rem;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-date .years .icon-clock {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main {
  padding-left: 64px;
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-img {
  width: 360px;
  margin-right: 32px;
  flex: none;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-img .img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-label {
  display: inline-flex;
  align-items: center;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  padding: 0 1em;
  height: 32px;
  background-color: #f0f0ed;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-label {
    font-size: 0.32rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 32px;
  font-size: 24px;
  line-height: 1.3;
  height: 2.6em;
  color: #000;
  width: 100%;
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-des {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.5em;
  font-size: 18px;
  color: #4f4f4f;
  line-height: 1.3;
  height: 3.9em;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-des {
    font-size: 0.32rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap .infomation-main .icon-advance {
  display: inline-flex;
  width: 23px;
  height: 16px;
  background: url('../images/icons/icon-advance@2x.png') no-repeat center;
  background-size: 100%;
  margin-top: 36px;
}
@media screen and (max-width: 960px) {
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main {
    padding-left: 0;
    padding-top: 0.4rem;
    flex-flow: column;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.24rem;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-label {
    height: 0.6rem;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-title {
    margin-top: 0.36rem;
    font-size: 0.44rem;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .infomation-des {
    margin-top: 0;
  }
  .infomations-con .infomation-item .infomation-item-wrap .infomation-main .icon-advance {
    width: 0.46rem;
    height: 0.32rem;
    margin-top: 0.32rem;
  }
}
.infomations-con .infomation-item .infomation-item-wrap:hover .infomation-main .infomation-title {
  color: #ff379c;
}
.article {
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .article {
    padding-bottom: 1rem;
  }
}
.article .article-con {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .article .article-con {
    padding: 0 0.2rem;
  }
}
.article .article-con .breadcrumbs {
  display: flex;
  align-items: center;
  padding: 36px 0;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .article .article-con .breadcrumbs {
    font-size: 0.32rem;
  }
}
.article .article-con .breadcrumbs span {
  color: #9f9f9f;
  font-weight: 300;
  padding: 0 0.1em;
}
.article .article-con .breadcrumbs a {
  color: #636363;
  cursor: pointer;
}
.article .article-con .breadcrumbs a:hover {
  color: #000;
}
.article .article-con .breadcrumbs a.current {
  color: #000;
}
@media screen and (max-width: 960px) {
  .article .article-con .breadcrumbs {
    padding: 0.64rem 0;
  }
}
.article .article-con .article-main {
  padding: 20px;
  background-color: #fff;
}
.article .article-con .article-main .article-title {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.article .article-con .article-main .date {
  display: block;
  text-align: center;
  margin: 24px;
  color: #999;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .article .article-con .article-main .date {
    font-size: 0.32rem;
  }
}
.article .article-con .article-main p {
  font-size: 20px;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .article .article-con .article-main p {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .article .article-con .article-main {
    padding: 0.2rem;
  }
  .article .article-con .article-main .article-title {
    font-size: 0.44rem;
    padding: 0.32rem;
  }
  .article .article-con .article-main .date {
    margin: 0.32rem;
  }
}
.board-con {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .board-con {
    padding: 0 0.2rem;
  }
}
.board-form {
  display: flex;
  justify-content: center;
  padding: 100px 0 50px 0;
}
.board-form .board-form-item {
  position: relative;
  max-width: 1230px;
  width: 100%;
}
.board-form .board-form-item .board-form-input {
  display: block;
  width: 100%;
  height: 70px;
  border: 1px solid #aab2d0;
  border-radius: 5px;
  background-color: white;
  font-size: 20px;
  line-height: 40px;
  padding: 14px calc(1em + 46px) 14px 1em;
  outline: 0;
  box-shadow: none;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .board-form .board-form-item .board-form-input {
    font-size: 0.4rem;
  }
}
.board-form .board-form-item .board-form-btn {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 960px) {
  .board-form {
    padding: 1rem 0 0.64rem 0;
  }
  .board-form .board-form-item .board-form-input {
    height: 1.2rem;
    border-radius: 10px;
    line-height: 0.6rem;
    padding: calc(0.3rem - 1px) calc(1em + 0.6rem) calc(0.3rem - 1px) 1em;
  }
  .board-form .board-form-item .board-form-btn {
    right: 0.4rem;
    bottom: 0.3rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}
.board-item {
  border-bottom: 1px solid #e5e5e5;
}
.board-item .board-item-wrap {
  display: flex;
  align-items: flex-start;
  padding: 48px 20px;
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap {
    flex-flow: column;
    padding: 0.64rem 0.2rem;
  }
}
.board-item .board-item-wrap .board-item-avatar {
  width: 100px;
  height: 100px;
  border: 1px solid #e5e5e5;
  margin-right: 40px;
  flex: none;
}
.board-item .board-item-wrap .board-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap .board-item-avatar {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0;
    margin-bottom: 0.32rem;
  }
}
.board-item .board-item-wrap .board-item-content .board-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.board-item .board-item-wrap .board-item-content .board-item-title h3 {
  font-size: 24px;
  color: #000;
}
.board-item .board-item-wrap .board-item-content .board-item-title span {
  font-size: 18px;
  color: #636363;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap .board-item-content .board-item-title span {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap .board-item-content .board-item-title h3 {
    font-size: 0.44rem;
  }
}
.board-item .board-item-wrap .board-item-content .board-item-des {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 24px;
  color: #636363;
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap .board-item-content .board-item-des {
    font-size: 0.32rem;
  }
}
.board-item .board-item-wrap .board-item-content .board-item-des p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
  font-size: inherit;
  line-height: inherit;
  height: 3.9em;
}
@media screen and (max-width: 960px) {
  .board-item .board-item-wrap .board-item-content .board-item-des {
    margin-top: 0.32rem;
  }
}
.board-item .board-item-wrap:hover .board-item-content .board-item-title h3 {
  color: #ff379c;
}
.message-item-top {
  padding: 54px 32px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 960px) {
  .message-item-top {
    padding: 0.64rem 0.32rem;
  }
}
.message-item-top .message-item-title {
  display: block;
  font-size: 24px;
  color: #000;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .message-item-top .message-item-title {
    font-size: 0.44rem;
    margin-bottom: 0.32rem;
  }
}
.message-item-top .message-item-info {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .message-item-top .message-item-info {
    flex-flow: column;
  }
}
.message-item-top .message-item-info .message-item-ava {
  flex: none;
  display: inline-block;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  margin-right: 24px;
}
.message-item-top .message-item-info .message-item-ava img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .message-item-top .message-item-info .message-item-ava {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0;
    margin-bottom: 0.32rem;
  }
}
.message-item-top .message-item-info .message-item-info-con {
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .message-item-top .message-item-info .message-item-info-con {
    font-size: 0.32rem;
  }
}
.message-item-top .message-item-info .message-item-info-con p {
  color: #000;
  line-height: 1.3;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .message-item-top .message-item-info .message-item-info-con p {
    margin-bottom: 0.32rem;
  }
}
.message-item-top .message-item-info .message-item-info-con span {
  color: #636363;
  font-weight: 300;
}
.message-item-bottom {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 960px) {
  .message-item-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
.message-item-bottom .message-item-info {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-left: 100px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 960px) {
  .message-item-bottom .message-item-info {
    padding-left: 0;
    padding-top: 0.64rem;
    padding-bottom: 0.64rem;
  }
}
.message-item-bottom .message-item-info .message-item-ava {
  flex: none;
  display: inline-block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  margin-right: 24px;
}
.message-item-bottom .message-item-info .message-item-ava img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .message-item-bottom .message-item-info .message-item-ava {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.32rem;
  }
}
.message-item-bottom .message-item-info .message-item-info-con {
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .message-item-bottom .message-item-info .message-item-info-con {
    font-size: 0.32rem;
  }
}
.message-item-bottom .message-item-info .message-item-info-con h3 {
  display: block;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .message-item-bottom .message-item-info .message-item-info-con h3 {
    font-size: 0.4rem;
  }
}
.message-item-bottom .message-item-info .message-item-info-con p {
  margin: 1em 0 1.25em 0;
  color: #4f4f4f;
  font-weight: 400;
}
.message-item-bottom .message-item-info .message-item-info-con span {
  color: #636363;
  font-weight: 300;
}
.detail-con {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px 100px 20px;
}
@media screen and (max-width: 960px) {
  .detail-con {
    padding: 0 0.2rem 1rem 0.2rem;
  }
}
.detail-con .breadcrumbs {
  display: flex;
  align-items: center;
  padding: 36px 0;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .detail-con .breadcrumbs {
    font-size: 0.32rem;
  }
}
.detail-con .breadcrumbs span {
  color: #9f9f9f;
  font-weight: 300;
  padding: 0 0.1em;
}
.detail-con .breadcrumbs a {
  color: #636363;
  cursor: pointer;
}
.detail-con .breadcrumbs a:hover {
  color: #000;
}
.detail-con .breadcrumbs a.current {
  color: #000;
}
@media screen and (max-width: 960px) {
  .detail-con .breadcrumbs {
    padding: 0.64rem 0;
  }
}
.detail-con .detail-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px;
}
.detail-con .detail-top .detail-top-col {
  width: 50%;
}
.detail-con .detail-top .big-swiper {
  font-size: 0;
  line-height: 1;
  margin-bottom: 16px;
}
.detail-con .detail-top .big-swiper .slide-item-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.detail-con .detail-top .big-swiper .slide-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-con .detail-top .thumbs-swiper .slide-item-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  overflow: hidden;
  z-index: 10;
}
.detail-con .detail-top .thumbs-swiper .slide-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% -4px);
  height: calc(100% -4px);
  object-fit: cover;
  display: block;
  z-index: 15;
}
.detail-con .detail-top .thumbs-swiper .slide-item-img{
 
  border: 2px solid #fff;
 
}

.detail-con .detail-top .thumbs-swiper .swiper-slide-active .slide-item-img{
  border: 2px solid #ff379c;
}

.detail-con .detail-top .detail-info-wrap {
  padding-left: 13.8%;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-top .detail-info-wrap {
    font-size: 0.32rem;
  }
}
.detail-con .detail-top .detail-info-wrap .name {
  display: block;
  line-height: 1.3;
  font-size: 32px;
  color: #000;
  margin-bottom: 12px;
}
.detail-con .detail-top .detail-info-wrap .review{
  display: block;
  margin-bottom: 32px;
}
.detail-con .detail-top .detail-info-wrap .params {
  margin-bottom: 12px;
}
.detail-con .detail-top .detail-info-wrap .params li {
  display: flex;
  padding: 12px 0;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-top .detail-info-wrap .params li {
    font-size: 0.32rem;
  }
}
.detail-con .detail-top .detail-info-wrap .params li .title {
  display: block;
  width: 180px;
  font-weight: 700;
}
.detail-con .detail-top .detail-info-wrap .params li .value {
  font-weight: 400;
}
.detail-con .detail-top .detail-info-wrap .des {
  padding-top: 24px;
  padding-bottom: 48px;
  border-top: 1px solid #e5e5e5;
}
.detail-con .detail-top .detail-info-wrap .des .des-title {
  margin-bottom: 12px;
}
.detail-con .detail-top .detail-info-wrap .des ul li {
  font-size: 18px;
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-top .detail-info-wrap .des ul li {
    font-size: 0.32rem;
  }
}
.detail-con .detail-top .detail-info-wrap .primary-btn {
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-top {
    flex-flow: column;
  }
  .detail-con .detail-top .detail-top-col {
    width: 100%;
  }
  .detail-con .detail-top .big-swiper {
    margin-bottom: 0.24rem;
  }
  .detail-con .detail-top .detail-info-wrap {
    padding-left: 0;
    padding-top: 0.24rem;
    font-size: 18px;
  }
  .detail-con .detail-top .detail-info-wrap .name {
    font-size: 0.54rem;
    margin-bottom: 0.32rem;
  }
  .detail-con .detail-top .detail-info-wrap .params {
    margin-bottom: 0.24rem;
  }
  .detail-con .detail-top .detail-info-wrap .params li {
    display: flex;
    padding: 0.24rem 0;
  }
  .detail-con .detail-top .detail-info-wrap .params li .title {
    width: 4rem;
  }
  .detail-con .detail-top .detail-info-wrap .des {
    padding-top: 0.48rem;
    padding-bottom: 0.72rem;
  }
  .detail-con .detail-top .detail-info-wrap .des .des-title {
    margin-bottom: 0.24rem;
  }
}
@media screen and (max-width: 960px) {
  .detail-con .detail-top .detail-info-wrap {
    font-size: 0.32rem;
  }
}
.detail-con .detail-main-title {
  padding: 0.5em 0;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  border-top: 1px solid #ededed;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-main-title {
    font-size: 0.44rem;
  }
}
.detail-con .detail-table {
  display: block;
  width: 100%;
  border: 1px solid #636363;
}
.detail-con .detail-table li {
  display: flex;
  align-items: stretch;
}
.detail-con .detail-table li .title {
  display: block;
  width: 360px;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  background-color: #f0f2f2;
  padding: 1em 0.5em;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-table li .title {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 960px) {
  .detail-con .detail-table li .title {
    width: 4.8rem;
  }
}
.detail-con .detail-table li .value {
  width: 100%;
  font-size: 18px;
  color: #000;
  padding: 1em 0.5em;
}
@media screen and (max-width: 960px) {
  .detail-con .detail-table li .value {
    font-size: 0.32rem;
  }
}
.detail-con .detail-table li + li {
  border-top: 1px solid #636363;
}
.contact-input {
  width: 100%;
  display:block;
  background-color: #f0f0ed;
  font-size:18px;
  color: #000;
  padding:.5em 1em;
 
  border-radius: 10px;
  outline: none;
  border: 1px solid #ededed;
  line-height: 1.3;
  text-indent: 5em;
}
.contact-form-item{
  margin-bottom: 12px;
  position: relative;
}
.contact-form-item .form-label{
  position: absolute;
  top: 0;
  left: 0;
  width: 5em;
  text-align: left;
  font-size:18px;
  color: #000;
  padding:.5em;
  line-height:1.3;
}



@media screen and (max-width:960px){
  .contact-input{
    font-size: 0.32rem;
  }
}




