/*移动端首页*/
@media (max-width: 800px) {
  html {
    font-size: 12px !important;
  }
  .app {
    width: initial;
    height: initial;
    min-width: 100%;
    background: #fff;
  }

  .conter {
    margin: 0 6%;
  }

  .app .top {
    position: absolute;
    width: 100%;
    bottom: calc(100% - 5em);
    left: 0;
    z-index: 90;
    transition: all 0.5s;
  }

  .app .top .top_cont {
    box-shadow: 0 0 5px 0 #0000001e;
    background: #fff;
    width: 100%;
  }

  .app .top.untop {
    bottom: calc(100% - 2em);
    padding-bottom: 2em;
  }

  .app .top.untop:hover {
    bottom: calc(100% - 7em);
  }

  .app .top .conter {
    max-width: 1560px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5em;
  }

  .app .top .logo {
    width: 50%;
    margin-left: 2em;
  }

  .app .top .logo img {
    width: 100%;
  }

  .app .top .logo a:first-child img {
    width: auto;
    height: 28px;
  }

  .app .top .menu {
    color: #333;
    display: flex;
    align-items: center;
  }

  .app .top .menu .ind {
    margin-right: 2em;
    display: flex;
    align-items: center;
  }

  .app .top .menu .ind > li {
    margin: 0 2em;
    height: 5em;
    display: flex;
    align-items: center;
    position: relative;
  }

  /* .app .top .menu .ind>li:hover .sub{display: flex;} */
  .app .top .menu .ind a {
    font-size: 1.125em;
  }

  .app .top .menu .sub {
    display: none;
    position: absolute;
    top: 100%;
    left: calc((100% - 8.4375em) / 2);
    width: 8.4375em;
    background: #fff;
    padding: 0.875em 0 1em;
    flex-direction: column;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 0 5px 0 #cda66730;
  }

  .app .top .menu .sub > li {
    width: 100%;
  }

  .app .top .menu .sub a {
    padding: 0.5em 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    display: inline-block;
    text-align: center;
  }

  .app .top .menu .sub a:hover {
    background: linear-gradient(-90deg, #cda668, #f2dd9f);
    color: #fff;
  }

  .app .top .search_box {
    display: flex;
    align-items: center;
  }

  .app .top .search_box > * {
    margin-right: 0.5em;
  }

  .app .top .search_box a img {
    width: 1.75em;
  }

  .app .top .search {
    width: 16.3125em;
    position: relative;
  }

  .app .top .search input {
    width: 100%;
    outline: none;
    padding: 0;
    border: 1px solid #b5b5b5;
    border-radius: 50px;
    height: 1.875em;
    box-sizing: border-box;
    padding-left: 0.75em;
    font-size: 1em;
  }

  .app .top .search input::placeholder {
    font-size: 0.875em;
    color: #d2d2d2;
  }

  .app .top .search button {
    position: absolute;
    background: url("../images/index20231114_4.png") center center no-repeat;
    background-size: 100% auto;
    width: 1.125em;
    height: 1.25em;
    top: calc((100% - 1.25em) / 2);
    right: 0.875em;
    border: 0;
    padding: 0;
    outline: none;
    font-size: 1em;
    cursor: pointer;
  }

  .app .footer {
    height: auto;
    padding: 7em 0 8.5em;
    background: url("../images/index20231114_32.png") center no-repeat;
    background-size: 220% 100%;
  }

  .app .footer .conter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .app .footer .link {
    width: 25.6666%;
    margin-right: 5%;
  }

  .app .footer .link .tit {
    font-size: 1.3125em;
    color: #333;
  }

  .app .footer .link .select {
    margin-top: 1.625em;
    width: 100%;
    padding: 0.625em 1em;
    box-sizing: border-box;
    border: 1px solid #939393;
    position: relative;
    cursor: pointer;
  }

  .app .footer .link .select span {
    color: #6f6f6f;
    font-size: 1.125em;
  }

  .app .footer .link .select:after {
    content: "";
    position: absolute;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.5em solid #cea769;
    top: calc((100% - 0.5em) / 2);
    right: 0.8125em;
    transition: all 0.5s;
  }

  .app .footer .link .select .list {
    display: none;
    position: absolute;
    bottom: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: 11.4em;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 -5px 5px 0 rgba(255, 255, 255, 0.3);
    z-index: 100;
  }

  .app .footer .link .select ul {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 0.25em 0.75em 0.25em 1.125em;
  }

  .app .footer .link .select ul::-webkit-scrollbar {
    background: #ededed;
    width: 0.375em;
  }

  .app .footer .link .select ul::-webkit-scrollbar-thumb {
    background: #a0a0a0;
  }

  .app .footer .link .select ul li {
    width: 100%;
  }

  .app .footer .link .select ul a {
    font-size: 1.125em;
    padding: 0.7222em 0;
    width: 100%;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    color: #333;
  }

  .app .footer .link .select ul a:hover {
    color: #cda667;
  }

  .app .footer .link .select.show .list {
    display: block;
  }

  .app .footer .link .select.show:after {
    transform: rotate(180deg);
  }

  .app .footer .link .lj {
    margin-bottom: 3.625em;
  }

  .app .footer .info {
    width: 69.3334%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }

  .app .footer .info .footer_menu {
    width: 100%;
    margin-bottom: 1.125em;
  }

  .app .footer .info .footer_menu ul {
    display: flex;
    justify-content: space-between;
  }

  .app .footer .info .footer_menu a {
    display: flex;
    align-items: center;
    font-size: 1.3125em;
  }

  .app .footer .info .footer_menu img {
    margin-right: 0.5em;
    height: 1.4285em;
  }

  .app .footer .info .text span {
    display: flex;
    align-items: center;
    padding: 0.75em 0;
    font-size: 1.125em;
    color: #7e7e7e;
    font-family: SHSCR, "sans-serif", "Arial";
  }

  .app .footer .info .text span img {
    width: 1.3333em;
    margin-right: 0.5em;
  }

  .app .footer .info .ewm {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app .footer .info .ewm img {
    margin-left: 1.6875em;
    width: 7.25em;
  }

  .app .footer .info .ewm p {
    text-align: center;
    color: #333;
    margin-left: 1.6875em;
  }

  .app .footer .Top {
    position: absolute;
    bottom: 9.1875em;
    right: 2.8em;
  }

  .app .footer .Top img {
    width: 4em;
    height: 4em;
  }

  .app .footer {
    padding-bottom: 11em;
  }

  .app .footer .link {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .app .footer .link > div {
    width: 48%;
  }

  .app .footer .info {
    width: 100%;
  }

  .app .footer .info .ewm {
    right: 0;
    top: 3em;
  }

  .app .cont_tit p {
    font-size: 2.2em;
  }

  .app .cont_tit span {
    font-size: 1em;
  }

  .app .index01 .banner01 .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .app .index01 .banner01 a img {
    width: 100%;
    height: 9em;
  }

  .app .index01 .banner01 .swiper-pagination1 {
    bottom: 0.875em;
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }

  .app .index02 {
    margin-bottom: 9.42em;
  }

  .app .index02 .cont_tit {
    margin: 3.6428em 0 4.5em;
  }

  .app .index02 .ttxw {
    align-items: flex-start;
    margin-bottom: 4.2142em;
  }

  .app .index02 .ttxw img {
    width: 20.5965%;
    height: auto;
    margin: 0;
    margin-top: 0.15em;
  }

  .app .index02 .ttxw a {
    font-size: 1.8571em;
    margin-left: 1em;
    font-weight: bold;
    line-height: 1.2;
  }

  .app .index02 .pic_cont {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.1785em;
  }

  .app .index02 .pic_cont img {
    width: 100%;
  }

  .app .index02 .pic_cont p {
    position: absolute;
    background: #00000080;
    width: 100%;
    font-size: 1.7142em;
    padding: 1em 1.619em;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    color: #fff;
  }

  .app .index02 .right_cont {
    width: 100%;
    /* margin-bottom: 2.5357em; */
  }

  .app .index02 .right_cont .tis span {
    font-size: 2em;
    height: 2.1428em;
  }

  .app .index02 .right_cont .tis {
    margin-bottom: 2.9285em;
  }

  .app .index02 .right_cont .lis li {
    font-size: 1.7142em;
    line-height: 2.375;
  }

  .app .index02 .tzgg {
    flex-wrap: wrap;
  }

  .app .index02 .tzgg span {
    font-size: 1.7142em;
    border: 0;
  }

  .app .index02 .tzgg span img {
    width: 1.2083em;
    height: auto;
  }

  .app .index02 .tzgg a {
    width: 100%;
    font-size: 1.7142em;
    margin: 1em 0 0;
  }

  .app .index03 {
    margin-bottom: 9.42em;
  }

  .app .index03 .cont03 {
    flex-wrap: wrap;
  }

  .app .index03 .cont_tit {
    margin-bottom: 4.5714em;
    margin-top: 0;
    padding-top: 0;
  }

  .app .index03 .left_cont {
    width: 100%;
    padding: 0;
  }

  .app .index03 .bottom_menu {
    position: relative;
    padding: 2.2857em;
    margin-bottom: 2.5em;
  }

  .app .index03 .bottom_menu a {
    font-size: 1.7857em;
    padding: 0.2em;
    min-width: 4em;
  }

  .app .index03 .bottom_menu a img {
    height: 2.44em;
    margin-bottom: 0.8em;
  }

  .app .index03 .left_cont .text .tit {
    font-size: 1.9285em;
    margin-bottom: 1.2962em;
  }

  .app .index03 .left_cont .text p {
    font-size: 1.7142em;
    line-height: 1.8333;
  }

  .app .index03 .left_cont .text .more {
    display: inline-block;
    font-size: 1.7857em;
    padding: 0.56em 2em 0.6em;
    margin-bottom: 2.16em;
  }

  .app .index03 .right_cont {
    width: 100%;
    padding: 0;
  }

  .app .index03 .right_cont img {
    width: 100%;
    height: auto;
  }

  .app .index_03 {
    background: url("../images/ppcp_bg.jpg") no-repeat;
    background-size: 100% auto;
    margin: 0 -1.25rem;
  }

  .app .index_03 .item {
    height: 18rem;
    background: unset !important;
  }

  .app .index_03 .item .fadein {
    background-color: unset !important;
  }

  .app .index_03 .item img {
    width: 3.8462rem;
  }

  .app .index_03 .item span {
    margin: 1.0769rem 0 20px;
    font-size: 1.5385rem;
  }

  .app .index_03 .item .xq {
    width: 7.6923rem;
    font-size: 1.0769rem;
    line-height: 2.3077rem;
    margin-bottom: 0;
  }

  .app .index_03 .item .fadein:hover .xq:hover {
    width: 8.4615rem;
    background-color: #fff;
    border-color: #fff;
    color: #0a64c8;
  }

  .app .index04 {
    margin-bottom: 8em;
  }

  .app .index04 .cont_tit {
    margin-bottom: 5.2142em;
  }

  .app .index04 .sd_list ul {
    flex-wrap: wrap;
  }

  .app .index04 .sd_list li {
    width: 47.58%;
    margin-bottom: 1.2857em;
  }

  .app .index04 .sd_list .pic img {
    width: 100%;
    height: auto;
  }

  .app .index04 .sd_list .sd_cont {
    padding-bottom: 5.3571em;
    justify-content: center;
  }

  .app .index04 .sd_list .sd_cont .logo {
    height: 20.3125%;
  }

  .app .index04 .sd_list .sd_cont .logo img {
    height: 100%;
  }

  .app .index04 .sd_list .sd_cont .tit {
    font-size: 2em;
    margin-top: 1.1071em;
    padding-bottom: 1.2857em;
  }

  .app .index04 .sd_list .sd_cont .text {
    font-size: 1.5em;
    line-height: 1.8095;
    min-height: 5.4em;
    margin-top: 1em;
    padding: 0 0.5em;
  }

  .app .index04 .sd_list .sd_cont .more {
    font-size: 1.4285em;
    padding: 0.5em 1.2em;
    border-width: 1px;
    margin-bottom: 1.3em;
  }

  .app .index05 {
    position: relative;
    margin-bottom: 8em;
    height: 22em;
  }

  .app .index05 .conter {
    position: absolute;
    width: 88%;
    height: 100%;
  }

  .app .index05 .cont_tit {
    top: 7%;
  }

  .app .index05 .canva {
    width: 100%;
    height: 100%;
  }

  /* .app .index05 .canva img {
        width: 100%;
        height: auto;
    } */

  .app .index06 {
    margin-bottom: 8em;
  }

  .app .index06 .cont_tit {
    margin-bottom: 6em;
  }

  .app .index06 .djjw {
    padding-left: 6%;
    overflow-x: auto;
    width: 94%;
    margin-bottom: 3.5em;
  }

  .app .index06 .djjw::-webkit-scrollbar {
    display: none;
  }

  .app .index06 .djjw ul {
    display: block;
    white-space: nowrap;
  }

  .app .index06 .djjw li {
    display: inline-block;
    width: 53.267%;
  }

  .app .index06 .djjw li:not(:last-of-type) {
    padding-right: 5.3977%;
  }

  .app .index06 .djjw li:last-of-type {
    padding-right: 6%;
  }

  .app .index06 .djjw .pic img {
    /* width: 100%; */
    height: auto;
  }

  .app .index06 .djjw .text {
    box-sizing: border-box;
    padding-left: 2.4285em;
    padding-bottom: 2.5em;
  }

  .app .index06 .djjw .text .tit {
    font-size: 1.7128em;
  }

  .app .index06 .djjw .text .more {
    font-size: 1.2142em;
    margin: 1.5882em 0 0.4117em;
  }

  .app .index06 .djjw .down {
    padding-top: 0;
  }

  .app .index06 .ts {
    text-align: center;
  }

  .app .index06 .ts p {
    font-size: 1.5em;
  }

  .app .index06 .ts span {
    width: 0.8571em;
    height: 1em;
    display: inline-block;
  }

  .app .index07 {
    margin-bottom: 8em;
    background: unset !important;
  }

  .app .index07 .cont_tit {
    margin-bottom: 4.5714em;
  }

  .app .index07 .spzx {
    padding-bottom: 3.1428em;
  }

  .app .index07 .spzx .swiper-slide {
    width: 85%;
    height: auto;
    margin-right: -5%;
  }

  .app .index07 .spzx .swiper-pagination {
    bottom: 0;
  }

  .app .index07 .spzx .swiper-pagination-bullet {
    height: 0.7142em;
    width: 4em;
  }

  .app .qyry,
  .app .qyry .swiper-slide img {
    height: 16.1538rem;
  }

  .app .index07 .xq {
    display: flex;
    justify-content: center;
    margin-top: 0.7692rem;
  }

  .app .index07 .xq p {
    width: 7.6923rem;
    height: 2.3077rem;
    line-height: 2.3077rem;
    text-align: center;
    color: #fff;
    background: #00a09f;
    border-radius: 1.5385rem;
  }

  .app .index07 .v-playBtn {
    display: inline-block;
    width: 3.8462rem;
    height: 3.8462rem;
    background: url(../images/icon-play.png) no-repeat center;
    -moz-background-size: 100%;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .app .index07 video {
    width: 100%;
    margin-bottom: 28px;
    border-radius: 10px;
  }

  .app .index08 {
    margin-bottom: 8em;
  }

  .app .index08 .cont_tit {
    margin-bottom: 6em;
  }

  .app .index08 .ztzl {
    padding-left: 6%;
    overflow-x: auto;
    width: 94%;
    margin-bottom: 3.5em;
  }

  .app .index08 .ztzl::-webkit-scrollbar {
    display: none;
  }

  .app .index08 .ztzl ul {
    display: block;
    white-space: nowrap;
  }

  .app .index08 .ztzl li {
    display: inline-block;
    width: 53.267%;
  }

  .app .index08 .ztzl li img {
    width: 100%;
  }

  .app .index08 .ztzl li:not(:last-of-type) {
    padding-right: 5.3977%;
  }

  .app .index08 .ztzl li:last-of-type {
    padding-right: 6%;
  }

  .app .index08 .ts {
    text-align: center;
  }

  .app .index08 .ts p {
    font-size: 1.5em;
  }

  .app .index08 .ts span {
    width: 0.8571em;
    height: 1em;
    display: inline-block;
  }

  .app .index09 .cont_tit {
    margin-bottom: 8em;
  }

  .app .index09 .swiper-container {
    overflow: hidden;
  }

  .app .index09 .swiper-slide {
    height: 20.7857em;
  }

  .app .index09 .swiper-slide img {
    height: 100%;
  }

  .nav-bt {
    display: inline-block;
    width: 2em;
    cursor: pointer;
    margin-right: 1em;
  }

  .app .top .menu {
    width: 100%;
    display: block;
    position: absolute;
    top: 5em;
    left: 0;
    background: #fff;
    transform-style: preserve-3d;
    border-top: 1px solid #dfdada;
    z-index: 99;
  }

  .app .mask {
    display: none;
    position: fixed;
    top: 5em;
    left: 0;
    height: 100vh;
    transform: translateZ(-1px);
    background: rgba(51, 51, 51, 0.237);
    width: 100%;
  }

  .app .top .menu .ind {
    margin: 0;
    display: block;
    width: 100%;
  }

  .app .top .search_box {
    width: 100%;
    justify-content: center;
    margin: 1em 0;
  }

  .app .top .search {
    width: 70vw;
  }

  .app .top .menu {
    overflow-y: auto;
    transition: all ease 0.1s;
    display: none;
  }

  .app .top .menu .ind a {
    display: inline-block;
    padding: 1em 0;
    margin: 0 auto;
  }

  .app .top .menu .ind .active > a {
    border-bottom: 2px solid #cda767;
  }

  .app .top .menu .ind > li {
    margin: 0 2em;
    height: auto;
    display: block;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid #ebe9e9;
    font-weight: bold;
    font-size: 1.2em;
  }

  .app .top .menu .sub li {
    /* display: flex;
    flex-wrap: wrap;
    padding: 0 5.3846rem; */
  }

  .app .top .menu .sub {
    display: none;
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    flex-direction: column;
    border-top: 1px solid #ebe9e9;
    box-shadow: none;
    z-index: 99;
  }

  .app .top .menu .sub a {
    padding: 0.5em 0;
    /* margin: 0;
    width: 50%; */
    border-bottom: 1px solid transparent;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #8c8a8a;
    font-size: 1em;
  }
}

@media (max-width: 580px) {
  html {
    font-size: 12px;
  }

  .conter {
    margin: 0 5%;
  }

  .app .footer {
    padding: 0;
    margin-top: 0;
  }

  .app .cz .swiper-box {
    padding: 0 2em;
  }

  .app .footer .info {
    gap: 1em;
    margin-bottom: 2em;
  }

  .app .footer .info .footer_menu img {
    margin-right: 0.2em;
    height: 1.0285em;
  }

  .app .footer .info .footer_menu a {
    display: flex;
    align-items: center;
    font-size: 1.025em;
  }

  .app .footer .info .footer_menu ul {
    flex-wrap: nowrap;
  }

  .app .footer .info .ewm img {
    width: 6em;
    /* margin: 0; */
  }

  .app .footer .info .text {
    flex-basis: 70%;
    background: unset;
    padding: unset;
    box-sizing: border-box;
  }

  .app .footer .info .text span {
    display: flex;
    align-items: flex-start;
    padding: 0.55em 0;
    font-size: 1em;
    color: #5f5f5f;
    font-family: SHSCR, "sans-serif", "Arial";
    background: unset;
  }

  .app .footer .info .ewm {
    background: unset;
    font-size: 1em;
    flex-direction: column;
    flex-wrap: wrap-reverse;
    flex-basis: calc(30% - 1.5em);
  }

  .app .footer .link .select:hover .list {
    display: flex;
  }

  .app .cont_tit p {
    font-size: 1.9em;
  }

  .app .cont_tit:after {
    width: 24.28125em;
    height: 3em;
    bottom: -2em;
  }

  .app .index_cont {
    margin-bottom: 4.5em;
    margin-top: 5em;
  }

  .app .index02 .ttxw {
    flex-direction: row;
    justify-content: flex-start;
  }

  .app .index02 .ttxw img {
    width: 25%;
  }

  .app .index02 .ttxw a {
    font-size: 1.2em;
    margin-left: 1em;
    line-height: 1.6em;
  }

  .app .index02 .right_cont .tis span {
    font-size: 1.4em;
  }

  .app .index02 .pic_cont p {
    font-size: 1.4em;
  }

  .app .index02 .right_cont .lis li {
    font-size: 1.4em;
  }

  .app .index02 .tzgg span {
    font-size: 1.4em;
  }

  .app .index02 .tzgg a {
    font-size: 1.4em;
  }

  .app .index03 .bottom_menu {
    padding: 1.5em;
    bottom: 0;
  }

  .app .index03 .bottom_menu a {
    font-size: 1.2em;
  }

  .app .index03 .left_cont .text .tit {
    font-size: 1.5em;
  }

  .app .index03 .left_cont .text p {
    font-size: 1.4em;
  }

  .app .index03 .left_cont .text .more {
    font-size: 1.4em;
  }

  .app .index04 .sd_list .sd_cont {
    padding-bottom: 2em;
  }

  .app .index04 .sd_list .sd_cont .tit {
    font-size: 1.2em;
  }

  .app .index04 .sd_list .sd_cont .text {
    font-size: 1em;
    margin: 0.25em 0;
    min-height: initial;
    overflow-y: auto;
    margin-bottom: 2em;
  }

  .app .index04 .sd_list .sd_cont .more {
    font-size: 1em;
    margin-bottom: 0.9em;
  }

  .app .index06 .djjw .text {
    padding-left: 1em;
    padding-bottom: 1em;
  }

  .app .index06 .djjw .text .tit {
    font-size: 1.4em;
  }

  .app .index06 .djjw .text .more {
    font-size: 1em;
  }

  .app .index09 {
    margin-bottom: 0;
  }

  .app .index09 .cont_tit {
    margin-bottom: 3.5em;
    margin-top: 4em;
  }

  .app .index09 .swiper-slide {
    height: 14em;
  }
}
