@charset "utf-8";
@import url("reset.css");
@import url("animate.css");
@import url("/public/plugins/font-awesome-4.7.0/css/font-awesome.min.css");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --common-page-width: 1210px;
  --common-font-size: 14px;
  --common-color: #666;
  --common-background-color: #d71418;
  --common-background-hover-color: #d71418;
  --nav-height: 67px;
  --common-p-line-height: 200%;
  --common-p-size: 16px;
  --common-p-color: #1d1d1d;
  --common-font-color-hover: #d71418;
}

body {
  background-color: #fff;
  overflow: hidden;
  font-size: var(--common-font-size);
}

input {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  background: transparent;
  text-decoration: none;
  color: var(--common-p-color);
}

a:active,
a:hover {
  outline: 0;
}

a:hover {
  text-decoration: none;
  color: var(--common-background-color);
}

.textCenter {
  text-align: center;
}

.wrapper {
  width: var(--common-page-width);
  margin: 0 auto;
  text-align: left;
}

.index .wrapper {
  width: var(--common-page-width);
}

.ov {
  overflow: hidden;
}

.ts {
  text-transform: uppercase;
}

.mauto {
  margin: 0 auto;
}

.pz {
  position: relative;
  z-index: 0;
}

.pa {
  position: absolute;
  z-index: 0;
}

.bz {
  box-sizing: border-box;
}

.b {
  font-weight: bold;
}

.i {
  font-style: italic;
}

.hidden {
  display: none !important;
}

.cb {
  clear: both;
}

.tes {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.max1400 {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.max1300 {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

/*animation*/
@keyframes slideDown {
  0% {
    top: 55px;
    opacity: 0;
  }

  to {
    top: var(--nav-height);
    opacity: 1;
  }
}

@-webkit-keyframes slideDown {
  0% {
    top: 55px;
    opacity: 0;
  }

  to {
    top: var(--nav-height);
    opacity: 1;
  }
}

@keyframes headerDown {
  0% {
    transform: translateY(-70%);
  }

  to {
    transform: translateY(0);
  }
}

.img img {
  transform: scale(1);
}

a:hover .img img {
  transform: scale(1.1, 1.1);
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.flexJb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.flexColumn {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}

.flexAc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.flexCenter {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

.flexWrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.flexRight {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

.ovd {
  overflow: hidden;
}

.db {
  display: block;
}

#app {
  overflow: hidden;
}

.mt20 {
  margin-top: 20px;
}
/*header*/
.headerBar {
  width: 100%;
  height: 49px;
  background-color: var(--common-background-color);
  font-size: var(--common-font-size);
  color: #fff;
  padding: 0 11.25%;
}

.headerBar *,
.headerBar a {
  font-size: var(--common-font-size);
  color: #fff;
}

.headerBar a:hover {
  text-decoration: underline;
}

.headerBar .ib {
  margin-right: 10px;
}

header,
header img {
  width: 100%;
}

header .user {
  width: 100%;
  top: 20px;
  right: 0;
  font-size: 16px;
  color: #fff;
  z-index: 999;
}

header .user a {
  text-decoration: underline;
  color: #fff;
}

header .user a:hover {
  color: #eee;
}

header .search {
  margin-right: 28px;
  width: 202px;
  height: 34px;
  background-color: #d7e8f8;
  border: 1px solid #b8c7d7;
}

header .search .input {
  height: 34px;
  background: none;
  border: 0;
  width: 160px;
  padding: 0 8px;
  font-size: 14px;
  color: #333;
}

header .search .input::placeholder {
  color: #fff;
}

header .search .button {
  flex: 1;
  height: 34px;
  background: none;
  border: 0;
  cursor: pointer;
}

/*nav*/
nav {
  width: 100%;
  height: var(--nav-height);
  background-color: var(--common-background-color);
  position: relative;
  z-index: 999;
}

nav.active {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-animation: headerDown 0.5s 1;
  -khtml-animation: headerDown 0.5s 1;
  animation-direction: alternate;
  box-shadow: 0 0 5px #666;
}

nav ul {
  overflow: visible !important;
  margin: 0 auto;
  font-size: 0;
}

nav li {
  position: relative;
  z-index: 9999999;
  height: var(--nav-height);
  flex: 1;
}

nav li .a {
  display: inline-block;
  width: 100%;
  height: var(--nav-height);
  text-align: center;
  line-height: var(--nav-height);
  font-size: 18px;
  color: #fff;
  position: relative;
}

nav li .a::before {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

nav li:last-child .a::before {
  display: none;
}

nav li .a.active {
  font-weight: bold;
}

nav .dl {
  overflow: hidden;
  display: none;
  position: absolute;
  z-index: 999;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(215, 20, 24, 0.5);
  text-align: center;
  -webkit-animation: slideDown 0.3s 1;
  -khtml-animation: slideDown 0.3s 1;
  animation-direction: alternate;
}

nav li:hover .dl {
  display: block;
}

nav dt {
  overflow: hidden;
  width: 100%;
}

nav dt a {
  overflow: hidden;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  line-height: 25px;
  border-bottom: 1px solid #fff;
}

nav dt:last-child a {
  border: 0;
}

nav dt a:link,
nav dt a:visited {
  font-size: var(--common-font-size);
  color: #fff;
}

nav dt a:hover {
  background-color: var(--common-background-color);
  text-decoration: none;
  color: #fff;
}

/*footer*/
footer {
  border-top: 13px solid var(--common-background-color);
  background-color: #efefef;
  padding: 41px 0 0 0;
}

footer .flinks {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px 0;
  line-height: 33px;
  font-size: 16px;
}

footer .flinks img {
  margin-right: 18px;
}

footer .copyright {
  padding: 25px 0;
  line-height: 180%;
  color: #666;
}

/*swiper*/
.headerSwiper {
  z-index: 0;
}

.headerSwiper img {
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--common-font-color) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--common-font-color) !important;
}

.headerSwiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.headerSwiper .swiper-pagination-bullet-active {
  background-color: var(--common-background-color) !important;
}

/*index*/
.itabs {
  width: 100%;
  height: 53px;
  border-bottom: 4px solid #ccc;
}

.itabs li {
  width: 150px;
  height: 49px;
  cursor: pointer;
  background-color: #ccc;
  margin-right: 5px;
  font-size: 20px;
  color: #666;
  outline: none;
}

.itabs li.active {
  background-color: var(--common-background-color);
  color: #fff;
}

.itabs .more {
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.index1 {
  margin-top: 46px;
  position: relative;
  z-index: 0;
}

.index1 .l {
  margin-top: 4px;
}

.index1 .l,
.index1 .hotSwiper,
.index1 .hotSwiper .swiper-slide {
  width: 535px;
  height: 363px;
}

.index1 .hotSwiper .swiper-slide .pa {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0 90px 0 22px;
  font-size: 14px;
  color: #fff;
}

.index1 .hotSwiper .swiper-slide .pa .title {
  width: 380px;
  height: 67px;
  line-height: 67px;
}

.index1 .hotSwiper .swiper-pagination {
  text-align: right;
  bottom: 25px;
  padding-right: 10px;
  height: 14px;
  line-height: 14px;
}

.index1 .hotSwiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.index1 .hotSwiper .swiper-pagination-bullet-active {
  background-color: red !important;
}

.index1 .r {
  width: 620px;
}

.index1 .r .newslist {
  margin-top: 11px;
}

.index2 {
  margin-top: 27px;
}

.index3 {
  margin-top: 47px;
}

/* 平台优势 */
.wdys {
  padding-top: 4.167%;
  padding-bottom: 4.167%;
  background: url(../images/wdys_bg.jpg) no-repeat center;
  background-size: cover;
  margin-top: 52px;
}

.wdys .wdys_ft {
  text-align: center;
}

.wdys .wdys_ft h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
}

.wdys .wdys_ft h3 span {
  color: #d81519;
}

.wdys .wdys_ft h4 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #999999;
  margin-top: 12px;
}

.wdys .wdys_fc {
  margin-top: 1.5%;
  margin-bottom: 2.5%;
}

.wdys .wdys_fc ul {
  font-size: 0;
  text-align: center;
}

.wdys .wdys_fc ul li {
  display: inline-block;
  width: 256px;
  background-color: #e6e6e6;
  margin: 5px 9px;
  padding: 1.858% 0;
  text-align: center;
}

.wdys .wdys_fc ul li .flimg {
  width: 42px;
  height: 42px;
  text-align: center;
  margin-right: 5px;
}

.wdys .wdys_fc ul li .flnr {
  display: inline-block;
}

.wdys .wdys_fc ul li .flimg .img2 {
  display: none;
}

.wdys .wdys_fc ul li .flwz {
  text-align: left;
  width: calc(100% - 47px);
}

.wdys .wdys_fc ul li .flwz h3 {
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  color: #333333;
  padding-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wdys .wdys_fc ul li .flwz h4 {
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  color: #333333;
  margin-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wdys .wdys_fc ul li:hover .flimg .img2 {
  display: inline;
}

.wdys .wdys_fc ul li:hover .flimg .img1 {
  display: none;
}

.wdys .wdys_fc ul li:hover {
  background-color: #d81519;
}

.wdys .wdys_fc ul li:hover .flwz h3 {
  color: #fff;
}

.wdys .wdys_fc ul li:hover .flwz h4 {
  color: #fff;
}

.wdys .wdys_fc ul li.on .flimg .img2 {
  display: inline;
}

.wdys .wdys_fc ul li.on .flimg .img1 {
  display: none;
}

.wdys .wdys_fc ul li.on {
  background-color: #d81519;
}

.wdys .wdys_fc ul li.on .flwz h3 {
  color: #fff;
}

.wdys .wdys_fc ul li.on .flwz h4 {
  color: #fff;
}

.wdys .wdys_fb {
  background-color: #ffffff;
  padding: 2.786% 25px 2.786% 25px;
}

.wdys .wdys_fb .wdys_fbl {
  margin-top: 1.94%;
  width: 47%;
}

.wdys .wdys_fb .wdys_fbl .wdys_fblt h3 {
  font-family: Impact;
  font-size: 3rem;
  color: #d81519;
}

.wdys .wdys_fb .wdys_fbl .wdys_fblt h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #e6e6e6;
  margin-top: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e6e6e6;
  margin-left: 11px;
}

.wdys .wdys_fb .wdys_fbl .wdys_fblc {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #d81519;
  margin-top: 4.292%;
}

.wdys .wdys_fb .wdys_fbl .wdys_fblb {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.75;
  color: #808080;
  margin-top: 2.642%;
}

.wdys .wdys_fb .wdys_fbl .wdysckgd {
  display: block;
  width: 120px;
  border: solid 1px #999999;
  font-size: 14px;
  line-height: 28px;
  color: #808080;
  text-align: center;
  margin-top: 8.748%;
}

.wdys .wdys_fb .wdys_fbr {
  width: 49.8%;
}

.wdys .wdys_fb .wdys_fbr img {
  width: 100%;
}

@media (max-width: 1240px) {
  .wdys .wdys_fc ul li {
    margin: 5px 0.5% 5px 0;
    width: 19.6%;
  }

  .wdys .wdys_fc ul li:last-child {
    margin-right: 0;
  }

  .wdys .wdys_fc ul li .flwz h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .wdys .wdys_ft h3 {
    font-size: 32px;
  }

  .wdys .wdys_ft h4 {
    font-size: 16px;
  }

  .wdys .wdys_fc ul li {
    width: 32%;
    margin: 5px 2% 5px 0;
  }

  .wdys .wdys_fc ul li:nth-child(3n) {
    margin-right: 0;
  }

  .wdys .wdys_fb {
    padding: 2%;
  }

  .wdys .wdys_fb .wdys_fbl {
    width: 100%;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h3 {
    font-size: 60px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h4 {
    font-size: 28px;
    margin-top: 13px;
    padding-bottom: 10px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblc {
    font-size: 28px;
    margin-top: 15px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblb {
    font-size: 16px;
    margin-top: 10px;
  }

  .wdys .wdys_fb .wdys_fbl .wdysckgd {
    margin-top: 15px;
  }

  .wdys .wdys_fb .wdys_fbr {
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .wdys {
    padding: 25px 0;
  }

  .wdys .wdys_ft h3 {
    font-size: 28px;
  }

  .wdys .wdys_ft h4 {
    font-size: 14px;
    line-height: 1.2;
  }

  .wdys .wdys_fc ul li {
    width: 49%;
    margin: 5px 2% 5px 0;
  }

  .wdys .wdys_fc ul li:nth-child(3n) {
    margin-right: 2%;
  }

  .wdys .wdys_fc ul li:nth-child(2n) {
    margin-right: 0;
  }

  .wdys .wdys_fb {
    padding: 15px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h3 {
    font-size: 50px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-left: 5px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblc {
    font-size: 24px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblb {
    font-size: 14px;
  }
}

@media (max-width: 468px) {
  .wdys .wdys_ft h3 {
    font-size: 26px;
  }

  .wdys .wdys_ft h4 {
    font-size: 12px;
  }

  .wdys .wdys_fc {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .wdys .wdys_fc ul li {
    padding: 10px 0;
  }

  .wdys .wdys_fb {
    padding: 15px 2%;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h3 {
    font-size: 35px;
    font-weight: bold;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblt h4 {
    font-size: 18px;
    margin-top: 8px;
    padding-bottom: 8px;
  }

  .wdys .wdys_fb .wdys_fbl .wdys_fblc {
    font-size: 20px;
  }
}

.wdys .wdys_fbw {
  position: relative;
}
.wdys .wdys_fb {
  transform: translateX(100%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.85s;
}
.wdys .wdys_fb.cur1 {
  transform: translateX(0);
}
.wdys .wdys_fc ul li.cur .flimg .img2 {
  display: inline;
}
.wdys .wdys_fc ul li.cur .flimg .img1 {
  display: none;
}
.wdys .wdys_fc ul li.cur {
  background-color: #d81519;
}
.wdys .wdys_fc ul li.cur .flwz h3 {
  color: #fff;
}
.wdys .wdys_fc ul li.cur .flwz h4 {
  color: #fff;
}

/*other*/
.banner {
  width: 100%;
}

.banner img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/*sidebar*/
.sidebar {
  width: 312px;
  margin: 32px 0 0 20px;
}

.sidebar .channels {
  width: 100%;
  background-color: var(--common-background-color);
}

.sidebar .channels .cn {
  margin-top: 7px;
  height: 32px;
  font-size: 22px;
  color: #fff;
}

.sidebar .channels .en {
  height: 48px;
  font-size: 22px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  padding-bottom: 25px;
}

.sidebar .channels ul {
  padding: 20px 0;
  background-color: #f0f5f5;
}

.sidebar .channels ul li a {
  width: 100%;
  height: 44px;
  border-bottom: 1px solid #ededed;
  font-size: 17px;
  color: var(--common-background-color);
}

.sidebar .channels ul li a:hover,
.sidebar .channels ul li a.active {
  font-weight: bold;
}

.sidebar .contact {
  margin-top: 48px;
}

.sidebar .contact .cn {
  height: 27px;
  font-size: 20px;
  color: #22a6b5;
}

.sidebar .contact .en {
  height: 26px;
  font-size: 24px;
  color: #ccc;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.sidebar .contact h4 {
  margin-top: 15px;
  height: 25px;
  font-size: 14px;
  color: #000;
}

.sidebar .contact .tel {
  height: 40px;
  border-bottom: 1px dashed #d3d3d3;
  font-size: 24px;
  color: #a69312;
  padding-left: 38px;
  background: url(../images/icon/sidebarPhone.png) no-repeat left center;
}

.sidebar .contact .address {
  height: 57px;
  border-bottom: 1px dashed #d3d3d3;
  padding-left: 33px;
  font-size: 17px;
  color: #000;
  background: url(../images//icon/sidebarAddress.png) no-repeat left center;
}

.sidebar .contact .email {
  height: 57px;
  border-bottom: 1px dashed #d3d3d3;
  padding-left: 33px;
  font-size: 17px;
  color: #000;
  background: url(../images//icon/sidebarEmail.png) no-repeat left center;
}

/*main*/
main {
  padding: 0 0 50px 0;
}

.mains .r {
  flex: 1;
  margin-left: 36px;
  position: relative;
  z-index: 0;
}

.bannerSwiper {
  padding-top: 25px;
}

.bannerSwiper .l {
  width: 957px;
}

.bannerSwiper .l article {
  line-height: 61px;
  padding-left: 27px;
  font-size: 18px;
  color: #333;
}

.bannerSwiper .l .swiperWrapper {
  width: 100%;
  padding: 20px 20px 28px 20px;
  background-color: #fff;
  position: relative;
  height: 612px;
}

.bannerSwiper .l .swiperWrapper #swiper {
  position: static;
}

.bannerSwiper .l .swiperWrapper .swiper-pagination {
  bottom: inherit;
  top: 612px;
  left: inherit;
  right: 16px;
  text-align: right;
  height: 8px;
}

.bannerSwiper .l .swiperWrapper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--common-background-color);
  margin: 0 5px;
  width: 8px;
  height: 8px;
}

.bannerSwiper
  .l
  .swiperWrapper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #009dc1 !important;
}

.bannerSwiper .r {
  width: 275px;
}

.bannerSwiper .r .phone {
  padding-left: 52px;
  background: url(../images/icon/headerPhone.png) no-repeat left center;
  margin-left: 9px;
}

.bannerSwiper .r .phone h4 {
  line-height: 20px;
  font-size: 14px;
  color: #000;
}

.bannerSwiper .r .phone h2 {
  line-height: 120%;
  font-weight: bold;
  font-size: 20px;
  color: #666;
}

.bannerSwiper .r .search {
  margin: 19px 15px 0 16px;
}

.bannerSwiper .r .search .input {
  width: 191px;
  height: 35px;
  border: 2px solid var(--common-background-color);
  background: #fff;
  padding: 0 9px;
  font-size: 14px;
}

.bannerSwiper .r .search button {
  width: 52px;
  height: 35px;
  background: #ec6e94;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
}

.bannerSwiper .r .quickBar {
  margin-top: 30px;
}

.bannerSwiper .r .quickBar::after {
  content: "";
  display: block;
  width: 243px;
  height: 530px;
  background-color: var(--common-background-color);
  position: absolute;
  z-index: -1;
  left: 16px;
  top: 0;
}

.bannerSwiper .r .quickBar .title {
  height: 120px;
  padding-top: 30px;
  padding-bottom: 15px;
  background: url(../images/icon/bannerBlock.png) no-repeat;
}

.bannerSwiper .r .quickBar .title span {
  font-size: 28px;
  color: #fff;
}

.bannerSwiper .r .quickBar .img {
  margin-right: 16px;
}

.bannerSwiper .r .list {
  margin-top: 32px;
  width: 243px;
  margin-left: 16px;
}

.bannerSwiper .r .list li a {
  width: 100%;
  height: 63px;
  background: linear-gradient(to bottom, #ec6890, #d71418);
  font-size: 18px;
  color: #fff;
  padding-left: 40px;
}

.bannerSwiper .r .list li a .pic {
  width: 35px;
  margin-right: 15px;
  text-align: center;
}

.bannerSwiper .r .list li a:hover {
  background: #c8023e;
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
  color: #fff !important;
}

.bannerSwiper .swiper-button-prev {
  left: 30px;
}

.bannerSwiper .swiper-button-next {
  right: 30px;
}

main .typename {
  margin-top: 19px;
  height: 58px;
  border-bottom: 1px solid #d8d8d8;
}

main .typename h1 {
  font-size: 20px;
  color: var(--common-background-color);
  padding-left: 31px;
  background: url(../images/icon/arrow-right.jpg) no-repeat left center;
}

main .typename .pos {
  padding-left: 30px;
  font-size: 14px;
  color: #555;
  background: url(../images/icon/position.jpg) no-repeat left center;
  background-size: auto 20px;
}

main .typename2 {
  width: 100%;
  line-height: 60px;
  background-color: #227dff;
  padding: 0 22px;
  font-size: 16px;
  color: #fff;
  margin-top: 26px;
}

main .typename .pos a {
  color: #555;
}

main .typename .pos a:hover {
  color: var(--common-background-color);
}

.detail {
  background-color: #fff;
  padding: 35px 0;
}

.introduction {
  padding: 24px 0;
  text-align: justify;
  line-height: var(--common-p-line-height);
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction.nmt {
  margin-top: 0;
}

.introduction div,
.introduction p {
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction img {
  max-width: 100%;
}

.articleImg {
  width: 100%;
  margin: 0 0 0 0;
  text-align: center;
}

.articleImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.articleImg2 {
  width: 100%;
  margin: 0 0 22px 0;
  text-align: center;
}

.articleImg2 img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.articleBody {
  width: 400px;
  margin: 20px 0;
}

.articleTitle {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: 20px;
  color: var(--common-p-color);
  margin-bottom: 8px;
}

.articleTitle2 {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: var(--common-font-size);
  color: var(--common-background-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.articlePhoto {
  margin-top: 18px;
  margin-bottom: 16px;
}

.articleTime {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 21px;
  font-size: 16px;
  color: #636666;
  padding-bottom: 22px;
  border-bottom: 1px solid #ddd;
}

.articleDes {
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #42403f;
}

.articlePages {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed #969797;
}

.articlePages div {
  width: 50%;
  font-size: 16px;
  color: #666;
}

/*联系我们*/
.contactus {
  margin: 21px 14px;
}

.contactus .pic {
  margin-top: 15px;
}

.contactus .pic,
.contactus .pic img {
  width: 97px;
}

.contactus article {
  margin-left: 33px;
  flex: 1;
}

.contactus article .intro {
  line-height: 180%;
  font-size: 14px;
  color: #000;
}

.contactus article .phone {
  padding-left: 48px;
  background: url(../images/icon/contactPhone.png) no-repeat left center;
  margin-bottom: 15px;
}

.contactus article .phone h4 {
  line-height: 20px;
  font-size: 14px;
  color: #000;
}

.contactus article .phone h2 {
  line-height: 120%;
  font-weight: bold;
  font-size: 21px;
  color: #000;
}

/*新闻列表*/
.newslist {
}

.newslist li {
}

.newslist li a {
  width: 100%;
  height: 45px;
  border-bottom: 1px solid #e2e2e2;
}

.newslist li a .title {
  font-size: 16px;
  color: #000;
}

.newslist li a .title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--common-background-color);
  border-radius: 50%;
  margin-right: 15px;
}

.newslist li a .time {
  font-size: 15px;
  color: #666;
}

.newslist li a:hover * {
  color: var(--common-background-color);
}

/*图片文字列表*/
.picstextlist {
  width: 100%;
  background-color: #fff;
  padding: 47px 43px;
}

.picstextlist a {
  padding: 25px;
  border: 1px solid #eee;
}

.picstextlist li:last-child a {
  margin-bottom: 0;
}

.picstextlist .img {
  width: 218px;
}

.picstextlist img {
  width: 218px;
}

.picstextlist article {
  width: 500px;
  width: calc(100% - 246px);
}

.picstextlist .title {
  line-height: 28px;
  font-size: 20px;
  color: #000;
  margin-top: 10px;
}

.picstextlist .time {
  margin: 6px 0;
  line-height: 33px;
  font-size: 18px;
  color: #c8c8c8;
}

.picstextlist .time i {
  margin-right: 8px;
}

.picstextlist .des {
  margin-top: 20px;
  line-height: 25px;
  font-size: 17px;
  color: #636363;
}

.picstextlist .more {
  margin-top: 20px;
  width: 150px;
  height: 40px;
  border: 1px solid #d4d4d4;
  font-size: var(--common-font-color);
  color: #212121;
}

.picstextlist a:hover .more {
  background-color: var(--common-background-hover-color);
  border-color: var(--common-background-hover-color);
  color: #fff;
}

.picstextlist .ly:hover {
  background: #1279ba;
}

/*图片列表*/
.picslist {
  background-color: #fff;
  padding: 34px 0;
}

.picslist li {
  width: 244px;
  width: calc((100% - 100px) / 3);
  margin: 0 50px 50px 0;
}

.picslist li:nth-child(3n) {
  margin-right: 0;
}

.picslist .img {
  width: 100%;
  border: 1px solid #949292;
  padding: 3px;
  overflow: hidden;
}

.picslist img {
  width: 100%;
}

.picslist .title {
  width: 100%;
  margin-top: 10px;
  line-height: 160%;
  color: var(--common-background-color);
  font-size: 14px;
  text-align: center;
}

.picslist a:hover .title {
  color: var(--common-background-color);
}

/*团队列表*/
.teamlist {
  padding: 35px 4px;
}

.teamlist li {
  width: 204px;
  width: calc((100% - 107px * 2) / 3);
  margin: 0 107px 31px 0;
}

.teamlist li:nth-child(3n) {
  margin-right: 0;
}

.teamlist li a {
}

.teamlist li .img,
.teamlist li img {
  width: 92px;
}

.teamlist li article {
  flex: 1;
  margin-left: 25px;
}

.teamlist li .title {
  line-height: 30px;
  font-size: 25px;
  color: #666;
}

.teamlist li .des {
  margin: 8px 0 15px 0;
  line-height: 150%;
  font-size: 16px;
  color: #000;
}

.teamlist li .details {
  width: 83px;
  height: 31px;
  background: url(../images/icon/arrowRight.png) no-repeat 61px center #948b8e;
  border-radius: 12px;
  padding-left: 17px;
  font-size: 20px;
  color: #fff;
}

.teamDetail {
  margin: 34px 0 0;
}

.teamDetail .img,
.teamDetail .img img {
  width: 301px;
}

.teamDetail article {
  flex: 1;
  margin-left: 47px;
}

.teamDetail article .name {
  line-height: 38px;
  font-size: 26px;
  color: #d71418;
  padding-bottom: 15px;
  border-bottom: 2px dashed #ccc;
}

.teamDetail article .des {
  margin-top: 9px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ccc;
}

.teamDetail article .des li {
  padding-left: 27px;
  line-height: 33px;
  font-size: 17px;
  color: #2d2d2d;
  background: url(../images/icon/star2.png) no-repeat left center;
}

.teamDetail article .intro {
  padding: 16px 2px;
  line-height: 180%;
  font-size: 16px;
  color: #2d2d2d;
}

.teamDetail article .intro h2 {
  line-height: 31px;
  font-size: 17px;
  color: var(--common-background-color);
  margin-bottom: 15px;
}

.openHtml {
  overflow: hidden;
  width: 798px;
  height: 533px;
  background-color: #fff;
}

.openHtml .h1 {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 46px;
  border-bottom: 1px solid #eee;
  line-height: 46px;
  text-indent: 25px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .close {
  position: absolute;
  z-index: 999;
  top: 14px;
  right: 17px;
  display: block;
  width: 13px;
  height: 11px;
  background: url(../images/close.gif) no-repeat;
}

.openHtml .htmlContent {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 753px;
  height: 420px;
  padding: 10px 0 0 25px;
  padding-right: 10px;
  border-bottom: 1px solid #ddd;
  line-height: 28px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .closeBlock {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 54px;
  margin-top: 1px;
  background-color: #f5f5f5;
}

.openHtml .close2 {
  position: absolute;
  z-index: 999;
  top: 13px;
  left: 15px;
  display: block;
  width: 82px;
  height: 30px;
  background: #2384ef;
  background: linear-gradient(to bottom, #0080eb, #0565b2);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #fff;
}

.floatMenu {
  position: fixed;
  z-index: 99999;
  width: 226px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #0bafff, #0bafff);
  padding: 0 11px 9px 11px;
  border-radius: 10px;
}

.floatMenu .ask {
  width: 100%;
  height: 99px;
  background: url(../images/service.png) no-repeat;
  margin-top: -29px;
}

.floatMenu ul {
}

.floatMenu ul li {
  width: 100%;
  margin-bottom: 3px;
}

.floatMenu ul li a {
  width: 100%;
  height: 46px;
  background-color: #fff;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

.floatMenu ul li a:hover {
  background-color: var(--common-background-color);
  color: #fff;
}

/*分页*/
.pages {
  padding: 20px 0 15px 0;
  text-align: right;
}

.pages li {
  display: inline;
}

.pages li.active a {
  background-color: red;
}

.pages a,
.pages em {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  background: var(--common-color);
  border: 1px solid #fff;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span.disabled {
  background: var(--common-color);
  color: #fff;
}

.pages em {
  background: var(--common-color);
  color: #fff;
  font-style: normal;
}

/*在线留言*/
.guestbook {
  margin-top: 40px;
}

.guestbook h2 {
  height: 32px;
  font-size: 20px;
  color: #000;
}

.guestbook ul {
  margin-top: 14px;
}

.guestbook li {
  margin-bottom: 14px;
}

.guestbook .title {
  width: 200px;
  margin-left: 50px;
  height: 26px;
  font-size: 15px;
  color: #696969;
}

.guestbook .wbk {
  box-sizing: border-box;
  width: 517px;
  height: 36px;
  background: #fff;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 0 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wby {
  box-sizing: border-box;
  width: 516px;
  height: 189px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wbk:focus {
  border-color: #04654d;
}

.guestbook button {
  box-sizing: border-box;
  width: 72px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  background: var(--common-background-color);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  font-family: 微软雅黑;
  margin-left: 400px;
  border-radius: 4px;
}

/*home*/
.home {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg/home.jpg?1.1) no-repeat;
  background-size: 100% 100%;
}

.home .logo {
  height: 44vh;
  animation: fadeInUp 1s;
}

.home .logo img {
  height: 100%;
}

.home .font {
  height: 6.49vh;
  animation: fadeInUp 1s;
}

.home .font img {
  height: 100%;
}

.home .enter {
  width: 22.8vh;
  height: 6.4vh;
  border: 2px solid #fff;
  border-radius: 32px;
  font-size: 2.2vh;
  color: #fff;
  margin-top: 5vh;
  animation: fadeInUp 1s;
}

.home article {
  animation: fadeInUp 1s;
  line-height: 140%;
  font-size: 2vh;
  color: #fff;
  margin-top: 5vh;
}

.home article .sydw img {
  max-height: 8vh;
  margin-top: 1vh;
}

.home article .phone {
  font-size: 3vh;
  color: #fff;
  margin-bottom: 10px;
}

.home article .phone i {
  margin-right: 5px;
}

.layer-wrap {
  padding: 20px;
}

.layer-input {
  flex: 1;
  height: 40px;
  background: none;
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 0 10px;
  transition: all 0.5s;
}

.layer-input:focus {
  border-color: var(--common-background-color);
  transition: all 0.5s;
}

.layer-button {
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  background: var(--common-background-color);
  color: #fff;
  font-size: 14px;
  border: 0;
}

.showM {
  display: none;
}

.navMask {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.newSubmit {
  margin-left: 324px;
}
/*表单（新）*/
.newForm {
  margin-top: 40px;
  margin-bottom: 10px;
}

.custom-label-width label {
  width: 180px !important;
}

.custom-label-width .el-form-item__content {
  margin-left: 190px !important;
}

.newForm .notice {
  margin: 0 0 35px 0;
  color: #ccc;
  padding: 0 20px;
}

.newForm * {
  font-size: 15px !important;
}

.newForm .radio-group label {
  line-height: 30px;
}

.newForm .el-form-item__error {
  font-size: 12px !important;
}

.newForm .el-form-item {
	margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  :root {
    --common-page-width: 100%;
    --nav-height: 40px;
    --common-font-size: 0.24rem;
    --common-p-size: 0.24rem;
  }

  .showM {
    display: block;
  }

  .showPc {
    display: none;
  }

  .wrapper {
    width: 100%;
  }

  nav {
    width: 50%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    animation: none;
  }

  nav.active {
    animation: none;
    box-shadow: none;
  }

  nav.show {
    transform: translateX(0);
    animation: none;
  }

  nav .dl {
    position: static;
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav li .a::before {
    display: none;
  }

  nav dt a {
    border: 0;
    padding: 0.1rem 0;
  }

  header .user {
    position: static;
    padding: 4vw;
  }

  header .user .wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  header .user .wrapper .bars {
    height: 0.5rem;
    margin-left: 0.2rem;
  }

  header .user .wrapper .bars i {
    font-size: 0.5rem;
    color: #333;
  }

  header .search {
    background-color: #ccc;
    margin-right: 0;
    margin-left: 0.4rem;
    width: auto;
  }

  header .user a {
    color: #333 !important;
  }

  .navMask.active {
    display: block;
  }

  .index1 {
    margin-top: 4vw;
    padding: 0 2vw;
    flex-direction: column;
  }

  .index1 .l,
  .index1 .hotSwiper,
  .index1 .hotSwiper .swiper-slide {
    width: 100%;
    height: auto;
  }

  .index1 .r {
    width: 100%;
    margin-top: 0.4rem;
  }

  .itabs {
    height: 0.6rem;
  }

  .itabs li {
    display: inline-block;
    width: auto;
    padding: 0 0.2rem;
    font-size: 0.26rem;
    height: 0.6rem;
    line-height: 0.6rem;
  }

  .newslist li a .title,
  .newslist li a .time,
  .wdys .wdys_fc ul li .flwz h4,
  footer .flinks {
    font-size: 0.24rem;
  }

  .wdys {
    padding: 0.4rem;
    margin-top: 0.4rem;
    overflow: hidden;
  }

  .wdys .wdys_ft h3 {
    font-size: 0.36rem;
  }

  .wdys .wdys_ft h4 {
    font-size: 0.24rem;
  }

  .wdys .wdys_fc ul li .flwz h3 {
    font-size: 0.26rem;
  }

  .max1400 {
    padding: 0;
  }

  .index3 {
    margin-top: 0;
    padding: 0 2%;
  }

  .newslist li a .title {
    display: block;
    width: 80%;
    overflow: hidden;
    line-height: 0.4rem;
    height: 0.4rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0.2rem;
  }

  .newslist li a .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  footer {
    padding-top: 0.2rem;
  }

  main {
    padding-bottom: 0.5rem;
  }

  footer .flinks {
    padding: 2vw;
  }

  .positions {
    padding: 0 2vw;
  }

  main .typename {
    height: 0.6rem;
    font-size: 0.28rem;
  }

  .newslist {
    padding: 0 2%;
  }

  main .typename {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
  }

  main .typename h1 {
    font-size: 0.26rem;
  }

  .mains .r {
    margin-left: 0;
    padding: 0 2%;
  }

  .articleTitle {
    font-size: 0.3rem;
  }

  .form-group {
    margin-bottom: 0.4rem;
  }

  .input-group {
    width: 100% !important;
    height: 0.6rem;
    overflow: hidden;
    display: flex;
  }

  .input-group-addon {
    font-size: 0.3rem;
    padding: 0.2rem;
    height: 0.6rem;
    border-radius: 0.1rem;
    overflow: hidden;
    line-height: 0.6rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-control {
    height: 0.6rem;
    padding: 0 0.2rem;
    font-size: 0.24rem;
    border-radius: 0.1rem;
  }

  .btn {
    line-height: 0.6rem;
    padding: 0 0.2rem;
    font-size: 0.28rem !important;
  }

  .index1 .hotSwiper .swiper-slide .pa {
    flex-direction: column;
    height: auto;
    line-height: 150%;
    padding: 0.2rem;
  }

  .index1 .hotSwiper .swiper-slide .pa .title,
  .index1 .hotSwiper .swiper-slide .pa .addtime {
    width: 100%;
    display: block;
    height: auto;
    line-height: 150%;
  }

  .newSubmit {
    margin-left: 0;
    justify-content: center;
  }
}


.wdys_fbw .c .l {
  width: 626px;
  flex-grow: 0;
  flex-shrink: 0;
}

.wdys_fbw .c .l .title {
  height: 64px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 63px;
}

.wdys_fbw .c .l .title b {
  font-family: Impact;
  font-size: 3rem;
  color: #d81519;
}

.wdys_fbw .c .l .title span {
  margin-left: 21px;
  font-size: 32px;
  color: #d81519;
}

.wdys_fbw .c .list {
  margin-top: 42px;
}

.wdys_fbw .c.c2 .list {
  margin-top: 13px;
}

.wdys_fbw .c .list li {
  width: 303px;
  height: 118px;
  margin-bottom: 42px;
  position: relative;
  overflow: hidden;
}

.wdys_fbw .c.c2 .list li {
  margin-bottom: 9px;
}

.wdys_fbw .c .list li:nth-child(odd) {
  margin-right: 20px;
}

.wdys_fbw .c .list li .pic {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 303px;
  height: 118px;
}

.wdys_fbw .c .list li::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 303px;
  height: 118px;
  background-color: rgba(0, 102, 204, .84);
}

.wdys_fbw .c .list li article {
  width: 303px;
  height: 118px;
}

.wdys_fbw .c .list li:hover::before {
  background-color: rgba(216, 21, 25, .84);
}

.wdys_fbw .c .list li h2 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-left: 12px;
}

.wdys_fbw .c .r, .wdys_fbw .c .r img {
  width: 642px;
}

.list-search {
  margin: 0 auto;
  margin-top: 40px;
  width: 745px;
  height: 63px;
  background-color: #d71418;
}

.list-search .input {
  width: 667px;
  height: 61px;
  margin: 1px 0 1px 1px;
  padding: 0 55px;
  background: url(../images/icon/search.jpg) no-repeat 15px center #fff;
  border: 0;
  font-size: 18px;
}

.list-search button {
  width: 77px;
  height: 63px;
  font-size: 18px;
  background: none;
  border: 0;
  color: #fff;
}

.list-search i {
  right: 5px;
  top: 5px;
  font-size: 20px;
  font-weight: normal;
}

.tips {
  margin-top: 45px;
}

.new-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 5px;
  border-bottom: 1px solid #f3f3f3;
}

.new-table th {
  background-color: #1d6ed9;
  height: 74px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.new-table td {
  padding: 5px 0;
  height: 74px;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.new-table tr td:first-child {
  border-left: 1px solid #f3f3f3;
}

.new-table tr td:last-child {
  border-right: 1px solid #f3f3f3;
}

.new-table tr.tr:nth-child(odd) {
  background-color: #fafafa;
}

.new-table td a.blue {
  color: #307cff;
}

.new-table a.apply-link {
  background-color: #d71418;
  border-radius: 18px;
  line-height: 36px;
  font-size: 16px;
  color: #fff;
  padding: 0 23px;
}

.fxsc-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 35px;
  border-bottom: 1px solid #f3f3f3;
}

.fxsc-table th {
  background-color: #1d6ed9;
  height: 74px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.fxsc-table td {
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
  border: 1px solid #333;
}

.fxsc-table td.th {
  font-weight: 600;
  color: #000;
}

.fxsc-table td.th.yellow {
  background-color: #fdc100;
}

.fxsc-table td.th.blue {
  background-color: #01b0f1;
}

.apply {
  z-index: 999999 !important;
}

.apply .el-dialog__header {
  border-bottom: 1px solid #ccc;
}

.apply .el-dialog__body {
  padding: 10px 20px;
}

.apply dt {
  display: inline-block;
  line-height: 35px;
  border-bottom: 4px solid #d11514;
  padding: 0 6px;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.apply dl.info dd {
  line-height: 180%;
  font-size: 16px;
}

.apply dl dd.contacts {
  text-align: center;
  line-height: 180%;
  font-size: 21px;
  margin-bottom: 20px;
  color: #fb0000;
}

.apply .submit {
  margin-bottom: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .wdys_fbw .c {
    flex-direction: column;
  }

  .wdys_fbw .c .l, .wdys_fbw .c .r, .wdys_fbw .c .r img {
    width: 100%;
  }

  .wdys_fbw .c .l {
    margin-top: 0;
  }

  .wdys_fbw .c .l .title {
    height: 45px;
    line-height: 44px;
  }

  .wdys_fbw .c .l .title b {
    font-size: 18px;
  }

  .wdys_fbw .c .l .title span {
    font-size: 16px;
  }

  .wdys_fbw .c .list {
    margin-top: 20px;
    justify-content: space-between;
  }

  .wdys_fbw .c .list li {
    width: 42vw;
    height: 16vw;
    margin-bottom: 2vw;
  }

  .wdys_fbw .c .list li:nth-child(odd) {
    margin-right: 0;
  }

  .wdys_fbw .c .list li .pic, .wdys_fbw .c .list li .pic img, .wdys_fbw .c .list li article {
    width: 42vw;
    height: 16vw;
  }

  .wdys_fbw .c .list li h2 {
    font-size: 14px;
    line-height: 140%;
  }
  
  .wdys_fbw .c .list li article img {
    max-height: 5vw;
  }

  .max1300 {
    padding: 0;
  }

  .list-search {
    width: 100%;
    height: 45px;
  }

  .list-search .list-search-wrap {
    flex-grow: 0;
    flex-wrap: 0;
    flex: 1;
  }

  .list-search .input {
    width: 100%;
    height: 43px;
    font-size: 14px;
  }

  .new-table {
    width: auto;
  }
}