@media screen and (min-width: 320px) and (max-width: 1024px) {
  .phoneheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    height: 1.4rem;
    transition: 0.3s;
    background-color: #c82126;
    padding: 0 0.3rem;
  }
  .phoneheader.active {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .phoneheader .logo-box {
    width: 0.8rem;
  }
  .phoneheader .logo-box img {
    filter: brightness(0) invert(1);
    width: 100%;
    display: block;
  }
  .phoneheader .btn-box {
    display: flex;
    align-items: center;
  }
  .phoneheader .btn-box .btn {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .phoneheader .btn-box .btn:not(:last-child) {
    margin-right: 0.3rem;
    font-size: 0.3rem;
    color: #fff;
  }
  .phoneheader .btn-box .btn:not(:last-child) a {
    font-size: 0.3rem;
    color: #fff;
  }
  .phoneheader .btn-box .btn img {
    width: 40%;
    display: block;
  }
  .phoneheader .btn-box .lan-btn {
    display: none;
  }
  .phoneheader .btn-box .lan-btn.active {
    display: flex;
  }
  .phoneheader .btn-box .search-btn {
    margin-right: 0.2rem;
  }
  .search-box {
    position: fixed;
    top: 1.4rem;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #c82126;
    height: 1rem;
    padding: 0.1rem;
    display: none;
  }
  .search-box input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.4rem;
    color: #fff;
    font-size: 0.32rem;
    padding-right: 0.8rem;
    padding-left: 0.4rem;
  }
  .search-box input::placeholder {
    color: #fff;
  }
  .search-box .seach-btn {
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
  }
  .search-box .seach-btn a {
    width: 0.8rem;
    height: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-box .seach-btn a img {
    width: 30%;
    display: block;
  }
  .mobile-container {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c82126;
    transition: 0.3s;
    transform: translateX(100%);
    display: block;
  }
  .mobile-container.active {
    transform: translateX(0);
  }
  .mobile-container .phoneheader {
    position: static;
    background: none !important;
  }
  .mobile-container .footer-list {
    color: #fdfdfd;
  }
  .mobile-container .footer-list a {
    color: #fdfdfd;
  }
  .mobile-container .footer-list li {
    position: relative;
  }
  .mobile-container .footer-list li.nosec .top a {
    flex: 1;
  }
  .mobile-container .footer-list li.nosec .top span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotateZ(-90deg);
  }
  .mobile-container .footer-list .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-bottom: 1px solid #fefefe;
  }
  .mobile-container .footer-list .top a {
    font-size: 0.36rem;
  }
  .mobile-container .footer-list .top span {
    transition: 0.3s;
    font-size: 0.2rem;
  }
  .mobile-container .footer-list .top span.active {
    transform: rotateZ(180deg);
  }
  .mobile-container .footer-list .second {
    display: none;
    padding-top: 0.15rem;
  }
  .mobile-container .footer-list .second a {
    display: block;
    font-size: 0.32rem;
    color: #fdfdfd;
    line-height: 2em;
  }
  .indswiper-box > .swiper-wrapper > .swiper-slide {
    position: relative;
  }
  .indswiper-box > .swiper-wrapper > .swiper-slide .xiala {
    position: absolute;
    z-index: 10;
    bottom: 0.6rem;
    width: 0.54rem;
    left: 50%;
    transform: translateX(-50%);
    animation: upDown 2s infinite linear;
  }
  .common-floor {
    width: 100%;
    height: 100%;
  }
  .common-floor .title-box {
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .common-floor .title-box h2 {
    font-size: 0.48rem;
    text-align: center;
  }
  .common-floor .title-box p {
    font-size: 0.18rem;
    margin-top: 0.15rem;
    text-align: center;
  }
  .ind-pagination {
    position: fixed;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ind-pagination.active .circle-list ul li::after {
    background-color: #fff;
  }
  .ind-pagination.active .line {
    background-color: #d2d2d2;
  }
  .ind-pagination.active .totalPage {
    color: #fff;
  }
  .ind-pagination .circle-list ul li {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
    color: transparent;
  }
  .ind-pagination .circle-list ul li.active {
    border-color: #c82126;
  }
  .ind-pagination .circle-list ul li.active::after {
    background-color: #c82126;
  }
  .ind-pagination .circle-list ul li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .ind-pagination .circle-list ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.1rem;
    height: 0.1rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #999999;
    box-sizing: border-box;
  }
  .ind-pagination .line {
    width: 2px;
    height: 0.64rem;
    background-color: #999999;
    margin: 0.1rem 0;
  }
  .ind-pagination .totalPage {
    color: #999999;
    font-size: 0.28rem;
    display: flex;
    align-items: flex-end;
  }
  .ind-pagination .totalPage span {
    font-size: 0.42rem;
    line-height: 1em;
    color: #c82126;
  }
  .breadcrumb-nav {
    background-color: #eeeeee;
  }
  .breadcrumb-nav .wrap {
    padding: 0.15rem 0;
    padding-left: 0.1rem;
    display: flex;
    align-items: center;
  }
  .breadcrumb-nav .wrap .weizhi {
    font-size: 0.14rem;
    color: #333;
    display: flex;
    align-items: center;
  }
  .breadcrumb-nav .wrap .weizhi img {
    width: 0.25rem;
    display: block;
    margin-right: 0.16rem;
  }
  .breadcrumb-nav .wrap ul {
    display: flex;
    align-items: center;
  }
  .breadcrumb-nav .wrap ul li {
    font-size: 0.28rem;
    color: #333;
  }
  .breadcrumb-nav .wrap ul li.active {
    color: #c82126;
  }
  .breadcrumb-nav .wrap ul li:hover a {
    color: #c82126;
  }
  .breadcrumb-nav .wrap ul li a {
    font-size: 0.28rem;
    color: #333;
  }
  .breadcrumb-nav .wrap ul li.jiantou {
    margin: 0 0.16rem;
  }
  .floor {
    padding: 0.5rem 0 1rem;
  }
  .floor .wrap .title-box {
    font-weight: bold;
  }
  .floor .wrap .title-box .en {
    font-size: 0.72rem;
    color: #ededed;
    line-height: 1em;
  }
  .floor .wrap .title-box .title {
    font-size: 0.48rem;
    color: #333;
  }
  .cp-floor .cp-list {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .cp-floor .cp-list .item {
    padding: 0.5rem 0.4rem;
    padding-right: 0.4rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) -1px 1px 15px 0;
    border-radius: 0.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s;
  }
  .cp-floor .cp-list .item:hover {
    transform: translateY(-0.1rem);
  }
  .cp-floor .cp-list .item:hover .img-box img {
    transform: scale(1.1);
  }
  .cp-floor .cp-list .item .img-box {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.3rem;
  }
  .cp-floor .cp-list .item .img-box img {
    width: 100%;
    height: 100%;
    transition: 1s;
  }
  .cp-floor .cp-list .item .text-box {
    width: 100%;
    flex: 1;
    padding: 0 0.3rem;
    text-align: center;
  }
  .cp-floor .cp-list .item .text-box .pinlei {
    font-size: 0.36rem;
    text-align: center;
  }
  .cp-floor .cp-list .item .text-box p {
    font-size: 0.28rem;
    color: #999999;
    margin-bottom: 0.3rem;
  }
  .cp-floor .cp-list .item .text-box .pinzhi-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(0);
  }
  .cp-floor .cp-list .item .text-box .pinzhi-list .sitem {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cp-floor .cp-list .item .text-box .pinzhi-list .sitem img {
    width: 1rem;
    display: block;
    margin-bottom: 0.1rem;
  }
  .cp-floor .cp-list .item .text-box .pinzhi-list .sitem p {
    font-size: 0.28rem;
    color: #333;
  }
  .cp-floor .cp-list .item .text-box .more {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cp-floor .cp-list .item .text-box .more a {
    width: 2.4rem;
    height: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.28rem;
    color: #999;
    border: 1px solid #999999;
    background-color: #c82126;
    color: #fff;
    border-color: #c82126;
  }
  .cp-floor .cp-list .item .text-box .more a:hover {
    background-color: #c82126;
    color: #fff;
    border-color: #c82126;
  }
  .footerP {
    background-color: #fff;
  }
  .footerP .wrap .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.65rem 0;
    padding-right: 0;
    padding-left: 0;
  }
  .footerP .wrap .footer-top .ft-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .footerP .wrap .footer-top .ft-left .item {
    margin-bottom: 0.3rem;
  }
  .footerP .wrap .footer-top .ft-left .item:not(:last-child) {
    margin-right: 0;
  }
  .footerP .wrap .footer-top .ft-left .item .it-title {
    margin-bottom: 0.24rem;
  }
  .footerP .wrap .footer-top .ft-left .item .it-title a {
    font-size: 0.28rem;
    color: #000;
    font-weight: bold;
  }
  .footerP .wrap .footer-top .ft-left .item a {
    font-size: 0.28rem;
    display: block;
  }
  .footerP .wrap .footer-top .ft-left .item a:not(:last-child) {
    margin-bottom: 0.15rem;
  }
  .footerP .wrap .footer-top .ft-left .item a:hover {
    color: #0052d9;
  }
  .footerP .wrap .footer-top .ft-left .item p {
    font-size: 0.28rem;
    display: block;
  }
  .footerP .wrap .footer-top .ft-left .item p:not(:last-child) {
    margin-bottom: 0.15rem;
  }
  .footerP .wrap .footer-top .ft-right .it-title {
    font-size: 0.28rem;
    color: #000;
    margin-bottom: 0.24rem;
    font-weight: bold;
  }
  .footerP .wrap .footer-top .ft-right .code-box {
    display: flex;
  }
  .footerP .wrap .footer-top .ft-right .code-box .code-item:not(:last-child) {
    margin-right: 0.2rem;
  }
  .footerP .wrap .footer-top .ft-right .code-box .code-item .img-box {
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #e9ecf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.14rem;
  }
  .footerP .wrap .footer-top .ft-right .code-box .code-item .img-box img {
    width: 1.6rem;
    display: block;
  }
  .footerP .wrap .footer-top .ft-right .code-box .code-item p {
    text-align: center;
    font-size: 0.28rem;
  }
  .footerP .wrap .footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0rem;
    border-top: 1px solid #e9ecf5;
    border-bottom: 1px solid #e9ecf5;
  }
  .footerP .wrap .footer-middle img {
    width: 0.5rem;
    display: block;
    cursor: pointer;
  }
  .footerP .wrap .footer-middle .links {
    display: flex;
    align-items: center;
  }
  .footerP .wrap .footer-middle .links .title {
    font-size: 0.28rem;
    color: #000;
    font-weight: bold;
    margin-right: 0.25rem;
  }
  .footerP .wrap .footer-middle .links a {
    font-size: 0.28rem;
    margin-right: 0.25rem;
  }
  .footerP .wrap .footer-middle .links a:hover {
    color: #0052d9;
  }
  .footerP .wrap .support {
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.28rem;
  }
  .footerP .wrap .support a {
    font-size: 0.28rem;
  }
  .footerP .wrap .support span {
    text-align: center;
    line-height: 1.8em;
    display: block;
  }
  .footerP .wrap .support span:not(:last-child) {
    margin-right: 0;
  }
  .cpxq-floor .wrap .imp-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.9rem;
  }
  .cpxq-floor .wrap .imp-intro .img-box {
    width: 6.6rem;
    height: 6.6rem;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f2f2f2, #fefefe);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cpxq-floor .wrap .imp-intro .img-box img {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .cpxq-floor .wrap .imp-intro .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinlei {
    font-size: 0.48rem;
  }
  .cpxq-floor .wrap .imp-intro .text-box p {
    font-size: 0.32rem;
    color: #999999;
    margin-bottom: 0.4rem;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinzhi-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinzhi-list .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinzhi-list .item:not(:last-child) {
    margin-right: 0;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinzhi-list .item img {
    width: 1.2rem;
    display: block;
    margin-bottom: 0.1rem;
  }
  .cpxq-floor .wrap .imp-intro .text-box .pinzhi-list .item p {
    font-size: 0.32rem;
  }
  .cpxq-floor .wrap .imp-intro .introduce {
    width: 100%;
    font-size: 0.28rem;
    line-height: 2em;
    text-align: center;
    background-color: #eeeeee;
    padding: 0.45rem 0.2rem;
  }
  .about-floor .wrap .title-box {
    margin-bottom: 0.55rem;
  }
  .about-floor .wrap .jj-content {
    display: block;
    margin-bottom: 0.7rem;
  }
  .about-floor .wrap .jj-content .img-box {
    width: 100%;
  }
  .about-floor .wrap .jj-content .img-box img {
    width: 100%;
    display: block;
  }
  .about-floor .wrap .jj-content .text-box {
    flex: 1;
    padding-right: 0;
    margin-bottom: 0.3rem;
  }
  .about-floor .wrap .jj-content .text-box p {
    font-size: 0.32rem;
    color: #333;
    line-height: 1.8em;
    text-indent: 2em;
  }
  .about-floor .wrap .jj-content .text-box p:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .about-floor .wrap .jj-content .text-box p span {
    font-weight: bold;
  }
  .about-floor .wrap .con-coun > p {
    font-size: 0.32rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.45rem;
  }
  .about-floor .wrap .weizhi-list .item {
    display: flex;
    align-items: center;
    font-size: 0.32rem;
    color: #333;
    font-weight: bold;
  }
  .about-floor .wrap .weizhi-list .item:nth-child(2) .circle {
    background-color: #ff7a41;
  }
  .about-floor .wrap .weizhi-list .item .circle {
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 50%;
    background-color: #c82126;
    margin: 0 0.15rem;
  }
  .lx-floor .wrap .title-box {
    margin-bottom: 0.55rem;
  }
  .lx-floor .wrap .dizhi-list .item {
    background-color: #f7f7f7;
    padding: 0.3rem;
    display: block;
  }
  .lx-floor .wrap .dizhi-list .item:not(:last-child) {
    margin-bottom: 0.4rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-map {
    width: 100%;
    height: 4rem;
    border: 1px solid #e5e5e5;
  }
  .lx-floor .wrap .dizhi-list .item .gs-map .map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information {
    flex: 1;
    padding-right: 0;
    margin-bottom: 0.3rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-top {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-top .line {
    width: 0.1rem;
    height: 0.6rem;
    background-color: #c82126;
    margin-right: 0.2rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-top .com-name .en {
    font-size: 0.32rem;
    margin-bottom: 0.05rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-top .com-name .name {
    font-size: 0.38rem;
    font-weight: bold;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-middle {
    margin-bottom: 0.2rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-middle p {
    font-size: 0.3rem;
    font-weight: bold;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-middle p:not(:last-child) {
    margin-bottom: 0.25rem;
  }
  .lx-floor .wrap .dizhi-list .item .gs-information .gi-bottom p {
    text-indent: 2em;
    font-size: 0.28rem;
    line-height: 2em;
  }
  .news-floor .wrap .title-box {
    margin-bottom: 0.4rem;
  }
  .news-floor .wrap .floor-change {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
  }
  .news-floor .wrap .floor-change .item.active a p {
    color: #fff;
  }
  .news-floor .wrap .floor-change .item.active a::after {
    display: none;
  }
  .news-floor .wrap .floor-change .item:hover a p {
    color: #fff;
  }
  .news-floor .wrap .floor-change .item:hover a::after {
    display: none;
  }
  .news-floor .wrap .floor-change .item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    width: 2rem;
    height: 0.8rem;
    border: 1px solid #c82126;
    background-color: #c82126;
  }
  .news-floor .wrap .floor-change .item a p {
    position: relative;
    z-index: 2;
  }
  .news-floor .wrap .floor-change .item a::after {
    position: absolute;
    content: "";
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    width: 2rem;
    height: 0.8rem;
    transform: scale(0.99);
    transform-origin: center;
    background-color: #fff;
  }
  .news-floor .wrap .news-list ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    row-gap: 0.55rem;
  }
  .news-floor .wrap .news-list ul li a {
    width: 100%;
    display: block;
    border-bottom: 2px solid #e5e5e5;
  }
  .news-floor .wrap .news-list ul li a:hover {
    border-color: #c82126;
  }
  .news-floor .wrap .news-list ul li a:hover .img-box img {
    transform: scale(1.1);
  }
  .news-floor .wrap .news-list ul li a:hover .text-box .news-title {
    color: #c82126;
  }
  .news-floor .wrap .news-list ul li a .img-box {
    width: 100%;
    height: 4rem;
    overflow: hidden;
  }
  .news-floor .wrap .news-list ul li a .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  .news-floor .wrap .news-list ul li a .text-box {
    padding: 0.2rem 0;
  }
  .news-floor .wrap .news-list ul li a .text-box .date {
    font-size: 0.42rem;
  }
  .news-floor .wrap .news-list ul li a .text-box .news-title {
    font-size: 0.32rem;
    line-height: 1.6em;
    margin: 0.15rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-floor .wrap .news-list ul li a .text-box p {
    font-size: 0.28rem;
    color: #999;
    line-height: 1.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-floor .wrap .zs-list ul {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    justify-content: space-between;
    row-gap: 0.4rem;
  }
  .news-floor .wrap .zs-list ul li .img-box {
    width: 100%;
    height: 5rem;
    background-color: #fff;
    border: 14px solid #f7f7f7;
    margin-bottom: 0.15rem;
    cursor: pointer;
  }
  .news-floor .wrap .zs-list ul li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .news-floor .wrap .zs-list ul li p {
    font-size: 0.32rem;
    text-align: center;
  }
  .paging {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .paging a {
    height: 0.6rem;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
    font-size: 0.14rem;
  }
  .paging a.active {
    color: #fff;
  }
  .paging a:hover {
    color: #fff;
  }
  .paging a:not(:last-child) {
    margin-right: 0.1rem;
  }
  .back-floor {
    padding: 0;
  }
  .back-floor .wrap {
    border-bottom: 1px solid #e5e5e5;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
  }
  .back-floor .wrap a {
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    font-weight: bold;
  }
  .back-floor .wrap a img {
    width: 0.28rem;
    display: block;
    margin-right: 0.1rem;
  }
  .xwxq-floor .wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .xwxq-floor .wrap .xq-left {
    width: 100%;
    border-radius: 0.2rem;
    background-color: #fff;
    padding: 0.3rem;
    padding-bottom: 0;
    height: max-content;
  }
  .xwxq-floor .wrap .xq-left .img-box {
    width: 100%;
    height: 4.2rem;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .xwxq-floor .wrap .xq-left .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .xwxq-floor .wrap .xq-left ul li:not(:last-child) {
    border-bottom: 1px solid #d2d2d2;
  }
  .xwxq-floor .wrap .xq-left ul li a {
    padding: 0.4rem 0;
    display: block;
  }
  .xwxq-floor .wrap .xq-left ul li a .fl {
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    margin-bottom: 0.15rem;
  }
  .xwxq-floor .wrap .xq-left ul li a .fl .circle {
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.05rem;
    border-radius: 50%;
  }
  .xwxq-floor .wrap .xq-left ul li a .news-title {
    font-size: 0.38rem;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.1rem;
    line-height: 1.6em;
  }
  .xwxq-floor .wrap .xq-left ul li a p {
    font-size: 0.28rem;
    color: #666666;
    line-height: 1.8em;
    text-indent: 2em;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .xwxq-floor .wrap .xq-left ul li a .date-more {
    display: flex;
    justify-content: space-between;
  }
  .xwxq-floor .wrap .xq-left ul li a .date-more .date {
    font-size: 0.32rem;
    font-weight: bold;
  }
  .xwxq-floor .wrap .xq-left ul li a .date-more .more {
    font-size: 0.28rem;
    color: #666666;
  }
  .xwxq-floor .wrap .xq-left ul li a .date-more .more span {
    display: inline-block;
    margin-left: 0.1rem;
    transition: 0.3s;
  }
  .xwxq-floor .wrap .xq-right {
    width: 100%;
    padding: 0.5rem 0;
    padding-top: 0;
  }
  .xwxq-floor .wrap .xq-right .news-title {
    font-size: 0.42rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
  }
  .xwxq-floor .wrap .xq-right .fabu-liulan {
    font-size: 0.28rem;
    color: #666666;
    margin-bottom: 0.4rem;
  }
  .xwxq-floor .wrap .xq-right .xq-content {
    padding: 0.4rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0.45rem;
  }
  .xwxq-floor .wrap .xq-right .xq-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto !important;
  }
  .xwxq-floor .wrap .xq-right .prev-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .xwxq-floor .wrap .xq-right .prev-next a {
    font-size: 0.28rem;
    color: #333;
    font-weight: bold;
    width: 49%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .xwxq-floor .wrap .xq-right .prev-next a:last-child {
    text-align: right;
  }
  .qyys-floor .wrap .title-box {
    margin-bottom: 1rem;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox {
    display: block;
    margin-bottom: 0.6rem;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox .con-title {
    font-size: 0.36rem;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox .text-box {
    flex: 1;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox .text-box p {
    font-size: 0.28rem;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox .text-box p:not(:last-child) {
    margin-bottom: 0.25rem;
  }
  .qyys-floor .wrap .qyys-container .con-titlebox .text-box p span {
    font-size: 0.32rem;
  }
  .qyys-floor .wrap .qyys-container .cx-list {
    display: block;
    justify-content: space-between;
    margin-bottom: 0.6rem;
  }
  .qyys-floor .wrap .qyys-container .cx-list .item {
    width: 100%;
    height: 4.5rem;
    border-radius: 0.15rem;
    overflow: hidden;
    margin-bottom: 0.3rem;
  }
  .qyys-floor .wrap .qyys-container .cx-list .item:hover img {
    transform: scale(1.1);
  }
  .qyys-floor .wrap .qyys-container .cx-list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list {
    display: block;
    justify-content: space-between;
    margin-bottom: 0.9rem;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list .item {
    width: 100%;
    height: 3.5rem;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list .item:hover {
    border-color: #c82126;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list .item img {
    width: 1.2rem;
    display: block;
    margin-right: 0.4rem;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list .item .text-box {
    width: 4rem;
  }
  .qyys-floor .wrap .qyys-container .pinzhi-list .item .text-box p {
    font-size: 0.28rem;
    line-height: 2em;
  }
  .qyys-floor .wrap .qyys-container .hj-list {
    display: block;
    justify-content: space-between;
  }
  .qyys-floor .wrap .qyys-container .hj-list .item {
    width: 100%;
    height: 6;
    overflow: hidden;
    border-radius: 0.15rem;
    margin-bottom: 0.3rem;
  }
  .qyys-floor .wrap .qyys-container .hj-list .item:hover img {
    transform: scale(1.1);
  }
  .qyys-floor .wrap .qyys-container .hj-list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  #dialog_large_image {
    width: 90%;
    height: 8rem;
    background: #ffffff;
    border-radius: 5px;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 35px;
    max-width: 90%;
    box-sizing: border-box;
  }
  .layer2 .close,
  .layer4 .close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: auto;
    height: auto;
    cursor: pointer;
    width: 0.5rem;
  }
  .layer2 .close img,
  .layer4 .close img {
    width: 100%;
    display: block;
  }
  .layer2 a.next {
    position: fixed;
    top: unset;
    bottom: 1rem;
    right: 2rem;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background: url(../img/prev.png) no-repeat center center / 100%;
    transform: rotate(180deg);
  }
  .layer2 a.prev {
    position: fixed;
    top: unset;
    bottom: 1rem;
    left: 2rem;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background: url(../img/prev.png) no-repeat center center / 100%;
  }
  .secondP {
    background: url(../img/f2bg.png) no-repeat;
    background-size: cover;
  }
  .secondP .swiper-btn {
    width: 40%;
    height: 2.6rem;
    bottom: 0;
    top: unset;
    border-top-right-radius: 1.3rem;
    border-bottom-right-radius: 1.3rem;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    color: unset;
  }
  .secondP .swiper-btn.swiper-btn2 {
    flex-direction: row-reverse;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    border-top-left-radius: 1.3rem;
    border-bottom-left-radius: 1.3rem;
  }
  .secondP .swiper-btn::after {
    display: none;
  }
  .secondP .swiper-btn .nr-content {
    width: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .secondP .swiper-btn .nr-content .img-box {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.2rem;
  }
  .secondP .swiper-btn .nr-content .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .secondP .swiper-btn .nr-content .pinlei {
    font-size: 0.24rem;
  }
  .secondP .swiper-btn .nr-content p {
    font-size: 0.14rem;
    color: #999;
  }
  .secondP .swiper-btn .zjt {
    width: 0.5rem;
    display: block;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .img-box {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f4d3d4, #fefcfc);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .img-box img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box {
    width: 100%;
    margin-top: -0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinlei {
    font-size: 0.32rem;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box p {
    font-size: 0.28rem;
    color: #999999;
    margin-bottom: 0.25rem;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinzhi-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinzhi-list .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinzhi-list .item:not(:last-child) {
    margin-right: 0.7rem;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinzhi-list .item img {
    width: 0.8rem;
    display: block;
    margin-bottom: 0.1rem;
  }
  .secondP .swiper .swiper-wrapper .swiper-slide .text-box .pinzhi-list .item p {
    font-size: 0.28rem;
  }
  .thirdP {
    background: url(../img/f3bg.png) no-repeat;
    background-size: cover;
  }
  .thirdP .wrap {
    display: block;
    height: calc(100% - 0.9rem);
    align-items: center;
    justify-content: space-between;
  }
  .thirdP .wrap .company-intro {
    padding-top: 0.2rem;
    width: 100%;
  }
  .thirdP .wrap .company-intro .th-title {
    font-size: 0.18rem;
    color: #fff;
    width: 2rem;
    height: 0.46rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background-color: #c82126;
  }
  .thirdP .wrap .company-intro h2 {
    font-size: 0.48rem;
    margin-bottom: 0.45rem;
  }
  .thirdP .wrap .company-intro p {
    font-size: 0.28rem;
    line-height: 1.8em;
    text-indent: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .thirdP .wrap .company-intro .number-list {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
  }
  .thirdP .wrap .company-intro .number-list .item .number {
    font-size: 0.18rem;
    color: #c82126;
    font-weight: bold;
  }
  .thirdP .wrap .company-intro .number-list .item .number span {
    font-size: 0.72rem;
    line-height: 1em;
  }
  .thirdP .wrap .company-intro .number-list .item p {
    font-size: 0.18rem;
    color: #999999;
  }
  .thirdP .wrap .img-box {
    width: 100%;
    height: unset;
  }
  .thirdP .wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .forthP {
    background: url(../img/f4bg.png) no-repeat;
    background-size: cover;
  }
  .forthP .title-box {
    margin-bottom: 1.2rem;
  }
  .forthP > .wrap .swiper {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .forthP > .wrap .swiper .swiper-slide {
    width: 100%;
    display: block;
    align-items: center;
    padding-left: 0;
  }
  .forthP > .wrap .swiper .swiper-slide .img-box {
    width: 100%;
    height: 4rem;
    background-color: #fff;
  }
  .forthP > .wrap .swiper .swiper-slide .img-box img {
    width: 90%;
    display: block;
  }
  .forthP > .wrap .swiper .swiper-slide .text-box {
    padding-top: 0.2rem;
    height: 3.5rem;
    flex: 1;
    padding-left: 0;
    padding-right: 0;
  }
  .forthP > .wrap .swiper .swiper-slide .text-box .date {
    font-size: 1.8rem;
    color: #fff;
    line-height: 0.8em;
  }
  .forthP > .wrap .swiper .swiper-slide .text-box .information {
    margin-top: -0.8rem;
    color: #666;
    padding-left: 1rem;
  }
  .forthP > .wrap .swiper .swiper-slide .text-box .information .info-title {
    font-size: 0.36rem;
    color: #333;
    margin-bottom: 0.2rem;
    font-weight: bold;
  }
  .forthP > .wrap .swiper .swiper-slide .text-box .information p {
    font-size: 0.28rem;
    line-height: 1.6em;
    color: #666;
  }
  .forthP .lct-box {
    position: relative;
  }
  .forthP .lct-box .swiper-btn {
    top: 0.27rem;
    margin-top: 0;
    transform: unset;
    width: 0.53rem;
    height: 0.44rem;
    display: flex;
    align-items: center;
  }
  .forthP .lct-box .swiper-btn.swiper-button-prev {
    left: 1.1rem;
  }
  .forthP .lct-box .swiper-btn.swiper-button-next {
    right: 1.1rem;
  }
  .forthP .lct-box .swiper-btn::after {
    display: none;
  }
  .forthP .lct-box .swiper-btn img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
  }
  .forthP .lct-box .line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #b3b3b3;
    top: 0.49rem;
    transform: translateY(-50%);
  }
  .forthP .lct-box .wrap .swiper .swiper-slide {
    padding-top: 0.44rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide.swiper-slide-thumb-active img {
    display: block;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide.swiper-slide-thumb-active .circle {
    background-color: #c82126;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide.swiper-slide-thumb-active p {
    color: #c82126;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide img {
    position: absolute;
    height: 0.44rem;
    top: 0rem;
    left: 50%;
    display: none;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide .circle {
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    background-color: #b3b3b3;
    margin-bottom: 0.1rem;
  }
  .forthP .lct-box .wrap .swiper .swiper-slide p {
    font-size: 0.18rem;
    color: #b2b2b2;
    font-weight: bold;
  }
  .fifthP .wrap .news-swiper {
    margin-bottom: 0.65rem;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul {
    display: flex;
    justify-content: space-between;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li:not(:first-child) {
    display: none;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a {
    width: 100%;
    display: block;
    border-bottom: 2px solid #e5e5e5;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a:hover {
    border-color: #c82126;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a:hover .img-box img {
    transform: scale(1.1);
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a:hover .text-box .news-title {
    color: #c82126;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .img-box {
    width: 100%;
    height: 4rem;
    overflow: hidden;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .text-box {
    padding: 0.2rem 0;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .text-box .date {
    font-size: 0.42rem;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .text-box .news-title {
    font-size: 0.32rem;
    line-height: 1.6em;
    margin: 0.15rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .fifthP .wrap .news-swiper .swiper-slide ul li a .text-box p {
    font-size: 0.28rem;
    color: #999;
    line-height: 1.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .fifthP .wrap .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fifthP .wrap .btn-box .btn {
    position: relative;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.1rem;
    background-color: #e9ebee;
    margin-top: 0;
    left: auto;
    right: auto;
  }
  .fifthP .wrap .btn-box .btn::after {
    color: #333;
    font-size: 0.16rem;
    font-weight: bold;
  }
  .fifthP .wrap .btn-box .middle-btn {
    margin: 0 0.1rem;
  }
  .fifthP .wrap .btn-box .middle-btn a {
    width: 1.5rem;
    height: 0.8rem;
    border-radius: 0.1rem;
    background-color: #c82126;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fifthP .wrap .btn-box .middle-btn a img {
    width: 0.4rem;
    display: block;
  }
  .footer {
    padding-top: 1.42rem;
  }
}
