@font-face {
  font-family: 'SourceHanSansCN-Normal';
  src: url('../fonts/SourceHanSansCN-Normal.woff2') format('woff2'), /* 优先使用WOFF2（压缩率更高） */ url('../fonts/SourceHanSansCN-Normal.woff') format('woff'), /* 兼容旧浏览器 */ url('../fonts/SourceHanSansCN-Normal.otf') format('opentype');
  /* 备用格式 */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* 避免阻塞渲染，使用回退字体 */
}
:root {
  /* 颜色系统 */
  --on-color: #1c8fb3;
  /*选中颜色*/
  --text-color: #333;
  /* 正文文字 */
  --bg-color: #f5f5f5;
  /* 背景色 */
  /* 字体系统 */
  --base-font-size: 16px;
  /* 基准字号 */
  --heading-font-size: 2rem;
  /* 标题比例 */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SourceHanSansCN-Normal';
}
::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}
::-webkit-scrollbar-thumb {
  background-color: var(--on-color);
  background-clip: padding-box;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
  background-color: #bbb;
}
body {
  color: #333;
  background-color: #fff;
}
/* 容器样式 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1536px) {
    .container {
        max-width: 1280px!important;
    }
}
/* 标题样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.75em;
}
h4 {
  font-size: 1.5em;
}
h5 {
  font-size: 1.25em;
}
h6 {
  font-size: 1em;
}
/* 链接样式 */
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--on-color);
}
/* 列表样式 */
ul,
ol {
  list-style: none;
}
li {
  margin-bottom: 5px;
}
/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: var(--on-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: var(--on-color);
}
/* 图片样式 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 表格样式 */
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: #f4f4f4;
}
/* 表单样式 */
input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
input[type="submit"] {
  background-color: var(--on-color);
  color: #fff;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: var(--on-color);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: none;
}
header {
  background: #fff;
  width: 100%;
}
header .container .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}
header .container .bottom .header_logo img {
  height: 70px;
  width: auto;
}
header .container .bottom .header_menu {
  display: flex;
  align-items: center;
}
header .container .bottom .header_menu li {
  margin-bottom: 0;
}
header .container .bottom .header_menu li a {
  display: block;
  margin-right: 26px;
  font-size: 16px;
  text-align: center;
  line-height: 84px;
  transition: all 0.5s;
}
header .container .bottom .header_menu li.active a,
header .container .bottom .header_menu li:hover a {
  color: var(--on-color);
}
header .container .bottom form {
  width: 28%;
}
header .container .bottom form .input {
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 4px;
  position: relative;
}
header .container .bottom form .input input {
  width: 90%;
  padding: 10px;
  margin-bottom: 0;
  background: transparent;
  border: none;
}
header .container .bottom form .input button {
  border: none;
}
header .container .bottom .language {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  padding: 0 20px;
  z-index: 9;
}
header .container .bottom .language img {
  width: 50px;
}
header .container .bottom .language p {
  margin-left: 10px;
  padding: 10px 0 ;
}
header .container .bottom .language div {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
}
header .container .bottom .language div a {
  display: block;
  background: #333333;
  width: 100%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-weight: normal;
}
header .container .bottom .language div a:not(:first-child) {
  border-top: 1px solid #555;
}
header .container .bottom .language div a:hover {
  background: #4b4b4b;
}
header .container .login {
  padding: 10px;
  display: flex;
  justify-content: right;
  color: #9a9a9a;
  font-size: 14px;
}
header .container .login a {
  color: #9a9a9a;
}
.m-header {
  background: #fff;
  display: none;
  justify-content: space-between;
  height: 50px;
  padding: 0 15px;
  align-items: center;
  position: relative;
  z-index: 999;
}
.m-header .img {
  height: 100%;
}
.m-header .img img {
  height: 100%;
  width: auto;
}
.m-header .btns {
  display: flex;
  flex-direction: column;
}
.m-header .btns span {
  display: block;
  width: 30px;
  background: var(--on-color);
  height: 2px;
  margin: 5px 0;
  transition: all 0.5s;
}
.m-header .btns span.on span:nth-child(1) {
  transform: rotate(45deg) translateX(27%);
}
.m-header .btns span.on span:nth-child(1) {
  display: none;
}
.m-header .btns span.on span:nth-child(1) {
  transform: rotate(-45deg) translateX(27%);
}
.m-header .menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
}
.m-header .menu a {
  display: block;
  padding: 10px;
  background: #fff;
}
footer {
  background: #e7e7e7;
  padding: 80px 0px 0px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
}
footer .container .left img {
  height: 80px;
  width: auto;
  margin: 0;
}
footer .container .center a {
  padding: 10px ;
  display: inline-block;
}
footer .bottom {
  color: #9a9a9a;
  opacity: 0.7;
  padding: 10px 0px;
  border-top: 1px solid rgba(144, 144, 144, 0.2);
  text-align: center;
  font-size: 12px;
}
footer .footer_swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}
/* index */
.map_title{
    text-align: center;
    padding: 30px;
    
  }
 .map_title h3{
      font-size: 38px;
    }
  #map{
    width: 100vw;
    height: 120vh;
    max-height: 800px;
  }
  .index_about{
    background: url(../images/图片1.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
}
.index_about::before{
    content:"";
    width: 100%;
    height: 100%;
    background: url(../images/images2.png) no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.index_about .container{
    padding: 150px 0;
    z-index: 2;
    position: relative;
}
.index_about .container h3{
    font-size: 38px;
}
.index_about .container div{
    width: 85%;
    font-size: 24px;
    margin-top: 40px;
    line-height: 1.8;
}
.index_about .container p{
    font-size: 24px;
    margin-top: 60px;
    color: var(--on-color);
    font-weight: bold;
}
.index_contact {
    padding: 100px 0;
}
.index_contact .container{
    display: flex;
    justify-content: space-between;
}
.index_contact .container .left h4{
    position: relative;
    font-size: 26px;
    padding-top: 20px;
    margin-bottom: 50px;
}
.index_contact .container .left h4::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background: #000;
}
.index_contact .container .left p{
    margin-bottom: 5px;
    line-height: 1.7;
}
.index_contact .container .left ul{
    margin-top: 100px;
    display: flex;
}
.index_contact .container .left ul li a{
    display: block;
    padding: 0 5px;
}co
.contact_form{
    width: 100%;
    padding-bottom: 5rem;
}
.contact_form .container form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact_form .container input{
    width: 49%;
}
.contact_form .container input,.contact_form .container textarea{
    border: none;
    border-bottom: 1px solid #919191;
    border-radius: 0;
    padding: 10px!important;
    margin-bottom: 10px!important;
}
.contact_form .container input:focus,.contact_form .container textarea:focus{
    border-color: #000;
    border-width: 2px;
    background: #f3faf9;
}
.contact_form .container div{
    display: flex;
    margin-top: 20px;
    width: 100%;
}
.contact_form .container p{
    width: 100%;
}
.contact_form .container p input{
    width: auto;
}
.contact_form .container .btn{
    background: #000;
    color: #fff;
    border-radius: 0;
    padding: 5px 50px;
}
#alert{
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    position: fixed;
    top: 0px;
    left: 0px;
}
#alert>div{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    max-width: 450px;
    width: 80%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 99999;
}
#alert>div div{
    display: flex;
    justify-content: end;
}
#alert>div div p,#alert>div div a{
    border-radius: 25px;
    padding: 10px 20px;
    background: var(--on-color);
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  color: var(--on-color);
}
.banner .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.banner .swiper-pagination-bullet-active {
  background: var(--on-color);
}
.show_banner {
  padding: 60px 0;
  position: relative;
  background-size: cover;
}
.show_banner .mobile {
  display: none;
}
.show_banner .breadcrumbs {
  position: relative;
  top: -25px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  display: block !important;
  font-size: 14px;
}
.show_banner .breadcrumbs a {
  color: #fff;
}
.show_banner .content .container {
  position: relative;
  z-index: 5;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}
.show_banner .content .left {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background-color: #fff;
}
.show_banner .content .left img {
  width: 100%;
}
.show_banner .content .center {
  color: #fff;
  width: 700px;
  line-height: 1.2;
}
.show_banner .content .center h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
  display: inline;
  font-weight: bold;
}
.show_banner .content .center ul li {
  margin-top: 10px;
  font-size: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show_banner .content .center ul li span {
  color: var(--on-color);
  font-weight: bold;
}
.show_banner .content .right {
  color: white;
  width: 215px;
  display: flex;
  align-items: center;
}
.show_banner .content .right ul {
  width: 100%;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}
.show_banner .content .right ul li {
  height: 20px;
  line-height: 20px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.show_banner .content .right ul li div {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 14px;
}
.show_banner .content .right ul li p {
  flex: 1;
  height: 7px;
  background-color: #eee8dd;
  border-radius: 2em;
}
.show_banner .content .right ul li p i {
  display: block;
  height: 7px;
  border-radius: 2em;
  background-color: var(--on-color);
}
.show_con .container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.show_con .container .left {
  width: 840px;
  margin-top: 10px;
}
.show_con .container .left .left_con {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-bottom: 10px;
  border-radius: 2px;
  color: #666;
  padding: 15px;
  font-size: 14px;
  line-height: 32px;
  text-align: justify;
}
.show_con .container .left .left_con > h2 {
  font-size: 16px;
  font-weight: bold;
  padding: 16px;
  background: #f9f9f9;
  margin-bottom: 10px;
  color: #333;
}
.show_con .container .left .left_con .plan {
  padding: 0 20px;
}
.show_con .container .left .left_con .plan .plan_item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  min-height: 100px;
  border-top: 1px solid #e9e9e9;
}
.show_con .container .left .left_con .plan .plan_item .plan_img {
  overflow: hidden;
  margin-right: 20px;
}
.show_con .container .left .left_con .plan .plan_item .plan_img img {
  width: 140px;
  height: 100px;
}
.show_con .container .left .left_con .plan .plan_item .plan_info {
  flex: 1;
}
.show_con .container .left .left_con .plan .plan_item .plan_info h4 {
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 16px;
}
.show_con .container .left .left_con .plan .plan_item .plan_info ul {
  display: flex;
  flex-wrap: wrap;
}
.show_con .container .left .left_con .plan .plan_item .plan_info ul li {
  width: 30%;
  float: left;
  color: #666;
  line-height: 24px;
  position: relative;
  list-style: disc;
  margin-left: 3%;
}
.show_con .container .left .left_con .plan .plan_item .plan_info ul li::marker {
  color: var(--on-color);
}
.show_con .container .left .left_con .plan .plan_item .plan_info p {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}
.show_con .container .left .left_con .plan .plan_item:first-child {
  border-top: none;
}
.show_con .container .right {
  width: 350px;
  cursor: pointer;
  position: sticky;
  top: 00px;
  align-self: flex-start;
}
.show_con .container .right .apply {
  padding: 5px;
  background-color: #fff;
  margin: 10px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
}
.show_con .container .right .apply a {
  font-size: 16px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin: 5px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: var(--on-color);
  width: 100%;
  text-align: center;
}
.show_con .container .right .other {
  margin: 10px 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.show_con .container .right .other h4 {
  background: #f9f9f9;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 16px;
}
.show_con .container .right .other ul {
  padding: 16px;
}
.show_con .container .right .other ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.show_con .container .right .other ul li a {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
  padding: 10px 10px 0 10px;
  display: block;
}
.show_con .show_con_bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}
.show_con .show_con_bottom h4 {
  font-size: 20px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
}
.show_con .show_con_bottom h4::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/right-icon.png") no-repeat;
  background-size: cover;
}
.show_con .show_con_bottom ul {
  margin-top: 20px;
  background: #fff;
  padding-bottom: 20px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
.show_con .show_con_bottom ul li {
  background: #fff;
  width: 19%;
  margin-bottom: 1%;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.show_con .show_con_bottom ul li a h2 {
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 2;
}
.show_con .show_con_bottom ul li a p {
  margin: 10px 0;
  font-size: 14px;
  color: #9a9a9a;
  font-weight: bold;
}
.show_con .show_con_bottom ul li div {
  font-size: 12px;
  color: #9a9a9a;
  line-height: 25px;
  display: flex;
  justify-content: space-between;
}
.show_con .show_con_bottom ul li div span em {
  color: #333;
  font-style: normal;
  padding-right: 3px;
}
.show_con .show_con_bottom ul li div .form {
  height: 25px;
  line-height: 25px;
  border: none;
  background-color: var(--on-color);
  border-radius: 3px;
  padding: 0 5px;
  min-width: 64px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}
.show_con .show_con_bottom ul li:hover h2 {
  color: var(--on-color);
}
.list_menu{
    margin-top: 20px;
}
.list_menu .container{
    border-radius: 5px;
    background-color: #f7f5f5;
    margin-bottom: 56px;
    box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 14px;
}
.list_menu .list_menu_item{
    border-bottom: 1px solid #e6e6e6;
    display: flex;
}
.list_menu .list_menu_item h5{
    width: 100px;
    font-size: 16px;
    color: #666;
    padding-left: 20px;
    top: 16px;
    color: #a08c82;
    font-weight: 400;
    padding-top: 10px;
}
.list_menu .list_menu_item ul{
    background: #fff;
    padding: 10px 0 10px 10px;
    font-size: 14px;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.list_menu .list_menu_item ul li{
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    margin-bottom: 2px;
    position: relative;
}
.list_menu .list_menu_item ul li>a{
    color: #666;
    display: inline-block;
    border-radius: 3px;
    height: 30px;
    line-height: 30px;
    padding: 0 7px;
    margin-right: 5px;
    cursor: pointer;
}
.list_menu .list_menu_item ul li>div{
    position: absolute;
    display: none;
    width: 418px;
    left: 0;
    top: 100%;
    padding-top: 11px;
    z-index: 50;
}
.list_menu .list_menu_item ul li>div .con{
    padding: 12px 7px 12px 12px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.list_menu .list_menu_item ul li>div .con::before{
    content:"";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-bottom: 8px solid #cccccc;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
.list_menu .list_menu_item ul li>div .con a{
    color: #9a9a9a;
    display: block;
    height: 25px;
    line-height: 23px;
    border: 1px solid transparent;
    margin: 0 5px 5px 0;
    padding: 0 5px;
    border-radius: 2px;
    
}
.list_menu .list_menu_item ul li>div .con a:hover{
    color: var(--on-color);
}
.list_menu .list_menu_item ul li.active>a,.list_menu .list_menu_item ul li:hover>a{
    background: var(--on-color);
    color: #fff;
}
.list_menu .list_menu_item ul li:hover>div{
    display: block;
}
.list_menu .list_menu_item .address{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.list_menu .list_menu_item .list_menu_item_address{
    background: #fff;
    flex: 1;
    display: flex;
}
.list_menu .list_menu_item .list_menu_item_address h6{
    line-height: 54px;
    padding: 0 10px;
    font-weight: bold;
    font-size: 14px;
}
.list_product{
    margin-bottom: 50px;
}
.list_product ul{
    display: flex;
    flex-wrap: wrap;
}
.list_product ul li{
    background: #fff;
    width: 19%;
    margin: 1% 1% 0 0;
    padding: 10px;
}
.list_product ul li>a{}
.list_product ul li>a img{}
.list_product ul li>a h2{
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
}
.list_product ul li>a p{
    margin: 10px 0;
    font-size: 14px;
    color: #9a9a9a;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list_product ul li>a p span{
    /*float: right;*/
}
.list_product ul li>a p .data2{
    color: var(--on-color);
}
.list_product ul li>a p .data3{
    color: #008000;
}
.list_product ul li div{
    font-size: 12px;
    color: #9a9a9a;
    line-height: 25px;
    display: flex;
    justify-content: space-between;
}
.list_product ul li>a div span{}
.list_product ul li>a div span em{
    color: #333;
    font-style: normal;
    padding-right:3px;
}
.list_product ul li div .form{
    height: 25px;
    line-height: 25px;
    border: none;
    background-color: var(--on-color);
    border-radius: 3px;
    padding: 0 5px;
    min-width: 64px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}
.list_product ul li:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.list_product ul li:hover h2{
    color: var(--on-color);
}
@media screen and (max-width: 1200px) {
  header {
    display: none;
  }
  .m-header {
    display: flex;
  }
  footer .container {
    flex-direction: column;
    padding: 0 15px;
  }
  
  .map_title{
  background: #fff;
  padding: 20px;
}
.map_title h3{
    font-size: 24px;
}
#map{
  max-height: 300px;
}
.index_about .container{
    padding: 50px 0 50px 20px;
}
.index_about .container h3{
    font-size: 24px;
}
.index_about .container div{
    margin-top:10px;
    padding-right: 20px;
    width: 100%;
    font-size: 16px;
}
.index_about .container p{
    font-size: 16px;
}
.index_contact .container{
    flex-direction: column;
}
.index_contact .container .left{
    padding: 20px;
}
.index_contact .container .left h4{
    margin-bottom: 15px;
    font-size: 24px;
}
.index_contact .container .left ul{
    margin-top: 20px;
}
.contact_form .container{
    padding: 0 20px;
    width: 100%;
}
.contact_form .container div{
    justify-content: center;
}
/*.contact_form .container .btn{*/
/*    width: 100%;*/
/*}*/
  .show_banner {
    background-image: none!important;
    padding: 0;
  }
  .show_banner .mobile {
    display: block;
  }
  .show_banner .pc {
    display: none;
  }
  .show_banner .breadcrumbs {
    top: 0;
    padding: 5px;
    background: transparent;
    color: #333;
  }
  .show_banner .breadcrumbs div {
    background: #fff;
    padding: 10px;
  }
  .show_banner .breadcrumbs a {
    color: #333;
  }
  .show_banner .content {
    padding: 5px;
  }
  .show_banner .content .container {
    flex-wrap: wrap;
    background: #fff;
  }
  .show_banner .content .container .left {
    display: none;
  }
  .show_banner .content .container .center {
    width: 100%;
    color: #444;
  }
  .show_banner .content .container .center h4 {
    color: #444;
  }
  .show_banner .content .container .right {
    color: #333;
  }
  .show_con .container {
    flex-direction: column;
  }
  .show_con .container .left {
    width: 100%;
  }
  .show_con .container .left .left_con .plan .plan_item {
    width: 100%!important;
    flex-direction: column;
  }
  .show_con .container .left .left_con .plan .plan_item .plan_img {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .show_con .container .left .left_con .plan .plan_item .plan_img img {
    width: 100%;
    height: auto;
  }
  .show_con .container .left .left_con .plan .plan_item .plan_info ul li {
    width: 45%;
  }
  .show_con .container .right {
    width: 100%;
  }
  .show_con .container .right .other {
    display: none;
  }
  .show_con .show_con_bottom ul {
    justify-content: space-between;
    padding: 5px;
  }
  .show_con .show_con_bottom ul li {
    width: 49%;
    margin-bottom: 2%;
  }
  .list_menu .list_menu_item{
    flex-direction: column;
}
.list_menu .list_menu_item h5{
    padding-left: 0;
    padding-bottom: 10px;
}
.list_product ul{
    padding: 10px;
    gap: 2%;
}
.list_product ul li{
    width: 49%;
    margin: 0 0 2% 0;
}
.list_product ul li a p{
    display: flex;
    flex-direction: column;
}
.index_contact{
    padding: 0;
}
.contact_form .container input, .contact_form .container textarea{
    width: 100%;
}
}
@media screen and (max-width: 762px) {
  body {
    background: #f8f8f8;
  }
}
