@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: #325ed1;
    padding: 0 0.3rem;
  }

  .phoneheader .search-box {
    flex: 1;
    display: flex;
    height: 0.8rem;
    border: 1px solid #325ed1;
    margin-right: 0.2rem;
    background-color: #fff;
  }

  .phoneheader .search-box input {
    flex: 1;
    height: 100%;
    padding-left: 0.15rem;
    font-size: 0.28rem;
  }

  .phoneheader .search-box .search-btn {
    transition: 0.3s;
  }

  .phoneheader .search-box .search-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .phoneheader .search-box .search-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 0.8rem;
    background-color: #fff;
  }

  .phoneheader .search-box .search-btn a img {
    width: 0.3rem;
  }

  .phoneheader .ht-left {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.28rem;
    margin-right: 0.4rem;
  }

  .phoneheader .ht-left:hover .sub-menu {
    display: block;
  }

  .phoneheader .ht-left img {
    filter: brightness(0) invert(1);
  }

  .phoneheader .ht-left .sub-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    min-width: 100%;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    max-height: 5rem;
    overflow-y: auto;
  }

  .phoneheader .ht-left .sub-menu a {
    color: #fff;
    text-align: center;
    display: block;
    padding: 0.2rem 0.4rem;
    font-size: 0.28rem;
  }

  .phoneheader .ht-left .sub-menu a:hover {
    color: #325ed1;
  }

  .phoneheader .ht-left .sub-menu a:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .phoneheader .ht-left .address {
    margin: 0 0.1rem;
    white-space: nowrap;
  }

  .phoneheader.active {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .phoneheader .logo-box {
    width: 3rem;
  }

  .phoneheader .logo-box img {
    filter: brightness(0) invert(1);
    width: 100%;
    display: block;
  }

  .phoneheader .tel {
    flex-shrink: 0;
    font-size: 0.3rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .phoneheader .tel .tel-icon {
    width: 0.4rem;
    height: 0.41rem;
    background-image: url("../images/telephone.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.08rem;
  }

  .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;
  }

  .mobile-container {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #325ed1;
    transition: 0.3s;
    transform: translateX(100%);
    display: block;
  }

  .mobile-container.active {
    transform: translateX(0);
  }

  .mobile-container .phoneheader {
    position: static;
    justify-content: flex-end;
    background: none !important;
  }

  .mobile-container .header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 0.46rem;
    font-size: 0.32rem;
    color: #fff;
    line-height: 0.46rem;
    padding: 0 0.56rem;
    box-sizing: border-box;
  }

  .mobile-container .header-menu a {
    color: #fff;
  }

  .mobile-container .header-menu .login-btn {
    cursor: pointer;
  }

  .mobile-container .header-menu .order-btn {
    cursor: pointer;
  }

  .mobile-container .header-menu .cut-line {
    width: 0.02rem;
    height: 0.36rem;
    background-color: #fff;
    margin: 0 0.3rem;
  }

  .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;
  }

  .banner {
    position: relative;
    height: 5rem;
  }

  .newsul li a {
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-end;
    /* line-height: 1.6em; */
  }

  .newsul li a .bsfj {
    flex: none;
  }

  .newsul li a .bq {
    line-height: normal;
    font-size: 0.24rem;
    padding: 0.02rem 0.08rem;
    transform: scale(1);
    margin-left: 0.1rem;
  }

  .newsul li a:hover p {
    color: #d50d29;
  }

  .newsul li a .circle {
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: #d50d29;
    margin-right: 0.15rem;
    align-self: center;
  }

  .newsul li a p {
    flex: 1;
    font-size: 0.28rem;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-right: 0.3rem;
    line-height: 1.6em;
  }

  .newsul li a .date {
    margin-left: auto;
    font-size: 0.28rem;
    color: #999999;
    margin-left: 0.1rem;
    line-height: 1.6em;
  }

  .floor {
    padding-top: 0.45rem;
  }

  .floor .common-top {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 0.24rem;
  }

  .floor .common-top::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.08rem;
    height: 0.6rem;
    background-color: #d50d29;
  }

  .floor .common-top .left h3 {
    font-size: 0.36rem;
    color: #333333;
    margin-bottom: 0.02rem;
  }

  .floor .common-top .left p {
    font-size: 0.24rem;
    color: #999999;
  }

  .floor .common-top .more-btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.24rem;
    background: linear-gradient(to right, transparent, #f7f7f8);
  }

  .floor .common-top .more-btn a {
    font-size: 0.24rem;
    color: #999999;
  }

  .floor .common-top .more-btn a:hover {
    color: #d50d29;
  }

  .floor .box-nr {
    padding-top: 0.32rem;
  }

  .floor .teaul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 0.1rem;
  }

  .floor .teaul li {
    height: 2.2rem;
  }

  .floor .teaul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .change-part {
    padding: 0.2rem 0;
    display: block;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
  }

  .change-part .left-change {
    display: flex;
    align-items: center;
    margin-bottom: 0.08rem;
  }

  .change-part .left-change .item.active a {
    border: 1px solid #d50d29;
    color: #d50d29;
  }

  .change-part .left-change .item:hover a {
    border: 1px solid #d50d29;
    color: #d50d29;
  }

  .change-part .left-change .item:not(:last-child) {
    margin-right: 0.08rem;
  }

  .change-part .left-change .item a {
    padding: 0.12rem 0.2rem;
    border: 1px solid #d2d2d2;
    font-size: 0.28rem;
  }

  .change-part .shaixuan {
    display: flex;
    align-items: center;
    font-size: 0.28rem;
  }

  .change-part .shaixuan p {
    color: #333;
    margin-right: 0.16rem;
  }

  .change-part .shaixuan .sx-item.active a {
    border: 1px solid #d50d29;
    color: #d50d29;
  }

  .change-part .shaixuan .sx-item:hover a {
    border: 1px solid #d50d29;
    color: #d50d29;
  }

  .change-part .shaixuan .sx-item:not(:last-child) {
    margin-right: 0.08rem;
  }

  .change-part .shaixuan .sx-item a {
    padding: 0.08rem;
    border: 1px solid #d2d2d2;
  }

  .floor1 .wrap .news-box {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0.5rem;
    gap: 0;
  }

  .floor1 .wrap .news-box .box-nr {
    width: 100%;
  }

  .floor1 .wrap .news-box .box-nr .swiper {
    width: 100%;
    height: 4rem;
  }

  .floor1 .wrap .news-box .box-nr .swiper .swiper-pagination {
    left: auto;
    width: max-content;
    right: 0.16rem;
    bottom: 0.12rem;
  }

  .floor1
    .wrap
    .news-box
    .box-nr
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet {
    background-color: #fff;
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 50%;
  }

  .floor1 .wrap .news-box .box-nr .swiper .swiper-slide {
    width: 100%;
    position: relative;
  }

  .floor1 .wrap .news-box .box-nr .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .floor1 .wrap .news-box .box-nr .swiper .swiper-slide .text-box {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    height: 0.6rem;
    padding-left: 0.15rem;
  }

  .floor1 .wrap .news-box .box-nr .swiper .swiper-slide .text-box p {
    color: #fff;
    font-size: 0.14rem;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .floor1 .wrap .news-box .box-nr .topnews {
    background-color: #f2f2f2;
    text-align: center;
    height: 1.8rem;
    padding: 0 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .floor1 .wrap .news-box .box-nr .topnews h4 {
    font-size: 0.32rem;
    color: #d50d29;
    margin-bottom: 0.1rem;
  }

  .floor1 .wrap .news-box .box-nr .topnews p {
    font-size: 0.28rem;
    color: #666666;
    line-height: 1.8em;
  }

  footer {
    background-color: #0b1c49;
    padding-bottom: 1.5rem;
  }

  footer .wrap .footer-top {
    display: block;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem;
    border-bottom: 1px solid #bfbfbf;
  }

  footer .wrap .footer-top .logo {
    width: 3rem;
    margin: 0 auto;
    margin-bottom: 0.3rem;
  }

  footer .wrap .footer-top .logo img {
    width: 100%;
  }

  footer .wrap .footer-top ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer .wrap .footer-top ul li {
    position: relative;
  }

  footer .wrap .footer-top ul li:not(:last-child) {
    margin-right: 0.3rem;
  }

  footer .wrap .footer-top ul li a {
    font-size: 0.23rem;
    color: #b2cdec;
  }

  footer .wrap .footer-bottom {
    font-size: 0.24rem;
    padding: 0.2rem;
    line-height: 1.8em;
  }

  footer .wrap .footer-bottom .blue {
    color: #0030ff;
  }

  .about-floor {
    padding-top: 0;
  }

  .about-floor .wrap .common-top {
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, transparent, #f7f7f8);
  }

  .about-floor .wrap .about-content {
    padding: 0.25rem 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 0.3rem;
  }

  .about-floor .wrap .about-content p {
    font-size: 0.32rem;
    line-height: 1.8em;
  }

  .about-floor .wrap .about-content p:not(:last-child) {
    margin-bottom: 0.35rem;
  }

  .about-floor .wrap .title-box {
    padding-bottom: 0.2rem;
  }

  .about-floor .wrap .title-box h2 {
    font-size: 0.38rem;
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .about-floor .wrap .title-box .date-sc {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about-floor .wrap .title-box .date-sc .date {
    font-size: 0.28rem;
    color: #666666;
  }

  .about-floor .wrap .title-box .date-sc .sc {
    font-size: 0.28rem;
    color: #c82126;
    cursor: pointer;
  }

  .breadnavs {
    padding: 0.2rem 0;
    margin-bottom: 0.2rem;
  }

  .breadnavs .wrap {
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    color: #666666;
  }

  .breadnavs .wrap img {
    width: 0.28rem;
    margin-right: 0.2rem;
  }

  .breadnavs .wrap ul {
    display: flex;
    align-items: center;
  }

  .breadnavs .wrap ul li {
    font-size: 0.28rem;
    color: #666666;
  }

  .breadnavs .wrap ul li:last-child {
    color: #d50d29;
  }

  .breadnavs .wrap ul li a {
    font-size: 0.28rem;
    color: #666666;
  }

  .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;
  }

  .mengceng {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
  }

  .mengceng .dl-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 80%;
    padding: 0.2rem 0.4rem 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mengceng .dl-dialog img {
    width: 80%;
  }

  .mengceng .dl-dialog h2 {
    font-size: 0.36rem;
    margin-bottom: 0.1rem;
  }

  .mengceng .dl-dialog p {
    text-align: center;
    font-size: 0.28rem;
    color: #999999;
    line-height: 1.8em;
    margin-bottom: 0.4rem;
  }

  .mengceng .dl-dialog p span {
    color: #c82126;
  }

  .mengceng .dl-dialog .dia-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .mengceng .dl-dialog .dia-btns .common-btn.login-btn a {
    background-color: #c82126;
    color: #fff;
    border: 1px solid #c82126;
  }

  .mengceng .dl-dialog .dia-btns .common-btn a {
    width: 2.5rem;
    height: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.28rem;
    border: 1px solid #bfbfbf;
  }

  .tz-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 85%;
    padding: 0.4rem 0.2rem;
    border-radius: 0.1rem;
  }

  .tz-dialog h2 {
    font-size: 0.36rem;
    text-align: center;
    margin-bottom: 0.3rem;
    color: #cc0000;
  }

  .tz-dialog .p-content p {
    font-size: 0.28rem;
    text-indent: 2em;
    line-height: 2em;
  }

  .tz-dialog .p-content p a {
    color: #0030ff;
    text-decoration: underline;
  }

  .tz-dialog .tz-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .tz-dialog .tz-buttons .common-btn.red-btn a {
    background-color: #d50d29;
    color: #fff;
  }

  .tz-dialog .tz-buttons .common-btn a {
    display: block;
    padding: 0.1rem 0.24rem;
    border: 1px solid #d50d29;
    border-radius: 0.03rem;
    font-size: 0.28rem;
    color: #d50d29;
    transition: 0.3s;
  }

  .tz-dialog .tz-buttons .common-btn a:hover {
    opacity: 0.8;
  }

  .tz-dialog .tz-buttons .common-btn:not(:last-child) {
    margin-right: 0.2rem;
  }

  .login-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 80%;
    padding: 0.35rem 0.2rem;
  }

  .login-dialog h2 {
    font-size: 0.36rem;
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .login-dialog .input-item {
    position: relative;
  }

  .login-dialog .input-item .hq {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.28rem;
    color: #c82126;
    cursor: pointer;
    height: 1rem;
    width: 2rem;
  }

  .login-dialog .input-item input {
    padding-right: 2rem;
  }

  .login-dialog input {
    width: 100%;
    height: 1rem;
    border: 1px solid #bfbfbf;
    padding-left: 0.2rem;
    font-size: 0.28rem;
    margin-bottom: 0.3rem;
  }

  .login-dialog button {
    width: 100%;
    height: 1rem;
    background-color: #c82126;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.16rem;
    margin-bottom: 0.2rem;
    cursor: pointer;
  }

  .login-dialog .notice {
    font-size: 0.28rem;
    color: #999999;
  }

  .login-dialog .notice a {
    color: #c82126;
    text-decoration: underline;
  }

  .sx-part {
    border-top: 1px solid #e5e5e5;
  }

  .sx-part .part-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.2rem;
  }

  .sx-part .part-item:not(:last-child) {
    border-bottom: 1px dashed #e5e5e5;
  }

  .sx-part .part-item .label {
    width: 100%;
    font-size: 0.28rem;
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
  }

  .sx-part .part-item .part-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }

  .sx-part .part-item .part-list .li-item a {
    padding: 0.12rem 0.2rem;
    border: 1px solid #d2d2d2;
    font-size: 0.28rem;
    display: block;
    margin-bottom: 0.08rem;
  }

  .sx-part .part-item .part-list .li-item:not(:last-child) {
    margin-right: 0.08rem;
  }

  .sx-part .part-item .part-list .li-item.active a {
    background-color: #c82126;
    color: #fff;
    border: 1px solid #c82126;
  }

  .sx-part .part-item .part-list .li-item:hover a {
    background-color: #c82126;
    color: #fff;
    border: 1px solid #c82126;
  }

  .total-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.8rem;
    background-color: #ffefef;
    font-size: 0.28rem;
  }

  .total-box span {
    color: #c82126;
  }

  .zf-mc .zf-dialog {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0.4rem 0.5rem;
  }

  .zf-mc .zf-dialog .guanbi {
    position: absolute;
    width: 0.22rem;
    right: 0.5rem;
    top: 0.4rem;
    cursor: pointer;
  }

  .zf-mc .zf-dialog .dia-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #cc0000;
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .zf-mc .zf-dialog .sml-title {
    font-size: 0.32rem;
    position: relative;
    margin-bottom: 0.3rem;
    font-weight: bold;
  }

  .zf-mc .zf-dialog .sml-title.zffs {
    margin-top: 0.4rem;
  }

  .zf-mc .zf-dialog .sml-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.15rem;
    width: 0.05rem;
    height: 0.23rem;
    background-color: #cc0000;
  }

  .zf-mc .zf-dialog p {
    font-size: 0.28rem;
    margin-bottom: 0.3rem;
  }

  .zf-mc .zf-dialog p span {
    font-size: 0.24rem;
    font-weight: bold;
    color: #cc0000;
  }

  .zf-mc .zf-dialog .fs-list {
    display: flex;
  }

  .zf-mc .zf-dialog .fs-list .zf-item {
    width: 2.95rem;
    height: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.2rem;
    border: 1px solid #dbdbdb;
    padding: 0.1rem;
    margin-right: 0.3rem;
  }

  .zf-mc .zf-dialog .fs-list .zf-item:hover {
    border: 1px solid #cc0000;
  }

  .zf-mc .zf-dialog .fs-list .zf-item img {
    width: 0.4rem;
  }

  .zf-mc .zf-dialog .fs-list .zf-item p {
    margin-bottom: 0;
  }

  .usercen-floor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
  }

  .usercen-floor .huiyuan .hy-box .hy-level .shengji {
    padding: 0 0.2rem;
    height: 0.4rem;
    width: auto;
    border-radius: 0.2rem;
  }

  .usercen-floor .kaitong {
    width: 1.54rem;
    height: 0.54rem;
    background-color: #c82126;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 0rem;
    margin-right: 0.3rem;
  }

  .usercen-floor .uf-left {
    display: flex;
    align-items: center;
  }

  .usercen-floor .uf-menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.3rem;
  }

  .usercen-floor .uf-menu .menu-item {
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
  }

  .usercen-floor .uf-menu .menu-item.active a {
    border: 1px solid #c82126;
    color: #c82126;
  }

  .usercen-floor .uf-menu .menu-item.active a img {
    display: none;
  }

  .usercen-floor .uf-menu .menu-item.active a .ac {
    display: block;
  }

  .usercen-floor .uf-menu .menu-item:hover a {
    border: 1px solid #c82126;
    color: #c82126;
  }

  .usercen-floor .uf-menu .menu-item:hover a img {
    display: none;
  }

  .usercen-floor .uf-menu .menu-item:hover a .ac {
    display: block;
  }

  .usercen-floor .uf-menu .menu-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.18rem;
    width: 1.8rem;
    height: 0.8rem;
    border-radius: 0.1rem;
    border: 1px solid transparent;
  }

  .usercen-floor .uf-menu .menu-item a img {
    width: 0.5rem;
    display: block;
    margin-right: 0.15rem;
  }

  .usercen-floor .uf-menu .menu-item a .ac {
    display: none;
  }

  .dd-box .scroll-box {
    width: 200%;
  }

  .dd-box .dd-list {
    height: 1rem;
    display: flex;
    align-items: center;
  }

  .dd-box .dd-list:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }

  .dd-box .dd-list.dd-top {
    height: 0.8rem;
    background-color: #fee9e9;
    border-bottom: none;
  }

  .dd-box .dd-list .dd-item {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0.4rem;
    font-size: 0.14rem;
  }

  .dd-box .dd-list .ddbh {
    width: 3rem;
  }

  .dd-box .dd-list .ddje {
    width: 1.6rem;
  }

  .dd-box .dd-list .xdsj {
    width: 3rem;
  }

  .dd-box .dd-list .zt {
    width: 2rem;
  }

  .dd-box .dd-list .zt.zt1 {
    color: #c82126;
  }

  .dd-box .dd-list .zt.zt2 {
    color: #0dd533;
  }

  .dd-box .dd-list .zt.zt3 {
    color: #d57e0d;
  }

  .dd-box .dd-list .caozuo {
    width: 2rem;
    padding-left: 0;
    justify-content: center;
  }

  .dd-box .dd-list .caozuo .zhifu-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    border: 1px solid #c82126;
    color: #c82126;
  }

  .dd-box .dd-list .ddmc {
    flex: 1;
  }

  .fw-mc {
    display: block;
  }

  .fw-mc .fw-dialog {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0.4rem 0.5rem;
  }

  .fw-mc .fw-dialog .fw-guanbi {
    position: absolute;
    width: 0.22rem;
    right: 0.5rem;
    top: 0.4rem;
    cursor: pointer;
  }

  .fw-mc .fw-dialog .dia-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #cc0000;
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .fw-mc .fw-dialog .fw-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .fw-mc .fw-dialog .fw-list .fw-item {
    border: 0.03rem solid #333;
    border-radius: 0.2rem;
    overflow: hidden;
    color: #333;
    cursor: pointer;
  }

  .fw-mc .fw-dialog .fw-list .fw-item.active {
    border: 0.03rem solid #cc0000;
    color: #cc0000;
    background-color: #fef5f5;
  }

  .fw-mc .fw-dialog .fw-list .fw-item.active .quyu {
    background-color: #cc0000;
  }

  .fw-mc .fw-dialog .fw-list .fw-item.active .choose select {
    background-color: #f5e7e7;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .quyu {
    width: 1.8rem;
    height: 0.58rem;
    border-bottom-right-radius: 0.2rem;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.24rem;
    color: #fff;
    margin-bottom: 0.15rem;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .nr-box {
    padding: 0.1rem 0.2rem;
    padding-top: 0;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .choose {
    display: flex;
    align-items: center;
    font-size: 0.2rem;
    height: 0.54rem;
    margin-bottom: 0.1rem;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .choose select {
    margin-left: 0.12rem;
    width: 1.5rem;
    height: 0.54rem;
    background-color: #e5e5e5;
    font-size: 0.16rem;
    border: none;
    outline: none;
    border-radius: 0.1rem;
    padding-left: 0.1rem;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .price {
    font-size: 0.2rem;
  }

  .fw-mc .fw-dialog .fw-list .fw-item .price span {
    font-size: 0.4rem;
    font-weight: bold;
    margin: 0 0.05rem;
  }

  .fw-mc .fw-dialog p {
    font-size: 0.24rem;
    color: #000;
  }

  .fw-mc .fw-dialog p font {
    font-weight: bold;
  }

  .fw-mc .fw-dialog p:not(:last-child) {
    margin-bottom: 0.18rem;
  }

  .fw-mc .fw-dialog .dia-btns {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .fw-mc .fw-dialog .dia-btns .common-btn:not(:last-child) {
    margin-right: 0.25rem;
  }

  .fw-mc .fw-dialog .dia-btns .common-btn.login2-btn a {
    background-color: #cc0000;
    color: #fff;
    border: 1px solid #cc0000;
  }

  .fw-mc .fw-dialog .dia-btns .common-btn a {
    width: 1.54rem;
    height: 0.54rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.16rem;
    border: 1px solid #bfbfbf;
  }

  .phone-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #ccc;
    background-color: #fff;
    z-index: 999;
  }

  .phone-footer .footer-item {
    width: 100%;
    height: 1.4rem;
  }

  .phone-footer .footer-item.active a {
    color: #325ed1;
  }

  .phone-footer .footer-item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .phone-footer .footer-item a span {
    font-size: 0.5rem;
    margin-bottom: 0.15rem;
  }

  .phone-footer .footer-item a p {
    font-size: 0.28rem;
  }

  .setAccount {
    margin: 0.2rem 0;
    white-space: nowrap;
    text-align: center;
  }

  .pp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .pp-bottom .tishi {
    font-size: 0.28rem;
    word-break: break-all;
    margin-top: 0.2rem;
    white-space: nowrap;
  }
}
/* 新版 */
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .newfloor .newfloor-title::after {
    height: 2px;
  }
  .newfloor .newfloor-title h2 {
    font-size: 0.42rem;
  }
  .newfloor .newfloor-title .en {
    font-size: 0.7rem;
  }
  .change-part2 .left-change {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .change-part2 .left-change .item:not(:last-child) {
    margin-right: 0;
  }
  .change-part2 .left-change .item a {
    font-size: 0.24rem;
  }
  .change-part2 .left-change .item a img {
    height: 0.4rem;
  }
  .shaixuan2 .sx-item a {
    font-size: 0.24rem;
    height: 0.6rem;
    min-width: 1.2rem;
  }
  .newfloor1 .wrap .news-box {
    display: block;
  }
  .newfloor1 .wrap .news-box .box-nr {
    width: 100%;
  }
  .more-btn a {
    font-size: 0.28rem;
    height: 0.6rem;
    width: 2rem;
    border-radius: 0.3rem;
  }
}
