.wrap {
  width: 14.4rem;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
  padding-right: 0;
  z-index: 9999;
  transition: 0.3s;
}

header.active {
  background-color: #fff;
  height: 90px;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

header.active .logo img {
  filter: none;
}

header.active .header-navs ul li > a {
  color: #414344;
}

header.active .header-navs ul li > a::after {
  background-color: #15578d;
}

header.active .right-btns .language-change > a .diqiu {
  filter: none;
}

header.active .right-btns .language-change > a span {
  color: #414344;
}

header.active .right-btns .search-btn {
  background-color: #15578d;
}

header.active2 {
  background-color: #fff;
  height: 90px;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

header.active2 .logo img {
  filter: none;
}

header.active2 .header-navs ul li > a {
  color: #414344;
}

header.active2 .header-navs ul li > a::after {
  background-color: #15578d;
}

header.active2 .right-btns .language-change > a .diqiu {
  filter: none;
}

header.active2 .right-btns .language-change > a span {
  color: #414344;
}

header.active2 .right-btns .search-btn {
  background-color: #15578d;
}

header .logo {
  width: 150px;
}

header .logo img {
  width: 100%;
  display: block;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

header .header-navs {
  width: max-content;
  height: 100%;
  margin-left: auto;
  margin-right: 0.6rem;
}

header .header-navs ul {
  display: flex;
  align-items: center;
  height: 100%;
}

header .header-navs ul li {
  position: relative;
  height: 100%;
}

header .header-navs ul li:not(:last-child) {
  margin-right: 0.3rem;
}

header .header-navs ul li.active > a {
}

header .header-navs ul li:hover > a {
  color: #15578d;
}

header .header-navs ul li:hover > a::after {
  width: 100%;
}

header .header-navs ul li:hover .sub {
  display: block;
}

header .header-navs ul li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.05rem;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

header .header-navs ul li > a::after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0.04rem;
  bottom: 0;
  background-color: #15578d;
  transition: 0.3s;
}

header .header-navs ul li .sub {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 100%;
  top: 0.9rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

header .header-navs ul li .sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  padding: 0.1rem 0.15rem;
  color: #000;
  transition: 0.3s;
}

header .header-navs ul li .sub a:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

header .right-btns {
  display: flex;
  align-items: center;
  height: 100%;
}

header .right-btns .language-change {
  position: relative;
  cursor: pointer;
  height: 100%;
}

header .right-btns .language-change:hover .sub {
  display: block;
}

header .right-btns .language-change > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.24rem;
}

header .right-btns .language-change > a .diqiu {
  width: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

header .right-btns .language-change > a .xia {
  width: 0.08rem;
  display: block;
}

header .right-btns .language-change > a span {
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  margin: 0 0.1rem;
}

header .right-btns .language-change .sub {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 100%;
  top: 0.9rem;
  background-color: #fff;
}

header .right-btns .language-change .sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  padding: 0.1rem 0.15rem;
  color: #000;
  transition: 0.3s;
}

header .right-btns .language-change .sub a:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

header .right-btns .search-box {
  display: none;
  margin-right: 0.25rem;
}

header .right-btns .search-box input {
  width: 3.5rem;
  height: 0.6rem;
  background-color: rgba(51, 51, 51, 0.2);
  font-size: 0.18rem;
  padding-left: 0.15rem;
  outline: none;
  border: none;
}

header .right-btns .search-btn {
  width: 90px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

header .right-btns .search-btn img {
  width: 20px;
  display: block;
}

.banner {
  position: relative;
  height: 7.1rem;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper .swiper-slide .banbg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
}

.banner .swiper .swiper-slide .wrap {
  // position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 1.7rem;
  text-align: right;
}
.banner2 .swiper .swiper-slide .wrap {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 0rem;
  display: flex;
}
.banner .swiper .swiper-slide .wrap .ban-textbox {
     position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
width:100%;
}
.banner .swiper .swiper-slide .wrap .ban-textbox h1 {
  font-size: 0.5rem;
  margin-bottom: 0.1rem;
  text-align: center;
}

.banner .swiper .swiper-slide .wrap .ban-textbox p {
  font-size: 0.29rem;
  font-weight: bold;
}

.search-floor {
  transform: translateY(-2.5rem);
  position: fixed;
  width: 100%;
  top: 0.9rem;
  left: 0;
  z-index: 999;
  height: 1.6rem;
  background: linear-gradient(to bottom, #268ec7, #1d6097);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.search-floor.active {
  transform: translateY(0rem);
}

.search-floor p {
  font-size: 0.4rem;
  color: #fff;
  margin-right: 0.35rem;
}

.search-floor .input-box {
  position: relative;
}

.search-floor .input-box input {
  width: 8rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #fff;
  border: none;
  outline: none;
  padding: 0 0.8rem;
  padding-left: 0.4rem;
}

.search-floor .input-box .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.8rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.search-floor .input-box .search-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.search-floor .input-box .search-btn img {
  width: 0.2rem;
  filter: brightness(0);
}

.floor .title-box {
  font-weight: bold;
}

.floor .title-box h2 {
  font-size: 36px;
  color: #15578d;
  margin-bottom: 0.1rem;
}

.floor .title-box .en-title {
  font-size: 14px;
  color: #939393;
}

.intro-floor {
  padding: 1rem 0;
}

.intro-floor .wrap {
  display: flex;
  align-items: center;
}

.intro-floor .wrap .video-box {
  position: relative;
  width: 5.8rem;
  height: 5rem;
  margin-left: 1.4rem;
}

.intro-floor .wrap .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-floor .wrap .video-box .bf-mc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.intro-floor .wrap .video-box .bf-mc img {
  width: 0.55rem;
}

.intro-floor .wrap .intro-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro-floor .wrap .intro-box .intro {
  font-size: 18px;
  color: #666666;
  line-height: 1.8em;
  text-align: justify;
  margin: 0.75rem 0;
}

.intro-floor .wrap .intro-iconlist {
  display: flex;
  align-items: center;
}

.intro-floor .wrap .intro-iconlist .ii-item:not(:last-child) {
  margin-right: 0.6rem;
}

.intro-floor .wrap .intro-iconlist .ii-item:hover .img-box::after {
  height: 100%;
}

.intro-floor .wrap .intro-iconlist .ii-item:hover .img-box img {
  filter: brightness(0) invert(1);
}

.intro-floor .wrap .intro-iconlist .ii-item:hover p {
  color: #15578d;
}

.intro-floor .wrap .intro-iconlist .ii-item .img-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ededed;
  margin-bottom: 0.13rem;
  overflow: hidden;
}

.intro-floor .wrap .intro-iconlist .ii-item .img-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #15578d;
  transition: 0.3s;
}

.intro-floor .wrap .intro-iconlist .ii-item .img-box img {
  width: 50%;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.intro-floor .wrap .intro-iconlist .ii-item p {
  text-align: center;
  font-size: 18px;
  color: #666666;
}
.intro-floor .wrap .intro-iconlist .ii-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.floorbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.num-floor {
  height: 2.25rem;
  position: relative;
}

.num-floor .wrap {
  position: relative;
  z-index: 2;
  height: 100%;
}

.num-floor .wrap .num-list {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.num-floor .wrap .num-list .num-item {
  color: #fff;
}

.num-floor .wrap .num-list .num-item .num {
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}

.num-floor .wrap .num-list .num-item .num span {
  font-size: 0.6rem;
  font-weight: bold;
}

.num-floor .wrap .num-list .num-item p {
  font-size: 0.16rem;
}

.news-floor {
  padding: 0.7rem 0;
  background-color: #f8f8f8;
}

.news-floor .wrap .floor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.news-floor .wrap .floor-top .news-change {
  display: flex;
}

.news-floor .wrap .floor-top .news-change .cha-item {
  width: 120px;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333333;
  transition: 0.3s;
  cursor: pointer;
}

.news-floor .wrap .floor-top .news-change .cha-item.active {
  background-color: #15578d;
  color: #fff;
}

.news-floor .wrap .floor-top .news-change .cha-item:hover {
  background-color: #15578d;
  color: #fff;
}

.news-floor .wrap .floor-top .news-change .cha-item:not(:last-child) {
  margin-right: 0.07rem;
}

.news-floor .wrap .news-content {
  position: relative;
  height: 4.1rem;
  margin-bottom: 0.65rem;
}

.news-floor .wrap .nc-box {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(1rem);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.news-floor .wrap .nc-box.active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

.news-floor .wrap .news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
}

.news-floor .wrap .news-list .news-item {
  background-color: #fff;
  box-shadow: -4px 3px 5px 0px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.news-floor .wrap .news-list .news-item:hover {
  background-color: #15578d;
}

.news-floor .wrap .news-list .news-item:hover .img-box img {
  transform: scale(1.1);
}

.news-floor .wrap .news-list .news-item:hover .text-box .news-title,
.news-floor .wrap .news-list .news-item:hover .text-box p,
.news-floor .wrap .news-list .news-item:hover .text-box .date {
  color: #fff;
}

.news-floor .wrap .news-list .news-item .img-box {
  height: 2.7rem;
  overflow: hidden;
}

.news-floor .wrap .news-list .news-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news-floor .wrap .news-list .news-item .text-box {
  padding: 0.2rem 0.15rem;
}

.news-floor .wrap .news-list .news-item .text-box .news-title {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0.1rem;
}

.news-floor .wrap .news-list .news-item .text-box p {
  font-size: 14px;
  line-height: 1.8em;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 0.43rem;
}

.news-floor .wrap .news-list .news-item .text-box .date {
  font-size: 14px;
  line-height: 1.8em;
  color: #999999;
}

.fenbu-floor {
  position: relative;
  padding: 0.8rem 0;
}

.fenbu-floor .wrap {
  position: relative;
  z-index: 2;
}

.fenbu-floor .wrap .title-box {
  margin-bottom: 0.7rem;
}

.fenbu-floor .wrap .title-box h2 {
  color: #fff;
}

.fenbu-floor .wrap .title-box .en-title {
  color: #fff;
}

.fenbu-floor .wrap .fb-list .fb-item:not(:last-child) {
  margin-bottom: 0.4rem;
}

.fenbu-floor .wrap .fb-list .fb-item .gs-name {
  padding-left: 0.3rem;
  position: relative;
  color: #fff;
  margin-bottom: 0.1rem;
  font-weight: bold;
}

.fenbu-floor .wrap .fb-list .fb-item .gs-name::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.18rem;
  background-color: #fff;
  left: 0;
}

.fenbu-floor .wrap .fb-list .fb-item .text-box {
  padding-left: 0.3rem;
}

.fenbu-floor .wrap .fb-list .fb-item .text-box p {
  line-height: 1.8em;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.6);
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-btn a {
  width: 160px;
  height: 50px;
  background-color: #15578d;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.more-btn a:hover {
  box-shadow: rgba(50, 50, 93, 0.5) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.more-btn button {
  width: 1.6rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  border: none;
  outline: none;
  background-color: #15578d;
  color: #fff;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.more-btn button:hover {
  box-shadow: rgba(50, 50, 93, 0.5) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.mengceng {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: none;
}

.mengceng .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mengceng .video-box video {
  width: 12.8rem;
}

.mengceng .video-box .bigimg {
  width: 12.8rem;
}

.mengceng .video-box iframe {
  width: 12.8rem;
  height: 7rem;
}

.mengceng .video-box .bfclose {
  position: absolute;
  right: -0.64rem;
  top: 0;
  z-index: 9;
  width: 0.3rem;
  cursor: pointer;
}

.mengceng .video-box .bfclose img {
  width: 100%;
  display: block;
  filter: brightness(0) invert(1);
}

.cp-floor .wrap .floor-top .cp-change {
  display: flex;
}

.cp-floor .wrap .floor-top .cp-change .cha-item {
  min-width: 120px;
  padding: 0 15px;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333333;
  transition: 0.3s;
  cursor: pointer;
}

.cp-floor .wrap .floor-top .cp-change .cha-item.active {
  background-color: #15578d;
  color: #fff;
}

.cp-floor .wrap .floor-top .cp-change .cha-item:hover {
  background-color: #15578d;
  color: #fff;
}

.cp-floor .wrap .floor-top .cp-change .cha-item:not(:last-child) {
  margin-right: 0.07rem;
}

.cp-floor .wrap .cp-content {
  position: relative;
  height: 3.8rem;
  margin-bottom: 0.65rem;
}

.cp-floor .wrap .cc-box {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(1rem);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.cp-floor .wrap .cc-box.active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

.cp-floor .wrap .cp-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
}

.cp-floor .wrap .cp-list .cp-item {
  background-color: #fff;
  box-shadow: -4px 3px 5px 0px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.cp-floor .wrap .cp-list .cp-item:hover {
  background-color: #15578d;
}

.cp-floor .wrap .cp-list .cp-item:hover .img-box img {
  transform: scale(1.1);
}

.cp-floor .wrap .cp-list .cp-item:hover .text-box {
  color: #fff;
}

.cp-floor .wrap .cp-list .cp-item .img-box {
  height: 3rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cp-floor .wrap .cp-list .cp-item .img-box img {
  width: 60%;
  transition: 0.3s;
}

.cp-floor .wrap .cp-list .cp-item .text-box {
  padding: 20px 0;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  text-align: center;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.friend-floor {
  padding: 1rem 0;
  position: relative;
}

.friend-floor .wrap {
  position: relative;
  z-index: 2;
}

.friend-floor .wrap .title-box {
  margin-bottom: 0.55rem;
}

.friend-floor .wrap .title-box h2 {
  color: #fff;
}

.friend-floor .wrap .title-box .en-title {
  color: #fff;
}

.friend-floor .wrap .friends-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.2rem;
}

.friend-floor .wrap .friends-box .friend-item {
  height: 1.2rem;
  border-radius: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.friend-floor .wrap .friends-box .friend-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

footer {
  position: relative;
  padding: 0.7rem 0 0.4rem;
}

footer .wrap {
  position: relative;
  z-index: 2;
}

footer .wrap .footer-top {
  display: flex;
  margin-bottom: 1rem;
}

footer .wrap .footer-top .logo-codebox .logo {
  width: 225px;
  margin-bottom: 45px;
}

footer .wrap .footer-top .logo-codebox .logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

footer .wrap .footer-top .logo-codebox .code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .wrap .footer-top .logo-codebox .code-box img {
  width: 100px;
  margin-bottom: 5px;
}

footer .wrap .footer-top .logo-codebox .code-box p {
  color: #b1b2b3;
  font-size: 16px;
}

footer .wrap .footer-top .info-box {
  margin-left: auto;
  display: flex;
  padding-top: 0.2rem;
}

footer .wrap .footer-top .info-box .info-item {
  width: 300px;
}

footer .wrap .footer-top .info-box .info-item:not(:last-child) {
  margin-right: 35px;
}

footer .wrap .footer-top .info-box .info-item .com-name {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

footer .wrap .footer-top .info-box .info-item p {
  font-size: 16px;
  line-height: 1.8em;
  color: #8d8b8c;
}

footer .wrap .support {
  font-size: 0.14rem;
  color: #b1b2b3;
  display: flex;
  align-items: center;
}

footer .wrap .support a {
  color: #b1b2b3;
}

.banner2 {
  position: relative;
  height: 5rem;
}

.banner2.banner3 {
  height: 3rem;
}

.banner2.banner3 .wrap .ban-textbox {
  color: #000;
}

.banner2.banner3 .wrap .ban-textbox .text .line {
  background-color: #999999;
}

.banner2.banner3 .wrap .ban-textbox .text p {
  color: #999999;
}

.banner2 .wrap {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner2.banner4 .wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.banner2 .wrap .ban-textbox {
  color: #fff;
}

.banner2 .wrap .ban-textbox h1 {
  font-size: 0.44rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.banner2 .wrap .ban-textbox .text {
  display: flex;
  align-items: center;
}

.banner2 .wrap .ban-textbox .text .line {
  width: 0.5rem;
  height: 1px;
  background-color: #fff;
}

.banner2 .wrap .ban-textbox .text p {
  font-size: 0.24rem;
  margin: 0 0.3rem;
}

.yw-floor {
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.yw-floor .wrap {
  display: flex;
}

.yw-floor .wrap .ywcon-left {
  margin-top: -0.6rem;
  margin-right: 0.38rem;
}

.yw-floor .wrap .ywcon-left .navs-item {
  width: 3rem;
  background-color: #f6f9fe;
}

.yw-floor .wrap .ywcon-left .navs-item:not(:last-child) {
  margin-bottom: 0.2rem;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-title {
  height: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.25rem;
  background: linear-gradient(to bottom, #1a86ea, #15578d);
}

.yw-floor .wrap .ywcon-left .navs-item .navs-title h2 {
  color: #fff;
  font-size: 30px;
}
.yw-floor .wrap .ywcon-left2 {
  margin-top: 0;
}
.yw-floor .wrap .ywcon-left2 .navs-item:not(:last-child) {
  margin-bottom: 0;
}
.yw-floor .wrap .ywcon-left2 .navs-item .navs-title {
  height: 0.8rem;
  background: url(../img/pro_02.jpg) no-repeat center;
  background-size: cover;
}
.yw-floor .wrap .ywcon-left2 .navs-item .navs-title h2 {
  font-size: 22px;
}
.yw-floor .wrap .ywcon-left .navs-item .navs-title p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox {
  padding: 0.3rem 0;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li {
  transition: 0.3s;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li:not(:last-child) {
  margin-bottom: 0.4rem;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li.active a {
  color: #15578d;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li:hover {
  transform: translateX(0.1rem);
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li:hover a {
  color: #15578d;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #666;
  padding: 0 0.3rem;
  font-weight: bold;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li a img {
  width: 0.13rem;
  margin-right: 0.08rem;
}

.yw-floor .wrap .ywcon-left .navs-item .navs-libox ul li a p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.yw-floor .wrap .ywcon-left .video-box {
  position: relative;
  width: 3rem;
  height: 3rem;
}

.yw-floor .wrap .ywcon-left .video-box .bf-mc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.yw-floor .wrap .ywcon-left .video-box .bf-mc img {
  width: 0.55rem;
}

.yw-floor .wrap .ywcon-left .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yw-floor .wrap .ywcon-right {
  flex: 1;
}

.yw-floor .wrap .ywcon-right .title-breadnavs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.8rem;
  border-bottom: 1px solid #dcdcdc;
}

.yw-floor .wrap .ywcon-right .title-breadnavs .title {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #444444;
  border-bottom: 1px solid #15578d;
}

.yw-floor .wrap .ywcon-right .cp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  padding: 0.4rem 0;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item {
  background-color: #fff;
  transition: 0.3s;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item:hover {
  box-shadow: 0px 2px 10px 0px rgba(21, 87, 141, 0.16);
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item:hover .text-box .news-title {
  color: #15578d;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item:hover .text-box .jiantou {
  transform: translateX(0.1rem);
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .text-left {
  margin-right: 0.3rem;
  flex: 1;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .img-box {
  height: 3.6rem;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .text-box {
  display: flex;
  padding: 0.15rem 0.2rem;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .text-box .news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .text-box p {
  color: #666;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4em;
}

.yw-floor .wrap .ywcon-right .cp-list .cp-item .jiantou {
  width: 0.24rem;
  height: max-content;
  margin-top: 0.1rem;
  display: block;
  transition: 0.3s;
}

.yw-floor .wrap .ywcon-right .normalxq-content {
  padding: 0.35rem 0;
  background: none;
}

.yw-floor .wrap .ywcon-right .normalxq-content .wrap {
  width: 100%;
  display: block;
}
.yw-floor .wrap .ywcon-right .normalxq-content .news-list2 .news-item {
  background-color: #f9f9f9;
}
.yw-floor .wrap .ywcon-right .normalxq-content .news-list2 .news-item:hover {
  background-color: #15578d;
}
.yw-floor .wrap .ywcon-right .normalxq-content p {
  line-height: 1.8em;
  font-size: 0.16rem;
}

.yw-floor .wrap .ywcon-right .normalxq-content img,
.yw-floor .wrap .ywcon-right .normalxq-content video {
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}

.breadnavs {
  position: relative;
  z-index: 2;
  background-color: #f3f1f1;
}

.breadnavs .wrap {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  height: 0.6rem;
  padding-left: 3.4rem;
}

.breadnavs .wrap .page-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4rem;
  padding: 0.3rem;
  background: linear-gradient(to bottom, #1a86ea, #15578d);
  color: #fff;
}

.breadnavs .wrap .page-title h2 {
  font-size: 0.28rem;
  margin-bottom: 0.05rem;
}

.breadnavs .wrap .page-title p {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.breadnavs .wrap .tab-change {
  display: flex;
  align-items: center;
  height: 100%;
}

.breadnavs .wrap .tab-change .tab-item {
  height: 100%;
}

.breadnavs .wrap .tab-change .tab-item.active a {
  color: #15578d;
  border-bottom: 1px solid #15578d;
}

.breadnavs .wrap .tab-change .tab-item:hover a {
  color: #15578d;
  border-bottom: 1px solid #15578d;
}

.breadnavs .wrap .tab-change .tab-item:not(:last-child) {
  margin-right: 0.5rem;
}

.breadnavs .wrap .tab-change .tab-item a {
  font-size: 0.16rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.right-navs {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #aaaaaa;
  margin-left: auto;
}

.right-navs ul {
  display: flex;
  align-items: center;
}

.right-navs ul li {
  font-size: 16px;
  color: #aaaaaa;
}

.right-navs ul li:last-child {
  color: #15578d;
}

.right-navs ul li a {
  font-size: 16px;
  color: #aaaaaa;
}

.fw-container {
  padding: 0.6rem 0 1rem;
}

.fw-container p {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.8em;
}

.fw-container img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.fw-container .sml-title {
  height: 0.88rem;
  width: auto;
  margin: 0;
  margin-bottom: 0.45rem;
}

.fw-container .sml-box {
  padding-left: 0.64rem;
}

.fw-container .sml-titlee {
  font-size: 0.24rem;
  color: #15578d;
  font-weight: bold;
  margin-bottom: 0.15rem;
}

.lc-content {
  padding: 0.3rem 0 1rem;
}

.lc-content .lc-item {
  position: relative;
  display: flex;
}

.lc-content .lc-item:not(:last-child) {
  padding-bottom: 0.3rem;
}

.lc-content .lc-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0.01rem;
  height: 100%;
  background-color: #8dadc9;
  left: 0.1rem;
  top: 0;
}

.lc-content .lc-item .circle {
  position: relative;
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.2rem;
  z-index: 2;
}

.lc-content .lc-item .circle .dotted {
  height: 0.2rem;
  width: 0.2rem;
  background-color: #15578d;
  border-radius: 50%;
}

.lc-content .lc-item .circle .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.15rem;
  height: 0.15rem;
  background-color: rgba(21, 87, 141, 0.4);
  border-radius: 50%;
  animation: pulse 2s linear infinite;
}

.lc-content .lc-item .text-box .date {
  font-size: 0.2rem;
  font-weight: bold;
  color: #15578d;
  margin-bottom: 0.1rem;
}

.lc-content .lc-item .text-box p {
  font-size: 0.14rem;
  color: #333333;
  display: flex;
  line-height: 1.8em;
}

.lc-content .lc-item .text-box p span {
  color: #15578d;
  margin-right: 0.05rem;
  font-weight: bold;
}

.lc-content .lc-item .text-box p img {
  width: 0.08rem;
  margin-right: 0.1rem;
  height: max-content;
  margin-top: 0.08rem;
}

.yj-container {
  padding: 0.85rem 0;
}

.yj-container .wrap .yj-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 0.5rem;
}

.yj-container .wrap .yj-list .yj-item {
  transition: 0.3s;
}

.yj-container .wrap .yj-list .yj-item:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.yj-container .wrap .yj-list .yj-item a {
  display: flex;
  cursor: pointer;
}

.yj-container .wrap .yj-list .yj-item a .img-box {
  width: 3.5rem;
  height: 2.7rem;
  margin-right: 0.25rem;
}

.yj-container .wrap .yj-list .yj-item a .img-box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.yj-container .wrap .yj-list .yj-item a .text-box {
  padding: 0.05rem 0;
  flex: 1;
}

.yj-container .wrap .yj-list .yj-item a .text-box .yj-tit {
  font-size: 0.18rem;
  font-weight: bold;
  color: #15578d;
  margin-bottom: 0.25rem;
}

.yj-container .wrap .yj-list .yj-item a .text-box .yj-infors .infor {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.14rem;
  line-height: 1.8em;
}

.yj-container .wrap .yj-list .yj-item a .text-box .yj-infors .infor .label {
  color: #15578d;
}

.yj-container .wrap .yj-list .yj-item a .text-box .fa-infors p {
  font-size: 0.14rem;
  color: #333;
  line-height: 1.8em;
}

.rc-content {
  padding: 0.4rem 0;
}
.rc-content video {
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}
.rc-content .rc-title {
  font-size: 0.2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.rc-content p {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.8em;
}

.rc-content .more-btn {
  justify-content: flex-start;
 // margin-top: 0.9rem;
}

.rc-content .more-btn a {
  border-radius: 0.25rem;
}

.newscon-top {
  padding: 1.4rem 0;
}

.newscon-top .wrap {
  display: flex;
}

.newscon-top .wrap .img-box {
  width: 6.4rem;
  height: 4.8rem;
}

.newscon-top .wrap .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newscon-top .wrap .newstop-list {
  flex: 1;
}

.newscon-top .wrap .newstop-list .news-item {
  padding-left: 0.7rem;

  transition: 0.3s;
}

.newscon-top .wrap .newstop-list .news-item:not(:last-child) a {
  border-bottom: 1px solid #eeeeee;
}

.newscon-top .wrap .newstop-list .news-item:hover {
  background-color: #f8f8f8;
}

.newscon-top .wrap .newstop-list .news-item:hover a .news-title {
  color: #15578d;
}

.newscon-top .wrap .newstop-list .news-item a {
  height: 100%;
  display: block;
  padding: 0.2rem 0.1rem;
}

.newscon-top .wrap .newstop-list .news-item a .news-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.newscon-top .wrap .newstop-list .news-item a .news-date {
  font-size: 14px;
  color: #999999;
  margin: 0.1rem 0;
}

.newscon-top .wrap .newstop-list .news-item a p {
  font-size: 14px;
  color: #999;
  line-height: 1.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-container {
  padding: 1.4rem 0;
  background-color: #f8f8f8;
}

.news-container .wrap .news-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.25rem;
}

.news-container .wrap .news-list2 .news-item {
  background-color: #fff;
  transition: 0.3s;
}

.news-container .wrap .news-list2 .news-item:hover {
  background-color: #15578d;
}

.news-container .wrap .news-list2 .news-item:hover .img-box img {
  transform: scale(1.1);
}

.news-container .wrap .news-list2 .news-item:hover .text-box .news-title,
.news-container .wrap .news-list2 .news-item:hover .text-box p,
.news-container .wrap .news-list2 .news-item:hover .text-box .date {
  color: #fff;
}

.news-container .wrap .news-list2 .news-item .img-box {
  height: 2.6rem;
  overflow: hidden;
}

.news-container .wrap .news-list2 .news-item .img-box img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: 0.3s;
}

.news-container .wrap .news-list2 .news-item .text-box {
  padding: 0.2rem 0.3rem 0.5rem;
}

.news-container .wrap .news-list2 .news-item .text-box .news-title {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0.25rem;
}

.news-container .wrap .news-list2 .news-item .text-box p {
  font-size: 14px;
  line-height: 1.8em;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 0.43rem;
}

.news-container .wrap .news-list2 .news-item .text-box .date {
  font-size: 14px;
  line-height: 1.8em;
  color: #15578d;
  margin-bottom: 0.25rem;
}

.container {
  padding: 0.64rem 0;
}

.container .wrap .newspaper-list p {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.8em;
  text-align: justify;
  margin-bottom: 0.4rem;
}

.container .wrap .newspaper-list .top .title {
  font-size: 0.3rem;
  color: #000;
}

.container .wrap .newspaper-list .top .introduce {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  margin: 0.22rem 0;
  color: #666666;
}

.container .wrap .newspaper-list .content {
  padding: 0.55rem 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #999;
  margin-bottom: 0.3rem;
}

.container .wrap .newspaper-list .content img {
  max-width: 100%;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.container .wrap .newspaper-list .cp-content {
  margin-top: 0.5rem;
}

.container .wrap .newspaper-list .cp-content img {
  max-width: 100%;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.container .wrap .newspaper-list .gobtn {
  display: flex;
  justify-content: space-between;
  font-size: 0.16rem;
  color: #333;
}

.container .wrap .newspaper-list .gobtn div {
  cursor: pointer;
}

.container .wrap .newspaper-list .gobtn div:hover {
  color: #1296db;
}

.lx-floor .wrap {
  margin-bottom: 1rem;
  text-align: center;
}

.contact-box {
  display: flex;
  height: 5rem;
}

.contact-box .con-left {
  position: relative;
  width: 50%;
}

.contact-box .con-left .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-box .con-left .text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box .con-left .text-box .nr-box {
  color: #fff;
}

.contact-box .con-left .text-box .nr-box h2 {
  font-size: 0.22rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.contact-box .con-left .text-box .nr-box .lxfs-item {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
}

.contact-box .con-left .text-box .nr-box .lxfs-item:not(:last-child) {
  margin-bottom: 0.24rem;
}

.contact-box .con-right {
  width: 50%;
  height: 100%;
}

.contact-box .con-right .map {
  width: 100%;
  height: 100%;
}

.bj-floor {
  padding: 0.4rem 0;
}

.bj-floor .wrap .title-box {
  margin-bottom: 0.4rem;
}

.bj-floor .wrap .title-box h2 {
  color: #000;
}

.bj-floor .wrap .title-box .en-title {
  font-weight: normal;
  font-size: 0.14rem;
}

.bj-floor .wrap .form-box {
  display: flex;
  flex-wrap: wrap;
}

.bj-floor .wrap .input-item {
  width: 50%;
  position: relative;
  margin-bottom: 0.2rem;
}
.bj-floor .wrap .input-item:nth-child(odd) input {
  border-right: unset;
}
.bj-floor .wrap .input-item.special-item {
  width: 100%;
}
.bj-floor .wrap .input-item.special-item.active .label {
  transform: translateY(-50%);
}
.bj-floor .wrap .input-item.special-item .label {
  top: 0.1rem;
  transform: translateY(0);
}
.bj-floor .wrap .input-item.special-item textarea {
  resize: none;
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  border: 0.01rem solid #bfbfbf;
  outline: none;
  font-size: 0.18rem;
  padding: 0.2rem 0.3rem;
}
.bj-floor .wrap .input-item:last-child {
  width: 100%;
  margin-right: 0;
}

.bj-floor .wrap .input-item:last-child input {
  width: 100%;
}

.bj-floor .wrap .input-item.active .label {
  top: 0;
  font-size: 0.16rem;
  background-color: #fff;
}

.bj-floor .wrap .input-item .label {
  font-size: 0.18rem;
  color: #999999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3rem;
  transition: 0.3s;
  padding: 0 0.05rem;
}

.bj-floor .wrap .input-item input {
  width: 100%;
  height: 0.6rem;
  border: none;
  outline: none;
  border: 0.01rem solid #bfbfbf;
  transition: 0.3s;
  padding-left: 0.3rem;
  font-size: 0.18rem;
}
/*
.bj-floor .wrap .input-item input:focus {
  border-bottom: 0.02rem solid #15578d;
} */

.bj-floor .wrap .more-btn {
  justify-content: flex-end;
}

@keyframes pulse {
  70% {
    width: 0.2rem;
    height: 0.2rem;
    opacity: 1;
  }

  100% {
    width: 0.35rem;
    height: 0.35rem;
    opacity: 0;
  }
}

.sh-container {
  padding: 0;
}

.sh-container .wrap .ditu-box {
  position: relative;
}

.sh-container .wrap .ditu-box .img-box {
  width: 100%;
}

.sh-container .wrap .ditu-box .img-box img {
  width: 100%;
}

.sh-container .wrap .ditu-box .position-item {
  position: absolute;
  width: 0.27rem;
  animation: upDown 2s infinite linear;
}

.sh-container .wrap .ditu-box .position-item:nth-child(1) {
  top: 2.2rem;
  left: 3.8rem;
}

.sh-container .wrap .ditu-box .position-item:nth-child(2) {
  top: 2.4rem;
  left: 3.3rem;
  animation: upDown 2s 0.3s infinite linear;
}

.sh-container .wrap .ditu-box .position-item:nth-child(3) {
  top: 3.6rem;
  left: 3.25rem;
  animation: upDown 2s 0.2s infinite linear;
}

.sh-container .wrap .ditu-box .position-item:nth-child(4) {
  top: 3.6rem;
  left: 3.4rem;
  animation: upDown 2s 0.3s infinite linear;
}

.sh-container .wrap .ditu-box .position-item img {
  width: 100%;
}

.shdd-container {
  background-color: #eee;
}

.shdd-container .wrap .shdd-box {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.shdd-container .wrap .shdd-box .shdd-item .position {
  font-size: 0.24rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.shdd-container .wrap .shdd-box .shdd-item .en {
  font-size: 0.16rem;
  line-height: 1.8em;
}

.shdd-container .wrap .shdd-box .shdd-item p {
  font-size: 0.16rem;
  color: #999999;
  line-height: 1.8em;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-0.05rem);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(0.05rem);
  }

  100% {
    transform: translateY(0);
  }
}

.cpxq-container .cpxq-top {
  padding: 0.35rem 0;
  display: flex;
}

.cpxq-container .cpxq-top .top-left {
  width: 4rem;
  position: relative;
  margin-right: 0.4rem;
}

.cpxq-container .cpxq-top .top-left .big {
  position: absolute;
  right: -4.5rem;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  display: none;
  z-index: 22;
}

.cpxq-container .cpxq-top .top-left .big img {
  position: absolute;
  top: 0;
  left: 0;
  width: 12rem;
  height: 10rem;
  object-fit: fill;
}

.cpxq-container .cpxq-top .top-left .big-img {
  position: relative;
  width: 4rem;
  height: auto;
  border: 1px solid #eee;
}

.cpxq-container .cpxq-top .top-left .big-img img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.cpxq-container .cpxq-top .top-left .big-img .shadow {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1rem;
  height: 1rem;
  background-color: rgba(0, 0, 0, 0.404);
  visibility: hidden;
}

.cpxq-container .cpxq-top .top-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cpxq-container .cpxq-top .top-right .cp-name {
  font-size: 0.22rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.cpxq-container .cpxq-top .top-right .intro {
  line-height: 1.8em;
  font-size: 0.18rem;
  color: #333;
}

.cpxq-container .cpxq-top .top-right .bottom-sml {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.cpxq-container .cpxq-top .top-right .bottom-sml .jiantou {
  width: 0.15rem;
  cursor: pointer;
}

.cpxq-container .cpxq-top .top-right .bottom-sml .jiantou.yjt {
  transform: rotateZ(180deg);
}

.cpxq-container .cpxq-top .top-right .bottom-sml .cha-list {
  display: flex;
  margin: 0 0.3rem;
}

.cpxq-container .cpxq-top .top-right .bottom-sml .cha-list .cha-item {
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #eee;
  cursor: pointer;
}

.cpxq-container .cpxq-top .top-right .bottom-sml .cha-list .cha-item.active {
  border: 1px solid #1296db;
}

.cpxq-container
  .cpxq-top
  .top-right
  .bottom-sml
  .cha-list
  .cha-item:not(:last-child) {
  margin-right: 0.2rem;
}

.cpxq-container .cpxq-top .top-right .bottom-sml .cha-list .cha-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cpnr-content {
  padding: 0.3rem 0;
}

.cpnr-content img {
  max-width: 100%;
}
.contact-boxfixed {
  position: fixed;
  bottom: 10%;
  right: 50px;

  z-index: 999;
}
.contact-boxfixed .img-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
}
.contact-boxfixed .img-box p {
  font-size: 14px;
  margin-top: 2px;
}
.contact-boxfixed .contacticon {
  width: 40%;
}
.contact-boxfixed .form-box2 {
  position: absolute;
  right: 100px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 10px;
  bottom: 0;
  width: 350px;
  display: none;
}
.contact-boxfixed .form-box2 .form-del {
  display: none;
}
.contact-boxfixed .form-box2 h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-boxfixed .form-box2 .en-title {
  font-size: 16px;
  margin-bottom: 20px;
}
.contact-boxfixed .input-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-boxfixed .input-item input {
  width: 100%;
  font-size: 16px;
  padding: 10px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
}
.contact-boxfixed .input-item textarea {
  width: 100%;
  height: 300px;
  resize: none;
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
}
