* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
:root {
  --theme-color: #f14344;
  --primary-color: #333;
  --secondary-color: #666;
  --bg-color: #f0f0f0;
  --hover-color: #b30101;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, select, textarea, p, a, img, blockquote, th, td {
  margin: 0;
  padding: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  font-family: -apple-system, "Helvetica Neue", "PingFang SC", "Microsoft Yahei", "Source Han Sans SC", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea,
label {
  font-family: -apple-system, "Helvetica Neue", "PingFang SC", "Microsoft Yahei", "Source Han Sans SC", "Arial", sans-serif;
}
ul, ol {
  list-style: none;
}
img {
  border: 0;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: var(--hover-color);
  text-decoration: none;
}

a:focus,
input:focus,
button:focus,
textarea:focus {
  outline: 0;
}


.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}
.clear {
  clear: both;
}

.visible-xs,
.visible-md,
.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1220px) {
  .container {
    width: 1220px;
  }
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.figure {
  overflow: hidden;
}
.figure img {
  display: block;
  max-width: 100%;
  height: auto;
}


.flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-reverse {
  flex-direction: row-reverse;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg-light {
  background-color: var(--bg-color);
}


/***************** iconfont S *****************/
@font-face {
  font-family: "iconfont"; /* Project id 2950440 */
  src: url('iconfont.woff2?t=1644470072944') format('woff2'),
       url('iconfont.woff?t=1644470072944') format('woff'),
       url('iconfont.ttf?t=1644470072944') format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
  content: "\e745";
}

.icon-weixin:before {
  content: "\e62f";
}

.icon-weibo:before {
  content: "\e651";
}

.icon-user:before {
  content: "\e602";
}

.icon-lock:before {
  content: "\e600";
}

.icon-phone:before {
  content: "\e692";
}

.icon-vercode:before {
  content: "\e63d";
}

.icon-kefu:before {
  content: "\e889";
}

.icon-cooperation:before {
  content: "\e777";
}

.icon-order:before {
  content: "\e897";
}

.icon-ok:before {
  content: "\e785";
}

.icon-plane:before {
  content: "\e681";
}

.icon-charge:before {
  content: "\e665";
}

.icon-link:before {
  content: "\e89c";
}

.icon-reg:before {
  content: "\e64e";
}

.icon-location:before {
  content: "\e607";
}

.icon-weixin-circle-fill:before {
  content: "\e668";
}

.icon-social-qq:before {
  content: "\e626";
}

.icon-weibo-circle-fill:before {
  content: "\e88a";
}

.icon-speaker:before {
  content: "\e7a8";
}

.icon-telephone:before {
  content: "\e61d";
}

.icon-search:before {
  content: "\e613";
}

.icon-home:before {
  content: "\e605";
}

.icon-clock:before {
  content: "\e698";
}

.icon-eye:before {
  content: "\e61a";
}

.icon-earth:before {
  content: "\e654";
}

.icon-backtop:before {
  content: "\e63f";
}

.icon-arrow-right:before {
  content: "\e678";
}
/***************** iconfont E *****************/


/***************** header S *****************/
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  color: #fff;
}
.header .topbar {
  display: none;
}
.header .navbar {
  padding: 5px 0;
}
.header .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar .logo a,
.header .navbar .logo img {
  display: block;
}
.header .logo img {
  width: auto;
  max-height: 50px;
}
.header .btn-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 12px 10px;
}
.header .btn-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #888;
  transition: transform .3s ease-out,opacity .4s ease-out;
  transform-origin: center;
}
.header .navbar .nav {
  display: none;
}
.header .navbar .nav li a {
  display: block;
  padding: 5px 20px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
}
.header .navbar .nav li.active a,
.header .navbar .nav li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.header .navbar .member {
  display: none;
}
.header .navbar .member .btn {
  padding: 7px 15px;
  margin-left: 2px;
  color: #fff;
  background-color: var(--theme-color);
}
.header .navbar .member .btn-reg {
  background-color: #f38631;
  border-radius: 17px;
}
.header .navbar .member .btn-login {
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}
@media (max-width: 767px) {
  .header .navbar .nav {
    position: absolute;
    top: 100px;
    left: 15%;
    right: 15%;
    z-index: 999;
  }
  .header .navbar .nav li {
    margin-top: 30px;
  }
  body.open .header .navbar .nav {
    display: block;
  }
  body > .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s linear,opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.open > .mask {
    visibility: visible;
    opacity: 1;
  }
  body.open .header .btn-menu span:first-child {
    transform: translateY(6.5px) rotate(45deg);
  }
  body.open .header .btn-menu span:nth-child(2) {
    opacity: 0;
  }
  body.open .header .btn-menu span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
@media (min-width: 768px) {
  .header .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    color: #ccc;
  }
  .header .topbar .iconfont {
    float: left;
    margin-right: 5px;
  }
  .header .logo img {
    max-height: 70px;
  }
  .header .btn-menu {
    display: none;
  }
  .header .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header .navbar .container {
    min-height: 58px;
  }
  .header .navbar .nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 50px;
  }
  .header .navbar .nav li a {
    color: #333;
  }
  .header .navbar .member {
    display: flex;
  }
}
@media (min-width: 1220px) {
  .header .navbar .nav {
    margin-left: 100px;
  }
  .header .navbar .nav li {
    margin-left: 20px;
  }
  .header .navbar .nav li a {
    min-width: 100px;
  }
}
/***************** header E *****************/


/***************** footer S *****************/
.footer {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 35px;
  color: #ccc;
  border-bottom: 1px solid #262626;
}
.footer a {
  color: #ccc;
}
.footer:before,
.footer:after {
  position: absolute;
  left: -25%;
  right: -25%;
  display: block;
  content: '';
  background-color: #262626;
}
.footer:before {
  top: 0;
  z-index: -2;
  height: 100%;
}
.footer:after {
  bottom: -140px;
  z-index: -1;
  height: 200px;
  background-color: #212121;
  transform: rotate(2deg);
}
.footer .logo {
  padding-bottom: 20px;
}
.footer .info {
  padding-right: 50px;
}
.footer .info p {
  margin-bottom: 10px;
}
.footer .qrcode {
  display: flex;
}
.footer .qrcode .item {
  margin-right: 20px;
  text-align: center;
}
.footer .nav {
  display: none;
}
.copyright {
  padding: 15px 0;
  text-align: center;
  color: #ccc;
  background-color: #212121;
  border-top: 1px solid #1d1d1d;
}
.copyright a {
  color: #ccc;
}
.fixbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  background-color: #fff;
  border-top: 1px solid #ccc;
}
.fixbar li {
  flex: 1;
  text-align: center;
}
.fixbar li a {
  display: block;
  padding: 5px 0;
}
.fixbar li .iconfont {
  font-size: 18px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 50px;
  }
  body.home .footer {
    margin-top: 0;
  }
  .footer .nav {
    display: flex;
    margin-left: auto;
  }
  .footer .nav dl {
    margin-left: 70px;
  }
  .footer .nav dt {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
  }
  .footer .nav dd {
    line-height: 2em;
  }
  .fixbar {
    display: none;
  }
}
@media (min-width: 1200px) {
  .footer .container {
    display: flex;
    justify-content: space-between;
  }
}
/***************** footer E *****************/


/***************** slider S *****************/
.owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  display: block;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-dots .owl-dot {
  display: inline-block;
}
.owl-dots .owl-dot span {
  display: inline-block;
  width: 15px;
  height: 1px;
  margin: 0 2px;
  background-color: #fff;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background-color: #b60007;
}
.owl-nav div {
  position: absolute;
  top: 50%;
  display: block;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  white-space: nowrap;
  text-indent: -99px;
  overflow: hidden;
  border: none;
  background: url(../images/slider-arrow.png) -60px 0 no-repeat;
}
.owl-nav .owl-prev {
  left: 5%;
  background-position: -176px 0;
}
.owl-nav .owl-prev:hover {
  background-position: -115px 0;
}
.owl-nav .owl-next {
  right: 5%;
}
.owl-nav .owl-next:hover {
  background-position: 0 0;
}
@media (min-width: 768px) {
  .owl-dots {
    bottom: 15px;
  }
  .owl-dots .owl-dot span {
    width: 30px;
    height: 2px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media (min-width: 1200px) {
  .owl-nav .owl-prev {
    left: 19%;
  }
  .owl-nav .owl-next {
    right: 19%;
  }
}
/***************** slider E *****************/

.slider {
  position: relative;
}
.slider .scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  height: 44px;
  line-height: 44px;
  color: #fff;
  background-color: rgba(0, 0, 0, .8);
}
.slider .scroll a {
  color: inherit;
}
@media (min-width: 768px) {
  .slider .owl-dots {
    bottom: 60px;
  }
}


.section-title {
  text-align: center;
}
.section-title h3 {
  margin-bottom: 10px;
  font-size: 28px;
}
.section-title p {
  padding: 10px 0;
  color: #888;
}
.section-title .line {
  display: inline-block;
  width: 2em;
  height: 3px;
  background-color: var(--theme-color);
}
.hasbg .section-title {
  color: #fff;
}
.hasbg .section-title .line {
  background-color: #fff;
}

.section {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section .section-title {
  margin-bottom: 20px;
}
@media (min-width: 1220px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section .section-title {
    margin-bottom: 50px;
  }
  .section-title h3 {
    font-size: 32px;
  }
}


.numlist li {
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
}
.numlist li:before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 46px;
  margin-top: -23px;
  background-color: #c5c5c5;
}
.numlist li:first-child:before {
  display: none;
}
.numlist li h4 {
  font-size: 26px;
  font-weight: bold;
}
.numlist li span {
  display: inline-block;
  width: 1.5em;
  height: 1px;
  margin: 10px 0;
  background-color: var(--theme-color);
}
.numlist li p {
  color: #666;
}
@media (min-width: 768px) {
  .numlist {
    padding-top: 30px;
  }
  .numlist li {
    width: 25%;
  }
}

#section-about:after {
  position: absolute;
  left: -25%;
  right: -25%;
  top: 50%;
  z-index: -1;
  display: block;
  content: '';
  height: 100%;
  background-color: var(--bg-color);
  transform: rotate(-2deg);;
}



#section-advantage {
  background: url(../images/bg-advantage.jpg) center no-repeat;
  background-size: cover;
}

.cardlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cardlist li {
  width: 48%;
  margin-bottom: 20px;
  padding: 12px;
  background-color: #fff;
  border-radius: 8px;
}
.cardlist li .item {
  position: relative;
  background: url(../images/icon-1.jpg) right top no-repeat;
  background-size: 33px 33px;
}
.cardlist li:nth-child(2) .item {
  background-image: url(../images/icon-2.jpg);
}
.cardlist li:nth-child(3) .item {
  background-image: url(../images/icon-3.jpg);
}
.cardlist li:nth-child(4) .item {
  background-image: url(../images/icon-4.jpg);
}
.cardlist li:nth-child(5) .item {
  background-image: url(../images/icon-5.jpg);
}
.cardlist li:nth-child(6) .item {
  background-image: url(../images/icon-6.jpg);
}
.cardlist li h4 {
  position: relative;
  font-size: 22px;
}
.cardlist li span {
  display: inline-block;
  width: 1.5em;
  height: 2px;
  background-color: var(--theme-color);
}
.cardlist li .text {
  height: 50px;
  overflow: hidden;
  margin-top: 10px;
}
.cardlist li p {
  padding-left: 20px;
  line-height: 28px;
  background: url(../images/list-arr.jpg) 0 10px no-repeat;
}
@media (min-width: 768px) {
  .cardlist li {
    width: 30%;
    padding: 22px 28px;
    margin-bottom: 60px;
  }
  .cardlist li .item {
    background-size: 66px 66px;
  }
}


.tabs .bd > div {
  display: none;
}
.tabs .bd > div.active {
  display: block;
}
.tabs .hd {
  display: flex;
  justify-content: space-between;
}
.tabs .hd li a {
  display: block;
  color: inherit;
}
.tabs .hd li.active a {
  color: var(--theme-color);
}
@media (min-width: 768px) {
  .tabs .hd {
    justify-content: center;
  }
  .tabs .hd li {
    height: 36px;
    margin: 0 5px;
    line-height: 36px;
  }
  .tabs .hd li a {
    width: auto;
    padding: 0 20px;
    background-color: transparent;
    border-radius: 18px;
  }
}

#section-media {
  padding-bottom: 0;
}
#section-media .hd {
  margin-bottom: 10px;
}
#section-media .hd li a {
  display: block;
  padding: 5px;
  width: 3em;
  text-align: center;
  background-color: var(--bg-color);
}
#section-media .hd li.active a,
#section-media .hd li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
#section-media .bd {
  padding-top: 20px;
  padding-bottom: 10px;
}
.brandlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.brandlist li {
  width: 48%;
  margin-bottom: 10px;
  text-align: center;
}
.brandlist li img {
  max-width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
}
@media (min-width: 768px) {
  #section-media .hd {
    margin-bottom: 30px;
  }
  #section-media .hd li a {
    width: auto;
    padding: 0 20px;
  }
  .brandlist li {
    width: auto;
  }

}
@media (min-width: 1220px) {
  #section-media .bd {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .brandlist li {
    width: auto;
    margin-bottom: 40px;
  }
  .brandlist li:first-child,
  .brandlist li:nth-child(8) {
    margin-left: 10%;
  }
  .brandlist li:nth-child(3),
  .brandlist li:last-child {
    margin-right: 10%;
  }
}


.unitlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.unitlist li {
  width: 48%;
  margin-bottom: 20px;
}
.unitlist li .item {
  display: block;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
}
.unitlist li .text {
  position: relative;
}
.unitlist li .text .num {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  text-indent: -999px;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/num-1.jpg);
}
.unitlist li:nth-child(2) .text .num {
  background-image: url(../images/num-2.jpg);
}
.unitlist li:nth-child(3) .text .num {
  background-image: url(../images/num-3.jpg);
}
.unitlist li:nth-child(4) .text .num {
  background-image: url(../images/num-4.jpg);
}
.unitlist li:nth-child(5) .text .num {
  background-image: url(../images/num-5.jpg);
}
.unitlist li:nth-child(6) .text .num {
  background-image: url(../images/num-6.jpg);
}
.unitlist li .text h4 {
  font-size: 24px;
}
.unitlist li .text .line {
  display: inline-block;
  width: 2em;
  height: 2px;
  margin: 10px 0;
  background-color: var(--theme-color);
}
.unitlist li .text .tag {
  position: absolute;
  top: 10px;
  right: 0;
  width: 3em;
  padding: 4px;
  text-align: center;
  color: #fff;
  background-color: #f28532;
  border-radius: 5px;
}
.unitlist li a:hover .text .tag {
  background-color: var(--hover-color);
}
.unitlist li .text p {
  line-height: 2em;
}
.unitlist li .text .price {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #f04444;
  background: url(../images/more-arr.jpg) right center no-repeat;
}
@media (min-width: 768px) {
  .unitlist li {
    width: 30%;
    margin-bottom: 60px;
  }
  .unitlist li .item {
    padding: 20px 30px;
  }
}

#section-unit {
  background: url(../images/bg-unit.jpg) center top no-repeat;
}
#section-unit:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  content: '';
  background-color: var(--bg-color);
}

#section-flow {
  height: 540px;
  background: url(../images/bg-flow.jpg) center no-repeat;
  background-size: cover;
}
.steplist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.steplist li {
  flex: 1;
  padding: 0 40px;
  margin-bottom: 40px;
  text-align: center;
  background: url(../images/arr-left.png) right center no-repeat;
}
.steplist li:last-child {
  background-image: none;
}
.steplist li a {
  color: #fff;
}
.steplist li .iconfont {
  font-size: 45px;
}
.steplist li h4 {
  margin-top: 15px;
  font-weight: normal;
  font-size: 16px;
}
.steplist li:first-child .iconfont {
  color: #f85f5a;
}
.steplist li:last-child .iconfont {
  color: #f85f5a;
}
.steplist li:nth-child(2) .iconfont {
  color: #4ca6da;
}
.steplist li:nth-child(3) .iconfont {
  color: #f1842f;
}
.steplist li:nth-child(4) .iconfont {
  color: #4ca6da;
}
.steplist li:nth-child(5) .iconfont {
  color: #ebaa46;
}
@media (min-width: 1220px) {
  #section-flow .section-title {
    margin-bottom: 100px;
  }
}

.banner {
  position: relative;
  color: #fff;
}
.banner .bg {
  display: block;
  width: 100%;
  height: auto;
}
.banner .box {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  display: none;
}
.banner .column {
  margin-bottom: 20px;
  text-align: center;
}
.banner .column h3 {
  font-size: 38px;
}
.banner .search {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}
.banner .search input,
.banner .search button {
  height: 48px;
  line-height: 48px;
  border: none;
}
.banner .search .iptxt {
  flex: 1;
  padding-left: 20px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.banner .search .ipbtn {
  width: 60px;
  text-align: center;
  background-color: rgba(241, 66, 66, .8);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  cursor: pointer;
}
.banner .search .ipbtn:hover {
  background-color: var(--theme-color);
}
.banner .search .ipbtn span {
  font-size: 24px;
  color: #fff;
}
.banner .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 15px;
}
.banner .section-title p {
  padding-top: 20px;
  line-height: 2em;
  color: #fff;
}
@media (min-width: 768px) {
  .banner .box {
    display: block;
  }
}


.list {
  padding-top: 20px;
  padding-bottom: 20px;
}
.list .column {
  margin-bottom: 10px;
}
.list .column h3 {
  margin-bottom: 5px;
  font-size: 30px;
}
.list .column p {
  color: #999;
  text-transform: uppercase;
}
.list .content {
  min-width: 0;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 2px #ccc;
}
@media (min-width: 768px) {
  .list {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .list .column {
    margin-bottom: 30px;
  }
  .list .content {
    padding: 30px;
  }
}

.txtlist {
  min-height: 300px;
}
.txtlist li {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  margin: 10px 0;
  background: url(../images/list-arr.jpg) left center no-repeat;
}
.txtlist li span {
  color: #888;
}

.subnav {
  display: flex;
  justify-content: center;
  margin-top: -35px;
}
.subnav ul {
  display: flex;
  justify-content: center;
  padding: 8px 5px;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
  border-radius: 5px;
}
.subnav li {
  padding: 0 5px;
}
.subnav li a {
  position: relative;
  display: block;
  padding: 10px 5px;
  font-size: 16px;
}
.subnav li a:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  content: '';
  width: 2em;
  height: 2px;
  margin-left: -1em;
}
.subnav li.active a:after,
.subnav li a:hover:after {
  background-color: var(--theme-color);
}
@media (min-width: 768px) {
  .subnav ul {
    padding-left: 20px;
    padding-right: 20px;
  }
  .subnav li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .subnav li a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}


.newslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newslist li {
  width: 48%;
  margin-bottom: 20px;
}
.newslist li .figure a {
  display: block;
}
.newslist li .figure img {
  display: block;
  width: 100%;
  height: auto;
}
.newslist li .text h4 {
  display: -webkit-box;
  height: 36px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 15px;
}
.newslist li .text p {
  margin-bottom: 10px;
  line-height: 1.5em;
  color: #888;
}
.newslist li .text .more {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  background-color: var(--theme-color);
  border-radius: 13px;
}
@media (min-width: 768px) {
  .newslist li {
    width: 46.6%;
    margin-bottom: 50px;
  }
  .newslist li .text h4 {
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1220px) {
  .newslist li:nth-child(even) {
    margin-top: -80px;
  }
  .newslist li .text h4 {
    margin-top: 25px;
  }
}


.pagebar {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.pagebar.pagebar-right {
  justify-content: flex-end;
}
.pagebar ul {
  display: flex;
}
.pagebar li {
  margin: 0 3px;
}
.pagebar li a {
  padding: 2px 10px;
  border-radius: 20px;
}
.pagebar li.active a,
.pagebar li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.breadcrumb {
  height: 36px;
  line-height: 36px;
  background-color: var(--bg-color);
}
.breadcrumb .active {
  color: #f00;
}


.post .post-title {
  padding-top: 50px;
  margin-bottom: 40px;
  text-align: center;
}
.post .post-title h1 {
  margin-bottom: 15px;
}
.post .post-title span {
  padding: 0 .4em;
  color: #888;
}
.article {
  padding-bottom: 50px;
  min-height: 400px;
  line-height: 2em;
  overflow: hidden;
}
.article img {
  max-width: 100%;
  height: auto;
}
.article > p {
  margin-bottom: 10px;
  text-indent: 2em;
}

.postnav {
  margin-top: 50px;
  line-height: 36px;
  background-color: var(--bg-color);
}
@media (min-width: 768px) {
  .postnav .container {
    display: flex;
    justify-content: space-between;
  }
}


.about {
  display: flex;
  flex-wrap: wrap;
}
.about .text .intro {
  line-height: 2em;
}
.about .text .intro p {
  margin-bottom: 10px;
  text-indent: 2em;
}
@media (min-width: 768px) {
  .about {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .about .text {
    flex: 1;
    padding-right: 50px;
  }
  .about .figure {
    width: 45%;
  }
}

.contact {
  display: flex;
  flex-wrap: wrap;
}
.contact .mapbox {
  flex: 1;
}
.contact .mapbox #allmap {
  width: 100%;
  height: 100%;
}
.contact .infolist {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}
.contact .infolist li {
  text-align: center;
  color: #fff;
  background-color: #f38631;
}
.contact .infolist li:last-child {
  background-color: #f14344;
}
.contact .infolist li .figure {
  padding-top: 50px;
  padding-bottom: 30px;
}
.contact .infolist li .iconfont {
  font-size: 60px;
}
.contact .infolist li .figure h4 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: normal;
}
.contact .infolist li .text {
  padding: 20px 30px;
  line-height: 2em;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}
@media (min-width: 768px) {
  .contact {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
  .contact .infolist {
    margin-left: 25px;
  }
}


.col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col-2 .item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .col-2 {
    flex-wrap: nowrap;
  }
  .col-2 .item {
    width: 48%;
  }
}


.filter {
  margin-top: -50px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  border-radius: 10px;
}
.filter .condition {
  display: flex;
  margin-bottom: 20px;
}
.filter .condition h4 {
  width: 5.5em;
}
.filter .condition .item {
  flex: 1;
}
.filter .condition .item a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 2px 8px;
  border-radius: 12px;
}
.filter .condition .item .active,
.filter .condition .item a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.filter .condition .item select {
  margin-right: 15px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .filter {
    padding: 30px 40px;
    margin-top: -200px;
  }
}
@media (min-width: 1220px) {
  .filter {
    margin-top: -300px;
  }
  .filter .condition .item select {
    min-width: 140px;
  }
}
@media (min-width: 1680px) {
  .filter {
    margin-top: -700px;
  }
}

.seolist {
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  border-radius: 10px;
  overflow-x: scroll;
}
.seolist .table {
  border-bottom: 1px solid #eee;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.table th,
.table td {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 10px;
  text-align: center;
}
.table th,
.table tr:nth-child(even) td {
  background-color: var(--bg-color);
}
.table th {
  height: 58px;
  line-height: 58px;
}
.table td {
  height: 40px;
  line-height: 40px;
}
@media (min-width: 1220px) {
  .seolist {
    overflow-x: hidden;
  }
}

.star {
  display: inline-block;
  width: 76px;
  height: 16px;
  vertical-align: middle;
  background: url(../images/star-1.png) no-repeat;
}
.star.star-2 {
  background-image: url(../images/star-2.png);
}
.star.star-3 {
  background-image: url(../images/star-3.png);
}
.star.star-4 {
  background-image: url(../images/star-4.png);
}
.star.star-5 {
  background-image: url(../images/star-5.png);
}

.weight {
  display: inline-block;
  width: 45px;
  height: 20px;
  vertical-align: middle;
  background: url(../images/baidu0.png) no-repeat;
}
.weight.w-1 {
  background-image: url(../images/baidu1.png);
}
.weight.w-2 {
  background-image: url(../images/baidu2.png);
}
.weight.w-3 {
  background-image: url(../images/baidu3.png);
}
.weight.w-4 {
  background-image: url(../images/baidu4.png);
}
.weight.w-5 {
  background-image: url(../images/baidu5.png);
}
.weight.w-6 {
  background-image: url(../images/baidu6.png);
}
.weight.w-7 {
  background-image: url(../images/baidu7.png);
}
.weight.w-8 {
  background-image: url(../images/baidu8.png);
}
.weight.w-9 {
  background-image: url(../images/baidu9.png);
}



.login {
  height: 100vh;
  background: url(../images/bg-login.jpg) no-repeat;
  background-size: cover;
}
.login .container {
  position: relative;
  margin-top: 100px;
}
.login .logo {
  margin-bottom: 30px;
  margin-left: 45px;
}
.login .box {
  padding: 45px 55% 45px 45px;
  color: #fff;
  background-color: rgba(212, 62, 65, .5);
  border-radius: 15px;
}
.login .box a {
  color: #fff;
}
.login .box .welcome {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  line-height: 2em;
}
.login .box .welcome:after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: '';
  width: 5em;
  height: 1px;
  background-color: #fff;
}
.login .box .welcome h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: normal;
}
.login .box .welcome span {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
.login .box .link {
  display: flex;
}
.login .box .link li {
  padding: 0 1em;
  border-left: 1px solid #ccc;
}
.login .box .link li:first-child {
  padding-left: 0;
  border-left: none;
}
.login .tabs .hd {
  margin-bottom: 20px;
  justify-content: space-around;
}
.login .tabs .hd li {
  flex: 1;
  font-size: 18px;
  text-align: center;
}
.login .tabs .hd li:last-child {
  border-left: 1px solid #ccc;
}
.login .tabs .hd li a {
  padding-left: 5px;
  padding-right: 5px;
}
.login .tabs .hd li.active a {
  color: var(--hover-color);
}
.login .form {
  padding-top: 30px;
  background-color: #fff;
  border-radius: 15px;
}
.login .form h4 {
  margin-bottom: 20px;
  text-indent: 15px;
  font-size: 18px;
}
.login .form .inner {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  border-radius: 15px;
}
.form .form-group {
  position: relative;
  display: flex;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.form .form-group.last {
  border-bottom: none;
}
.form .form-group .iconfont {
  font-size: 20px;
  margin-right: 10px;
}
.form .form-group .iptxt,
.form .ipbtn {
  border: none;
}
.form .form-group .iptxt,
.form .form-group label {
  flex: 1;
}
.form .form-group input[type='checkbox'] {
  margin-right: 5px;
}
.form .form-group .vercode {
  position: absolute;
  top: 10px;
  right: 0;
}
.form .ipbtn {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  background-color: var(--theme-color);
  border-radius: 20px;
  cursor: pointer;
}
.form .alert {
  margin-top: 20px;
}
.form .alert a {
  color: var(--theme-color);
}
.form .other {
  margin-top: 20px;
}
.form .other p {
  text-align: center;
}
.form .other .line {
  margin-top: 30px;
  background: url(../images/dot.jpg) center repeat-x;
}
.form .other .line span {
  display: inline-block;
  padding: 5px;
  background-color: #fff;
}
.form .other .social {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.form .other .social li {
  padding: 0 15px;
}
.form .other .social li a {
  display: block;
  width: 36px;
  height: 36px;
  overflow: hidden;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
}
.form .other .social li:first-child a {
  background-color: #4fb574;
}
.form .other .social li:last-child a {
  background-color: #eb5d5c;
}
.form .other .social li .iconfont {
  font-size: 24px;
  color: #fff;
}
.social-qq {
  background: url(../images/social-qq.png) center no-repeat;
}
@media (min-width: 768px) {
  .login .container {
    margin-top: 200px;
    padding-top: 50px;
  }
  .login .form {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    padding: 30px 50px 50px;
    background-color: var(--bg-color);
    border-radius: 15px;
  }
  .login .form h4 {
    text-indent: 0;
  }
}


.header-member .topbar {
  color: #333;
}
.header-member .topbar ul {
  display: flex;
}
.header-member .topbar li {
  padding: 0 10px;
  line-height: normal;
  border-left: 1px solid #ccc;
}
.header-member .topbar li:first-child {
  border-left: none;
}
.header-member .navbar {
  background-color: #000;
}

@media (min-width: 768px) {
  .header-member .navbar .nav li {
    margin-right: 10px;
  }
}

.footer-member {
  padding: 10px 0;
  line-height: 2em;
  color: #fff;
  background-color: #262626;
}
.footer-member a {
  color: #fff;
}
.footer-member ul {
  display: flex;
}
.footer-member li {
  margin-right: 1em;
}
.footer-member .tel span {
  font-size: 20px;
  color: var(--theme-color);
}
@media (min-width: 768px) {
  .footer-member {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer-member .container {
    display: flex;
    justify-content: space-between;
  }
  .footer-member .tel {
    text-align: right;
  }
}


.ucenter {
  padding-bottom: 1px;
}

.cpanel .sidebar {
  padding: 15px;
  margin-bottom: 25px;
  background-color: #fff;
  border-radius: 10px;
}
.cpanel .sidebar .item {
  margin-bottom: 20px;
}
.cpanel .sidebar .item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.cpanel .sidebar .item ul {
  display: flex;
  flex-wrap: wrap;
}
.cpanel .sidebar .item li {
  position: relative;
  margin-bottom: 5px;
}
.cpanel .sidebar .item li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 30px;
  border-radius: 4px;
}
.cpanel .sidebar .item li.active a,
.cpanel .sidebar .item li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.cpanel .sidebar .item li span {
  position: absolute;
  top: -6px;
  right: -5px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: var(--theme-color);
  border-radius: 8px;
}
.cpanel .sidebar .item li.active span,
.cpanel .sidebar .item li a:hover span {
  color: var(--theme-color);
  background-color: #fff;
}
.cpanel .box {
  padding: 20px;
  margin-bottom: 25px;
  background-color: #fff;
  border-radius: 10px;
}
.cpanel .profile {
  display: flex;
}
.cpanel .profile .avatar img {
  display: block;
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
}
.cpanel .profile .avatar p {
  padding: 10px 0;
  font-size: 16px;
}
.cpanel .money {
  margin-left: 50px;
  text-align: center;
}
.cpanel .money span {
  font-size: 30px;
  color: var(--theme-color);
}
.cpanel .money p {
  padding: 10px 0;
}
.cpanel .money .btns a {
  display: inline-block;
  margin: 0 5px;
  padding: 4px 15px;
  border: 1px solid var(--theme-color);
  border-radius: 15px;
}
.cpanel .money .btns a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.cpanel .userbox .tabs .hd {
  justify-content: flex-start;
  margin-bottom: 15px;
}
.cpanel .userbox .tabs .hd li {
  position: relative;
  font-size: 18px;
  margin-right: 20px;
}
.cpanel .userbox .tabs .hd li span {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: var(--theme-color);
  border-radius: 8px;
}
.cpanel .userbox .scroll {
  overflow-x: scroll;
}
.cpanel .userbox .utit {
  margin-bottom: 20px;
}
.cpanel .userbox .utit h3 {
  text-indent: 20px;
  font-size: 18px;
}
.cpanel .userbox .table th {
  height: 40px;
  line-height: 40px;
}
.cpanel .userbox .table tr:nth-child(even) td {
  background-color: transparent;
}
.cpanel .userbox .alert {
  margin-bottom: 10px;
}
.cpanel .userbox .box > h3 {
  margin-bottom: 15px;
}


.addrlist .item {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.addrlist .item:hover {
  border-color: var(--theme-color);
}
.addrlist .item .btn-add {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.addrlist .item .btn-add .iconfont {
  font-size: 30px;
}
.addrlist .item .btn-add p {
  line-height: 2em;
}
.addrlist .item .card {
  padding: 15px;
}
.addrlist .item .card h4 {
  margin-bottom: 10px;
}
.addrlist .item .card p {
  line-height: 2em;
}
.addrlist .item .card a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 2em;
  color: var(--theme-color);
}
@media (min-width: 768px) {
  .ucenter {
    padding-top: 10px;
  }
  .ucenter .breadcrumb {
    margin-bottom: 10px;
  }
  .cpanel .sidebar .item h4 {
    text-indent: 20px;
  }
  .cpanel .sidebar .item li a {
    padding-left: 25px;
  }
  .cpanel .sidebar .item li span {
    top: 7px;
    right: 20px;
  }
  .cpanel {
    display: flex;
    justify-content: space-between;
  }
  .cpanel .sidebar {
    width: 185px;
  }
  .cpanel .userbox {
    flex: 1;
    margin-left: 25px;
  }
  .cpanel .money {
    margin-left: auto;
  }
  .cpanel .userbox .tabs .hd li {
    margin-right: 0;
  }
  .cpanel .userbox .tabs .hd li:first-child {
    margin-left: -20px;
  }
  .addrlist {
    display: flex;
    justify-content: space-between;
  }
  .addrlist .item {
    width: 31%;
  }
}
@media (min-width: 1220px) {
  .cpanel .userbox .scroll {
    overflow-x: hidden;
  }
}


.popup {
  display: none;
  padding: 30px;
}
.popup h4 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
}
.popup .form .form-group {
  border-bottom: none;
}
.popup .form .form-group .iptxt {
  border-bottom: 1px solid #ccc;
}
.popup .form .form-group .item {
  width: 5em;
  margin-right: 5px;
  text-align: right;
}
.popup .form .form-group .item span {
  display: inline-block;
  padding-right: 5px;
  color: var(--theme-color);
}
.popup .form .form-group select {
  margin-right: 1em;
}
.popup .form .form-group textarea {
  width: 100%;
  padding: 5px;
}
.popup .form .form-btns {
  display: flex;
  justify-content: center;
}
.popup .form .form-btns .ipbtn {
  display: block;
  margin: 0 10px;
  padding: 3px 15px;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  border-radius: 15px;
  cursor: pointer;
}
.popup .form .form-btns .ipbtn:last-child {
  color: #fff;
  background-color: var(--theme-color);
}
.popup .vercode {
  width: auto;
  max-height: 32px;
}
@media (min-width: 768px) {
  .popup {
    padding-left: 50px;
    padding-right: 50px;
  }
}



.note .item {
  padding: 5px;
  margin-bottom: 15px;
  background: url(../images/bg-email.webp) no-repeat;
  border-radius: 15px;
}
.note .item:first-child {
  margin-right: 20px;
}
.note .item h4,
.note .item ul {
  display: block;
  padding: 20px;
  background-color: #fff;
}
.note .item h4 {
  font-size: 20px;
}
.note .item li {
  margin-top: 15px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .note {
    display: flex;
    justify-content: space-between;
  }
  .note .item h4 {
    min-height: 88px;
  }
  .note .item ul {
    min-height: 400px;
  }
}


.gbook {
  padding: 15px;
}
.gbook .layui-form-item-datetime {
  display: none;
}
.gbook .tips {
  color: #f00;
}
@media screen and (min-width: 992px) {
  .gbook .layui-form-label {
    width: 150px;
  }
  .gbook .tips,
  .gbook .layui-input-right {
    margin-left: 160px;
  }
  .gbook .layui-form-item-width-100 .layui-input-right .layui-input-block {
    width: 50%;
  }
}

