@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: 'Verdana', 'Arial ', 'sans-serif';
  background: #fff;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

:root {
  --theme-color: #c81976;
  --theme-bg-color: rgba(200, 25, 118, 0.85);
  --theme-op-color: rgba(200, 25, 118, 0.5);
}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: 'iconfont';
  /* Project id 4675357 */
  src: url("//at.alicdn.com/t/c/font_4675357_enqmerbl3zj.woff2?t=1725868556908") format("woff2"), url("//at.alicdn.com/t/c/font_4675357_enqmerbl3zj.woff?t=1725868556908") format("woff"), url("//at.alicdn.com/t/c/font_4675357_enqmerbl3zj.ttf?t=1725868556908") format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 1rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  color: var(--theme-color);
  text-decoration: underline;
}

a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

em,
i {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  word-wrap: break-word;
}

.cl:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cl {
  zoom: 1;
}

button,
input,
textarea {
  outline: none;
}

.flex {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
}

.wrap {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}

.disnone {
  display: none;
}

.about-title {
  width: 100%;
  text-align: center;
  font-size: 34px;
  color: #000;
  margin: 50px 0;
}

.about-title span {
  position: relative;
  width: 300px;
  display: inline-block;
}

/*.about-title span::before {*/
/*  content: 'ABOUT US';*/
/*  position: absolute;*/
/*  left: 1px;*/
/*  top: -9px;*/
/*  opacity: 0.45;*/
  /* display: inline-block; */
/*  font-weight: bold;*/
/*  color: #c5c5c5;*/
/*  font-size: 29px;*/
/*  letter-spacing: 2px;*/
/*  width: 100%;*/
/*  z-index: -1;*/
/*}*/

.banner {
  height: auto;
  width: 100%;
}

.mtb-30 {
  margin: 0 0 20px 0;
}
.newsindex .title{
    justify-content: flex-start
}
.newsindex .content .box img {
    margin-bottom: 10px;
}
.title {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.title h2 {
  font-size: 32px;
  color: #000;
}

.title span {
  font-size: 14px;
  color: #8d9ab2;
}

.title h3 {
  font-size: 22px;
  text-align: left;
  width: 100%;
  display: block;
}

.title p {
  font-size: 16px;
  color: #939597;
}

.aside-title h3 {
  font-size: 22px;
  color: #000;
  font-weight: 400;
  position: relative;
  padding-left: 5px;
  height: 37px;
  line-height: 37px;
}
#checkcode{
    width: 60% !important;
}
.aside-title h3:before {
  content: "";
  position: absolute;
  left: -9px;
  width: 4px;
  height: 63%;
  background-color: var(--theme-color);
  top: 21%;
  border-radius: 0px;
}

h3.t-right {
  width: 100%;
  text-align: right;
  height: 54px;
  line-height: 54px;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  padding: 0 30px;
}

.btn {
  font-family: 'Microsoft YaHei';
  text-decoration: none;
  font-style: normal;
  vertical-align: top;
  width: 100%;
  margin: 0 auto;
  border: none;
  text-align: center;
  position: relative;
}

.btn .btn01 {
  background-color: var(--theme-color);
  font-size: 14px;
  color: #FFF;
  border-radius: 50px;
  line-height: 38px;
  cursor: pointer;
  padding: 0 30px;
  height: 38px;
  display: inline-block;
  font-weight: 400;
  box-shadow: 0px 2px 10px var(--theme-op-color);
  transition: all 0.2s ease;
}

.btn .btn01:hover {
  background-color: var(--theme-bg-color);
}

.btn .btn01:active {
  background-color: var(--theme-bg-color);
  transform: translateY(-5px);
}

.btn .btn02 {
  background-color: #eee;
  font-size: 14px;
  color: #666;
  border-radius: 3px;
  line-height: 32px;
  cursor: pointer;
  padding: 0 30px;
  height: 32px;
  display: inline-block;
  font-weight: 400;
  box-shadow: 0px 2px 10px rgba(170, 170, 170, 0.5);
  transition: all 0.2s ease;
}

.btn .btn02:hover {
  background-color: rgba(238, 238, 238, 0.8);
}

.btn .btn02:active {
  background-color: rgba(238, 238, 238, 0.8);
  transform: translateY(-5px);
}

header {
  width: 100%;
}

header .header {
  background-color: #373938;
  height: 75px;
  line-height: 75px;
}

header .header .head-contnet {
  display: flex;
}

header .header .head-contnet .logo {
  flex: 0 0 20%;
  margin-right: 20px;
}

header .header .head-contnet .logo a img {
  width: 204px;
  height: auto;
}

header .header .head-contnet nav {
  flex: 1;
}

header .header .head-contnet nav .nav {
  display: flex;
}

header .header .head-contnet nav .nav li {
  width: calc(100% / 9);
  text-align: center;
}

header .header .head-contnet nav .nav li a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.15s;
}

header .header .head-contnet nav .nav li a:hover {
  color: var(--theme-color);
}

header .header .head-contnet nav .nav li a.active {
  color: var(--theme-color);
}

.w100 {
  width: 100%;
  background-color: #F0F2F5;
  padding-bottom: 200px;
}

.card {
  width: 100%;
  background-color: white;
  border-radius: 3px;
}

.box {
  position: relative;
}

.box a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.hidden {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hidden_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hidden_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content {
  width: 100%;
  justify-content: space-between;
}

.content .box {
  position: relative;
  width: 20%;
  justify-content: center;
  border-right: 1px solid #eee;
  padding: 30px;
  margin: 20px 0;
  position: relative;
}
.newcontent .box {
    position: relative;
    width: 16%;
    justify-content: center;
    border-right: 1px solid #eee;
    padding: 15px;
    margin: 20px 0;
    position: relative;
}
.content .box:last-child {
  border: none;
}

.content .box:hover img {
  transform: translateY(-5px);
}

.content .box .title {
  margin: 0;
}

.content .box .title h3 {
  text-align: center;
}

.content .box img {
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
  transition: all 0.15s;
}

.box1 {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box1 .title {
  align-items: flex-start;
}

.box1 img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.contnet .box1 {
  margin: 20px 0;
  padding: 0 5px;
}

.contnet .box1:last-child {
  border-left: 1px solid #eee;
  flex: 1;
  justify-content: flex-start;
  padding-left: 30px;
  position: relative;
}

.btnnew {
  border: 1px solid #fff !important;
  margin-top: 15px; 
  background-color: rgb(185 ,137 ,65) !important;
  box-shadow: 0px 2px 10px  rgba(185 ,137 ,65,0.15) !important;
}

.wauto .title {
  width: 100%;
}

.wauto .title p {
  font-size: 15px;
}

.card-box {
  height: 580px;
  display: flex;
}

.card-box .left {
  width: 60%;
  background: url(/static/images/home-bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 30px;
}

.card-box .left .title h3 {
  color: white;
}

.card-box .left .title p {
  color: white;
  margin-top: 15px;
  text-align: left;
}

.card-box .right {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}

.card-box .right .title {
  align-items: flex-start;
  border-bottom: 1px solid #eee;
}

.card-box .right .list {
  flex: 1;
}

.card-box .right .list .item {
  width: 50%;
  align-items: center;
  justify-content: flex-start;
  padding-right: 80px;
  flex-wrap: nowrap;
  margin: 15px 0;
}

.card-box .right .list .item img {
  transition: all 0.2s;
}

.card-box .right .list .item:hover img {
  transform: translateY(-5px);
}

.card-box .right .list .item .title {
  border: none;
}

.card-box .right .list .item .title h3 {
  font-weight: 400;
}

.card-box .right .list .item .title p {
  text-align: left;
}

.card-box .right .list .item img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.bg1 {
  background: url(/static/images/beijing.png) no-repeat 100%;
  background-position: top;
}

.bg1 .card {
  padding: 30px;
}

.bg1 .card .top {
  width: 100%;
  background-color: var(--theme-color);
  padding: 30px;
}

.bg1 .card .top .left {
  width: 370px;
}

.bg1 .card .top .right {
  width: 170px;
}

.bg1 .card .top .center {
  flex: 1;
  margin: 0 40px;
  height: 100%;
  padding-top: 30px;
}

.bg1 .card .top .center .title {
  align-items: flex-start;
  line-height: 2.5;
}

.bg1 .card .top .center .title span {
  line-height: 1.5;
}

.bg1 .card .top .center .title h3,
.bg1 .card .top .center .title p {
  color: white;
  text-align: left;
}

.bg1 .card .title {
  align-items: flex-start;
  line-height: 2.5;
}

.bg1 .card .title span {
  line-height: 1.5;
}

.bg1 .card .title h3,
.bg1 .card .title p {
  color: white;
  text-align: left;
}

.bg1 .card .botton {
  width: 100%;
  background-color: #F0F2F5;
  padding: 30px;
  margin-top: 20px;
}

.bg1 .card .botton .box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bg1 .card .botton .box .center h3,
.bg1 .card .botton .box .center p {
  color: #000;
  text-align: left;
}

.bg1 .card .botton .box .img {
  margin-right: 15px;
}

.huoban {
  display: flex;
  padding: 20px;
  box-shadow: 0px 3px 4px 0 rgba(93, 123, 221, 0.2);
}

.huoban .img {
  width: calc(100% / 6);
  padding: 10px;
  height: 108px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  position: relative;
}

.huoban .img img {
  transition: all 0.15s ease;
}

.huoban .img:hover img {
  transform: translateY(-5px);
}

footer .footer .food-top .list .item {
  width: 25%;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 30px 20px 10px;
}

footer .footer .food-top .list .item .img {
  margin-right: 15px;
}

footer .footer .food-top .list .item .img img {
  width: 50px;
  height: 70px;
}

footer .footer .food-top .list .item .content {
  flex: 1;
}

footer .footer .food-top .list .item .content .title {
  align-items: flex-start;
}

footer .footer .food-top .list .item .content .title h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

footer .footer .food-top .list .item .content .title p {
  text-align: left;
}

footer .footer .food-bottom {
  background-color: #373938;
  border-top: 8px solid #B98941;
  padding: 60px 0 30px 0;
}

footer .footer .food-bottom .food-bottom-box .top {
  justify-content: space-between;
}

footer .footer .food-bottom .food-bottom-box .top .nav {
  width: 150px;
}

footer .footer .food-bottom .food-bottom-box .top .nav:nth-child(3) {
  width: 220px;
}

footer .footer .food-bottom .food-bottom-box .top .nav:nth-child(3) h3 {
  width: 113px;
}

footer .footer .food-bottom .food-bottom-box .top .nav:last-child {
  width: 580px;
}

footer .footer .food-bottom .food-bottom-box .top .nav:last-child h3 {
  width: 113px;
}

footer .footer .food-bottom .food-bottom-box .top .nav h3 {
  color: white;
  font-size: 16px;
  border-bottom: 1px solid #B98941;
  padding: 10px 0;
  margin-bottom: 10px;
  width: 100px;
  display: block;
}

footer .footer .food-bottom .food-bottom-box .top .nav li {
  line-height: 2;
}

footer .footer .food-bottom .food-bottom-box .top .nav li a {
  font-size: 14px;
  color: #b9b6b6;
  transition: all 0.2s;
}

footer .footer .food-bottom .food-bottom-box .top .nav li a:hover {
  color: white;
}

footer .footer .food-bottom .food-bottom-box .bottom {
  margin: 50px 0;
}

footer .footer .food-bottom .food-bottom-box .bottom .left h3 {
  color: white;
  font-size: 16px;
  border-bottom: 1px solid #B98941;
  padding: 10px 0;
  margin-bottom: 10px;
  width: 100px;
  display: block;
}

footer .footer .food-bottom .food-bottom-box .bottom .left .nav li {
  width: 33.33%;
  text-align: left;
}

footer .footer .food-bottom .food-bottom-box .bottom .right .p {
  width: 128px;
  margin-left: 30px;
}

footer .footer .food-bottom .food-bottom-box .bottom .right .p img {
  width: 128px;
  height: 128px;
  margin-bottom: 8px;
}

footer .footer .food-bottom .food-bottom-box .bottom .right .p p {
  text-align: center;
  font-size: 14px;
  color: #b9b6b6;
}

.pt-50 {
  padding-top: 50px;
}

address p {
  margin-top: 30px;
  font-size: 12px;
  text-align: center;
  color: #b9b6b6;
}

hr {
  width: 90%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #b9b6b6;
}

.main {
  background-color: #F0F2F5;
  position: relative;
}

.main .lists {
  justify-content: space-between;
}

.main .lists .item {
  width: 19%;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  background-color: white;
  transition: all 0.2s;
}

.main .lists .item:hover {
  transform: translateY(-5px);
}

.main .lists .item .img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.main .lists .item .content .title {
  height: auto;
  margin: 8px 0;
}

.main .lists .item .content .title h3 {
  text-align: center;
}

.main .lists .item .content .btn {
  margin-top: 10px;
}

.main .list {
  justify-content: space-between;
}

.main .card-box {
  height: auto;
}

.main .card-box .right {
  padding-right: 0;
}

.main .card-box .right .list .item {
  width: 32%;
  height: 165px;
  background: #fff;
  padding-right: 0;
  margin: 10px 0;
  padding: 15px;
}

.main .card-box .right .list .item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.main .liucheng .lists .item {
  padding: 50px 30px;
}

.main .liucheng .lists .item .img {
  width: 74px;
  height: 74px;
}

.main .liucheng .lists .item .img img {
  width: 74px;
  height: 74px;
}

.main .wenti {
  background: url(/static/images/wentibeijing.png) no-repeat ;
  background-size: cover;
  padding: 40px 0;
  margin-top: 50px;
  background-position: bottom;
}

.main .wenti .content .title {
  margin-bottom: 40px;
}

.main .wenti .content ul {
  margin-bottom: 35px;
}

.main .wenti .content ul li {
  position: relative;
  height: 36px;
  line-height: 36px;
  justify-content: space-between;
  border-bottom: 1px dashed #afafaf;
  width: 100%;
}

.main .wenti .content ul li a {
  font-size: 14px;
  color: #666;
}

.main .wenti .content ul li span {
  margin-left: auto;
  color: #bbb;
}

.main .wenti .content .page {
  width: 100%;
  margin: 15px 0;
}

.zhuanli {
  position: absolute;
  width: 100%;
  top: -8%;
}

.zhuanli .card {
  padding: 40px 80px;
  justify-content: space-between;
}

.zhuanli .card .box {
  width: 23%;
  background-color: #F7F8FC;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zhuanli .card .box:last-child {
  /*background: url(/static/images/zhuanliimage.png) no-repeat 100%;*/
  background-color: var(--theme-op-color);
}

.zhuanli .card .box:last-child .title {
  line-height: 2.5;
  align-items: flex-start;
}

.zhuanli .card .box:last-child .title h4,
.zhuanli .card .box:last-child .title p {
  color: white;
}

.zhuanli .card .box .title {
  height: auto;
}

.zhuanli .card .box .img {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  border-radius: 50%;
}

section {
  margin-bottom: 40px !important;
}

.main.banquan .lists.banquan03 {
  justify-content: space-between;
}

.main.banquan .lists.banquan03 .item {
  width: 24.4%;
  margin-bottom: 10px;
  padding: 15px 30px;
}

.main.banquan .lists.banquan03 .item:last-child {
  /*background: url(/static/images/zhuanliimage.png) no-repeat 100%;*/
  background-color: var(--theme-op-color);
}

.main.banquan .lists.banquan03 .item:last-child .title h4 {
  color: #fff;
}

.main.banquan .lists.banquan03 .item:last-child .title p {
  color: #fff;
}

.main.banquan .lists.banquan03 .item .img {
  width: 100%;
  display: flex;
  border-radius: 0;
}

.main.banquan .lists.banquan03 .item .img img {
  width: 64px;
  height: 64px;
  margin-left: auto;
}

.main.banquan .lists.banquan03 .item .title {
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  margin-bottom: 20px;
}

.main.banquan .lists.banquan03 .item .title h4 {
  line-height: 2.5;
}

.main.banquan .lists.banquan03 .item .title p {
  text-align: left;
}

.main.banquan .lists.banquan03 .item .btn {
  line-height: 64px;
  height: 64px;
  text-align: left;
}

.main.banquan .banquan01 {
  background: url(/static/images/banquanimage.png) no-repeat;
  background-size: cover;
  padding: 30px 0 60px 0;
}

.main.banquan .banquan02 {
  background: url(/static/images/banquanimage01.png) no-repeat;
  background-size: cover;
  padding: 30px 0 60px 0;
}

.main.banquan .lists .item {
  padding: 32px 25px;
}

.main.banquan .lists .item .img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.title h4 {
  font-size: 22px;
  font-weight: 400;
}

.pt-30 {
  padding-top: 30px;
}

.shenbao {
  background: url(/static/images/shenbaoimage.png) no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}

.shenbao .title h2 {
  color: white;
}

.shenbao .title p {
  color: white;
}

.shenbao .card-box .item {
  height: auto;
  flex-direction: row-reverse;
}

.shenbao .card-box .item img {
  margin-right: 0 !important;
  margin-left: 10px;
}

.shenbao .card-box .title p {
  color: #000;
}

.gongsi.main .gongsi01 .lists .item {
  justify-content: flex-start;
  padding: 0 0 15px 0;
}

.gongsi.main .gongsi01 .lists .item .img {
  width: 100%;
  height: 164px;
  border-radius: 0;
  text-align: center;
  margin-bottom: 0;
}
.gongsi.main .gongsi01 .lists .item .img img{
width: auto;
height: auto;
}
/*.gongsi.main .gongsi01 .lists .item .img {*/
/*    width: 130px;*/
/*    height: 130px;*/
/*    border-radius: 0;*/
/*}*/

.gongsi.main .gongsi02 {
  background: url(/static/images/banquanimage.png) no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}

.gongsi.main .gongsi02 .card-box .right .list .item {
  flex-direction: row-reverse;
  padding: 30px;
}

.gongsi.main .gongsi02 .card-box .right .list .item img {
  margin-right: 0;
  margin-left: 10px;
}

.anjian {
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 100px;
}

.anjian .left {
  flex: 1;
  margin-right: 40px;
}

.anjian .left .title a {
  color: var(--theme-color);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.anjian .left .title a:hover {
  color: var(--theme-bg-color);
}

.anjian .left .table {
  width: 100%;
}

.anjian .left .table table {
  width: 100%;
}

.anjian .left .table table th,
.anjian .left .table table td {
  text-align: center;
  padding: 2px;
}

.anjian .right {
  width: 300px;
  padding-top: 55px;
}

.anjian .right .aside-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.anjian .right .contnet ul li {
  height: 40px;
  line-height: 40px;
  position: relative;
  border-bottom: 1px dashed #eee;
}

.anjian .right .contnet ul li a {
  width: 68%;
}

.anjian .right .contnet ul li span {
  margin-left: auto;
}

.zixun.anjian {
  padding-bottom: 100px;
}

.zixun.anjian .left {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #eee;
}

.zixun.anjian .left .aside-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.zixun.anjian .left .page {
  margin: 30px 0;
  justify-content: center;
}

.zixun.anjian .left .list .item {
  width: 100%;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px dashed #eee;
}

.zixun.anjian .left .list .item:hover .content .tit {
  color: var(--theme-color);
}

.zixun.anjian .left .list .item .img {
  width: 116px;
  height: 116px;
  margin-right: 15px;
}

.zixun.anjian .left .list .item .content {
  flex: 1;
  padding-right: 30px;
  padding-top: 10px;
}

.zixun.anjian .left .list .item .content .kan {
  position: absolute;
  right: 5%;
  bottom: 20%;
  font-size: 12px;
  color: #999;
}

.zixun.anjian .left .list .item .content .tit {
  font-size: 16px;
  color: #404040;
  transition: all 0.15s;
}

.zixun.anjian .left .list .item .content .desc {
  font-size: 14px;
  color: #999;
  margin: 10px 0;
}

.zixun.anjian .left .list .item .content .time {
  font-size: 12px;
  color: #999;
}

.zixun.anjian .right {
  width: 300px;
  padding-top: 0;
}

.zixun.anjian .right .contnet {
  margin-bottom: 30px;
}

.zixun.anjian .right .contnet ul li:nth-child(1) a .sort,
.zixun.anjian .right .contnet ul li:nth-child(2) a .sort,
.zixun.anjian .right .contnet ul li:nth-child(3) a .sort {
  background-color: #666666;
}

.zixun.anjian .right .contnet .sort {
  display: inline-block;
  color: #fff;
  background-color: #DDDDDD;
  margin-right: 5px;
  width: 16px;
  text-align: center;
  line-height: 16px;
  height: 16px;
}

.zixun.anjian .right .contnet .btn {
  margin-top: 30px;
}

.zixun.anjian .right #myVideo {
  width: 100%;
}

.zixun.anjian .right .wxlook {
  flex-wrap: nowrap;
  align-items: center;
}

.zixun.anjian .right .wxlook img {
  width: 144px;
  height: 144px;
  margin-right: 10px;
}

.zixun.anjian .right .wxlook p {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.zixun.anjian .right .descs {
  line-height: 2.2;
}

.zixun.anjian .right .descs h4 {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.zixun.anjian .right .descs p {
  color: #222;
  font-size: 14px;
}

.about-content p {
  font-size: 16px;
  color: #666;
  line-height: 2;
  margin-bottom: 10px;
}

.about .box {
  justify-content: space-between;
}

.about .box .left {
  width: 49.3%;
  justify-content: space-between;
}

.about .box .left .img {
  margin-bottom: 10px;
  position: relative;
  height: 190px;
  width: 49%;
  background-color: #F1F2F6;
  padding: 20px;
  cursor: pointer;
  border: 3px solid rgba(0, 0, 0, 0.01);
  transition: all 0.2s ease;
}

.about .box .left .img:hover {
  border-color: var(--theme-bg-color);
}

.about .box .left .img p {
  position: absolute;
  width: 101%;
  bottom: 0;
  left: 0;
  height: 36px;
  z-index: 2;
  padding: 10px;
  color: #fff;
  background-color: #616162;
}

.about .box .right {
  width: 49.3%;
  justify-content: space-between;
}

.about .box .right .img {
  position: relative;
  width: 49%;
  background-color: #F1F2F6;
  padding: 20px;
  cursor: pointer;
  border: 3px solid rgba(0, 0, 0, 0.01);
  transition: all 0.2s ease;
  height: 100%;
}

.about .box .right .img:hover {
  border-color: var(--theme-bg-color);
}

.about .box .right .img p {
  position: absolute;
  width: 101%;
  bottom: 0;
  left: 0;
  height: 36px;
  z-index: 2;
  padding: 10px;
  color: #fff;
  background-color: #616162;
}

.about .about-content .lists {
  justify-content: space-between;
}

.about .about-content .lists .item {
  width: 19.3%;
  padding: 50px 30px;
  background-color: #F0F2F5;
  transition: all 0.2s ease;
}

.about .about-content .lists .item:hover {
  transform: translateY(-5px);
}

.about .about-content .lists .item h3 {
  font-size: 24px;
  color: #000;
  margin-bottom: 50px;
  font-weight: 500;
}

.about .about-content .lists .item p {
  font-size: 14px;
  color: #555;
}

.about .banner {
  margin: 30px 0;
}

.vat .left {
  margin-right: 0 !important;
  padding: 20px;
  border: 1px solid #eee;
}

.vat .right {
  padding-right: 20px;
}

.vat .right ul li {
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  background-color: white;
  margin-bottom: 5px;
}
.vat .right ul li a{
display: inline-block;
width: 100%;
height: 100%;
}
.vat .right ul li:hover a{
  background-color: var(--theme-color);
}

.vat .right ul li:hover a {
  color: white;
}

.vat .right ul li a.active {
  background-color: var(--theme-color);
}

.vat .right ul li a.active  {
  color: white;
}

.tag {
  margin: 20px auto;
}

.navpage {
  margin: 30px auto;
}

.navpage .prev,
.navpage .next {
  margin: 15px 0;
}

.navpage .prev a,
.navpage .next a {
  color: #999;
}

.news_detail {
  padding-bottom: 60px;
}

.news_detail .left h2.tit {
  font-size: 24px;
  font-weight: bold;
  color: #404040;
  margin: 20px 0;
}

.news_detail .left p {
  font-size: 14px;
  line-height: 30px;
}

.news_detail .left .new_desc {
  width: 100%;
  margin: 10px 0 20px 0;
  justify-content: space-between;
  color: #999;
  font-size: 14px;
  padding-right: 20px;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

/* 走马灯文字样式 */
.marquee-text {
  display: inline-block;
  /* 初始位置在容器外 */
  animation: marquee 8s linear infinite;
}
.marquee-text a{
    margin-left: 30px;
}
/* 动画定义 */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.model1 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 99;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s;
}

.model1 .box {
  background-color: #fff;
  padding: 30px 40px;
}

.model1 .close1 {
  cursor: pointer;
}

.model1.active {
  transform: scale(1);
}

.model1 .close1 {
  width: 100%;
  display: block;
  text-align: right;
  height: 40px;
}

.model1 .image {
  width: 200px;
  height: 200px;
}

.model {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 99;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s;
}

.model.active {
  transform: scale(1);
}

.model .box {
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.model .box .bottom {
  padding: 15px 20px 30px 20px;
  background-color: #fff;
}

.model .box .bottom p {
  font-size: 14px;
  color: #333;
  line-height: 30px;
}

.model .box .top {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  background-color: var(--theme-color);
  height: 160px;
  line-height: 160px;
  color: white;
  text-align: center;
}

.model .box .top .close {
  position: absolute;
  right: 2%;
  top: -5%;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.model .box .bottom .form-container {
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.model .box .bottom .form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.model .box .bottom .form-group {
  margin-bottom: 15px;
}

.model .box .bottom .form-group div {
  display: inline-block;
  width: 20%;
  margin-bottom: 10px;
}

.model .box .bottom .form-group label {
  display: inline-block;
  margin-bottom: 5px;
  color: #333;
}

.model .box .bottom .form-group input[type="text"],
.model .box .bottom .form-group input[type="tel"],
.model .box .bottom .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.model .box .bottom .form-group textarea {
  resize: vertical;
}

.model .box .bottom .form-buttons {
  text-align: center;
  margin-top: 20px;
}

.model .box .bottom .form-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
}

.model .box .bottom .form-buttons button[type="submit"] {
  background-color: #4CAF50;
  color: white;
}

.model .box .bottom .form-buttons button[type="reset"] {
  background-color: #f44336;
  color: white;
}

.banner {
  margin-bottom: 0 !important;
}

.footer-aside {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.footer-aside .box {
  position: relative;
  background-color: var(--theme-bg-color);
  color: white;
  width: 64px;
  cursor: pointer;
  border-bottom: 1px solid #fff;
}

.footer-aside .box:last-child {
  border-bottom: none;
}

.footer-aside .box:hover .rightBox {
  transform: translateX(-47px);
}

.footer-aside .box .rightBox {
  position: absolute;
  right: 17px;
  bottom: 0;
  transform: translateX(400px);
  background: var(--theme-color);
  padding: 10px;
  transition: all 0.3s;
  z-index: 0;
}

.footer-aside .box .rightBox img {
  width: 130px;
  height: 130px;
}

.footer-aside .box .img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.footer-aside .box .img img {
  width: 70%;
  height: 70%;
}

.openNav {
  display: none;
}

.openNav img {
  width: 40px;
  height: 40px;
}

.banquanHover .tab {
  width: 190px;
}

.banquanHover .content {
  flex: 1;
  background-color: #fff;
}

.about-b {
  background: url(/static/images/aboutimage.png) no-repeat 100%;
  padding: 100px 0;
}

.about-b .wrap {
  color: #fff;
  line-height: 26px;
}

.about-b .wrap .fen {
  display: block;
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-color: #ff9a2c;
  margin: 10px 0 15px 0;
}

.about-b .wrap .left {
  padding: 20px;
  height: 346px;
  width: 512px;
  background-color: var(--theme-color);
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.2s;
}

.about-b .wrap .left:hover {
  transform: translateY(-3px);
}

.about-b .wrap .left .btn {
  text-align: left;
  margin-top: 20px;
}

.about-b .wrap .left h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.about-b .wrap .right {
  flex: 1;
  justify-content: space-between;
}

.about-b .wrap .right .item {
    padding: 15px;
    width: 49.3%;
    margin-bottom: 10px;
    border: 1px solid #fff;
    background-color: rgba(252, 250, 250, 0.15);
    transition: all 0.2s;
    max-height: 172px;
}

.about-b .wrap .right .item:hover {
  transform: translateY(-3px);
}

.about-banner {
  background-size: 100%;
  background-repeat: no-repeat;
  height: 600px;
  max-height: 600px;
  color: white;
  background-size: cover;
}

.about-banner .wrap {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  line-height: 60px;
}

.about-banner .wrap h1 {
  font-size: 36px;
  font-weight: 500;
}

.about-banner .wrap p {
  font-size: 18px;
}

.about-banner .wrap .two {
  font-size: 30px;
  font-weight: 500;
}

.about-banner .wrap .btn {
  text-align: left;
  margin-top: 20px;
}

.zhuanlimian {
  padding-top: 180px;
}

.youshi01 .card-box .left {
  width: 100%;
  padding: 40px;
  background-size: cover;
  margin-right: 0;
}

.youshi01 .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.youshi01 .right {
  padding: 10px;
}

.youshi01 .card-box .left .title {
  align-items: flex-start;
}

.youshi01 .card-box .right .list .item {
  width: 33.33%;
}

.youshi01 .card-box .right .list .item img {
  margin-right: 0 !important;
}

.youshi01 .card-box .right .list .item .title p {
  width: 50%;
}

.youshi01 .card-box .left .btn {
  text-align: left;
}

.page .wrap {
  padding: 20px;
  justify-content: center;
}

.page .wrap a {
  width: auto;
  padding: 0 10px;
  margin: 3px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #666;
  background: #fff;
  border-color: #ddd;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

.page .wrap a.active {
  opacity: 0.5;
}

.zixun {
  margin-top: 30px;
}

.zixun-box .about-banner {
  height: 180px;
  background-size: cover;
}

.zixun-box .about-banner .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 60px;
  align-items: center;
}

.zixun-box .about-banner .wrap p {
  font-size: 16px;
}

.youshi01 .card-box .right .list .item {
  flex-direction: column;
  padding-right: 0;
}

.youshi01 .card-box .right .list .item .title {
  align-items: center;
}

.youshi01 .card-box .right .list .item .title h3 {
  text-align: center;
}

.youshi01 .card-box .right .list .item .title p {
  text-align: center;
}

.why {
  padding: 20px 0 10px 0;
}

.tro-from {
  padding: 30px;
}

.tro-from .tro-from1 {
  justify-content: space-between;
  width: 60%;
  margin: 0 auto;
}

.tro-from .tro-from1 .form-group {
  display: flex;
  width: 49%;
  flex-direction: column;
}

.tro-from .tro-from1 .form-group label {
  color: #999;
  margin-bottom: 5px;
  margin-top: 10px;
}

.tro-from .tro-from1 .form-group input {
  padding: 12px 10px;
  line-height: 10px;
  background-color: #FFF3F2;
  border: none;
  border-radius: 5px;
}

.tro-from .tro-from1 .form-group:nth-child(3) {
  margin: 10px auto;
}

.tro-from .tro-from1 .form-buttons {
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.tro-from .tro-from1 .form-buttons button {
  width: 400px;
  border: none;
  border-radius: 5px;
  background-color: var(--theme-bg-color);
  height: 50px;
  text-align: center;
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  cursor: pointer;
}

.liucheng.tro-liucheng .lists .item {
  width: 16%;
}

.tro-anjian .lists .item {
  width: 50%;
  margin: 0;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .card-box {
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .youshi01 .card-box .right .list .item {
    width: 44%;
    flex-direction: column;
    padding-right: 0;
  }
  .youshi01 .card-box .right .list .item .title p {
    width: 100%;
  }
  header .header .head-contnet {
    justify-content: space-between;
    padding: 0 15px;
  }
  .content .box:last-child {
    width: 100%;
  }
  .newcontent.content .box:last-child {
    width: 50%;
  } 
  .box1 img {
    margin-right: 10px;
  }
  .contnet .box1 {
    padding: 0 5px;
  }
  header .header .head-contnet .logo a img {
    width: 130px;
  }
  header .header {
    height: 60px;
    line-height: 60px;
  }
  .banner {
    height: auto;
    width: 100%;
  }
  .banner img {
    height: 145px;
  }
  header .header .head-contnet nav {
    position: absolute;
    /* opacity: 0; */
    width: 100%;
    z-index: 10;
    transform: translateY(-100%);
    transition: all 0.3s;
    box-sizing: content-box;
    left: 0;
    top: -17px;
  }
  header .header .head-contnet nav .nav {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    height: 100vh;
    padding: 20px 40px;
  }
  header .header .head-contnet nav .nav li {
    width: 100%;
    text-align: left;
    height: 50px;
    line-height: 50px;
  }
  header .header .head-contnet nav.active {
    transform: translateY(75px);
  }
  .banner {
    height: auto;
    width: 100%;
  }
  .content .box {
    position: relative;
    width: 50%;
    justify-content: center;
    border-right: 1px solid #eee;
    padding: 10px;
    margin: 5px 0;
    position: relative;
  }
  .box1 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contnet .box1 {
    margin: 10px 0;
  }
  .card-box .right .list .item {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-right: 0;
    flex-wrap: nowrap;
    margin: 10px;
  }
  .bg1 .card {
    padding: 10px;
  }
  .bg1 .card .top .center {
    flex: 1;
    margin: 10px;
    height: auto;
    padding-top: 20px;
  }
  .bg1 .card .top .right {
    display: none;
  }
  .bg1 .card .botton .box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .bg1 .card .botton .box .img {
    margin-right: 0;
  }
  .bg1 .card .botton {
    width: 100%;
    background-color: #F0F2F5;
    padding: 10px;
    margin-top: 20px;
  }
  .bg1 .card .title {
    align-items: flex-start;
    line-height: 1.5;
    height: auto;
    padding: 10px 0;
  }
  .huoban .img {
    width: calc(100% / 3);
    padding: 10px;
    height: 72px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
  }
  .w100 {
    width: 100%;
    background-color: #F0F2F5;
    padding-bottom: 50px;
  }
  footer .footer .food-top .list .item {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
  }
  footer .footer .food-top .list .item .content .title {
    align-items: flex-start;
    height: 60px;
  }
  footer .footer .food-bottom {
    background-color: #18284B;
    padding: 20px 10px;
  }
  footer .footer .food-bottom .food-bottom-box .top .nav {
    width: 50%;
    margin-bottom: 10px;
  }
  footer .footer .food-bottom .food-bottom-box .top .nav:nth-child(3) {
    width: 100%;
  }
  footer .footer .food-bottom .food-bottom-box .top .nav:last-child {
    width: 100%;
  }
  footer .footer .food-bottom .food-bottom-box .bottom .right .p {
    width: 128px;
    margin-left: 0;
    margin-right: 30px;
  }
  footer .footer .food-bottom .food-bottom-box .bottom .right .p img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
  }
  footer .footer .food-bottom .food-bottom-box .bottom .right .p {
    width: 80px;
    margin-left: 0;
    margin-right: 30px;
  }
  footer .footer .food-bottom .food-bottom-box .bottom .left .nav li {
    width: 33.33%;
    text-align: left;
    margin-right: 10px;
  }
  .title h2 {
    font-size: 22px;
    color: #000;
  }
  .title p {
    font-size: 13px;
    color: #939597;
  }
  .title {
    text-align: center;
    line-height: 1.5;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
  .w100 {
    padding: 5px;
  }
  .title h3 {
    font-size: 18px;
    text-align: left;
    width: 100%;
    display: block;
  }
  .btn .btn01 {
    background-color: var(--theme-color);
    font-size: 14px;
    color: #FFF;
    border-radius: 50px;
    line-height: 28px;
    cursor: pointer;
    padding: 0 14px;
    height: 28px;
    display: inline-block;
    font-weight: 400;
    box-shadow: 0px 2px 10px var(--theme-op-color);
    transition: all 0.2s ease;
  }
  .card-box .left {
    width: 100%;
    /*background: url(/static/images/5852671.png) no-repeat;*/
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 0;
    background-size: cover;
    height: 200px;
  }
  .mtb-30 {
    margin: 10px 0;
  }
  .pt-50 {
    padding-top: 10px;
  }
  .openNav {
    display: block;
  }
  .about-banner .wrap h1 {
    font-size: 18px;
  }
  .about-banner .wrap {
    line-height: 32px;
    padding: 10px;
  }
  .about-banner .wrap .two {
    font-size: 16px;
  }
  .about-banner .wrap p {
    font-size: 12px;
  }
  .about-banner .wrap .btn {
    margin-top: 5px;
  }
  .about-banner .btn .btn01 {
    font-size: 13px;
    line-height: 24px;
    padding: 0 8px;
    height: 24px;
  }
  .about-title {
    font-size: 24px;
    margin: 23px 0;
  }
  .about .about-content .lists .item {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .about .about-content .lists .item h3 {
    margin-bottom: 10px;
  }
  .about .box {
    flex-direction: column;
  }
  .about .box .left {
    width: 100%;
    justify-content: space-between;
  }
  .about-banner {
    height: 200px;
    width: 100%;
    background-size: cover;
  }
  .about .box .right {
    width: 100%;
    justify-content: space-between;
  }
  .about-b {
    padding: 40px 0;
    margin-bottom: 0 !important;
  }
  .about-box {
    padding: 0 10px;
  }
  .anjian .left {
    flex: 1;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .anjian .right {
    width: 100%;
    padding-top: 55px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .anjian {
    padding-bottom: 20px;
  }
  .main.banquan .lists .item .img {
    height: 40px;
  }
  .main.banquan .lists.banquan03 .item .img img {
    width: 32px;
    height: 32px;
    margin-left: auto;
  }
  .main.banquan .lists.banquan03 .item {
    width: 48%;
    margin-bottom: 10px;
    padding: 10px;
    margin: 3px auto;
  }
  .main .card-box .right .list .item {
    width: 48.5%;
    flex-direction: column;
    height: auto;
    align-items: center;
    background: #fff;
    padding-right: 0;
    margin: 5px 0;
    padding: 10px;
  }
  .main .card-box .right .list .item img {
    width: 64px;
    height: 64px;
  }
  .card-box .right .list .item .title h3 {
    text-align: center;
  }
  .main.banquan .banquan01 {
    padding: 20px 0 20px 0;
  }
  .main .lists .item {
    width: 48.5%;
    padding: 10px;
  }
  .main.banquan .lists .item {
    padding: 15px;
  }
  .title h4 {
    font-size: 18px;
  }
  .title p {
    font-size: 12px;
  }
  section {
    margin-bottom: 20px !important;
  }
  .main .liucheng .lists .item .img img {
    width: auto;
    height: 100%;
  }
  .main.banquan .banquan02 {
    padding: 20px 0 20px 0;
  }
  .pt-30 {
    padding-top: 20px;
  }
  .gongsi {
    padding: 0 10px;
  }
  .gongsi.main .gongsi01 .lists .item .img {
    width: 100%;
    height: 120px;
    border-radius: 0;
  }
  .gongsi.main .gongsi02 .card-box .right .list .item {
    padding: 10px;
    flex-direction: column;
  }
  .gongsi.main .gongsi02 {
    padding-bottom: 10px;
  }
  .main .liucheng .lists .item {
    padding: 15px;
  }
  .main .liucheng .lists .item .img {
    width: 42px;
    height: 42px;
  }
  .main .wenti {
    padding: 10px;
    margin-top: 4px;
    border-radius: 4px;
  }
  .main .wenti .content ul li a {
    font-size: 14px;
    color: #666;
    width: 66%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
  .about-b .wrap .right .item {
    width: 99%;
    margin: 0 auto;
}
  .zixun.anjian .left {
    margin-right: 0;
    padding-right: 0;
  }
  .zixun.anjian .right {
    width: 100%;
  }
  .aside-title h3 {
    font-size: 18px;
  }
  .main .lists .item .img {
    width: 80px;
    height: 80px;
  }
  .shenbao {
    padding-bottom: 10px;
    background-size: cover;
    padding-left: 10px;
    padding-right: 10px;
  }
  .zixun.anjian.vat .left {
    margin: 0;
    padding: 10px !important;
  }
  .tag {
    margin: 20px auto;
    padding: 0 10px;
  }
  .zixun.anjian {
    padding-bottom: 50px;
  }
  .zhuanli .card {
    padding: 10px;
    justify-content: space-between;
  }
  .zhuanli {
    position: relative;
    width: 100%;
    top: 0;
  }
  .zhuanlimian {
    padding-top: 10px;
  }
  .zhuanli .card .box {
    width: 50%;
    padding: 10px;
  }
  .zhuanli .card .box .img {
    width: 52px;
    height: 52px;
  }
  .zhuanlimian .box .btn {
    text-align: left;
  }
  .footer-aside .box {
    width: 55px;
  }
  .huoban {
    padding: 10px;
  }
  footer .footer .food-top .list .item .img img {
    width: 40px;
    height: 40px;
  }
  .model .box .top {
    font-size: 22px;
    height: 64px;
    line-height: 64px;
  }
  .model .box .top .close {
    right: 6%;
    top: -1%;
    font-size: 22px;
  }
  .model .box .bottom .form-group div {
    width: 30%;
  }
  .model .box .bottom .form-container {
    padding: 15px 10px;
  }
  .youshi01 .card-box .left {
    padding: 20px;
  }
  .youshi01 .card-box .left .title {
    height: auto;
  }
  .tro-from {
    padding: 12px;
  }
  .liucheng.tro-liucheng .lists .item {
    width: 48.5%;
    margin-bottom: 10px;
  }
  .tro-from .tro-from1 .form-group {
    width: 100%;
  }
  .tro-from .tro-from1 .form-buttons button {
    height: 35px;
    width: 100%;
    line-height: 35px;
  }
  .tro-from .tro-from1 {
    width: 100%;
    margin: 0 auto;
  }
}
