@-webkit-keyframes enlarge {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes enlarge {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes textAnimation {
  0% {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes textAnimation {
  0% {
    -webkit-transform: translateX(250px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1;
  }
}

body {
  background: rgba(247, 247, 247, 0.96);
}

.header {
  position: relative;
  height: 56vw;
}

.header .bg-video {
  position: absolute;
  -o-object-fit: fill;
     object-fit: fill;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.site-info {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.site-info .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 60px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 700;
  color: #ffffff;
}

.site-info .content .motto-title {
  font-family: PingFangSC, PingFangSC-Regular;
  color: #eeeeee;
  font-size: 30px;
  -webkit-animation: textAnimation 1s ease 1;
          animation: textAnimation 1s ease 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-bottom: 16px;
}

.site-info .content .motto-text-one {
  -webkit-animation: textAnimation 1.5s ease 1;
          animation: textAnimation 1.5s ease 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-bottom: 16px;
}

.site-info .content .motto-text-two {
  -webkit-animation: textAnimation 2s ease 1;
          animation: textAnimation 2s ease 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-bottom: 16px;
}

.site-info .content .motto-text-three {
  -webkit-animation: textAnimation 2.5s ease 1;
          animation: textAnimation 2.5s ease 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-bottom: 16px;
}

.main-one {
  background: #fff;
}

.main-one > .main {
  background-image: url("/static/img/area.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 114px;
}

.main-one > .main .content {
  text-align: center;
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #333333;
  line-height: 30px;
}

.main-one > .main .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0;
}

.main-one > .main .main .main-item {
  margin: 0 70px;
}

.main-one > .main .main .main-item .number {
  font-family: PingFangSC, PingFangSC-Medium;
  color: #333333;
  font-size: 84px;
}

.main-one > .main .main .main-item .number span {
  vertical-align: baseline;
  display: inline-block;
  text-align: right;
}

.main-one > .main .main .main-item .number .unit {
  font-size: 16px;
}

.main-one > .main .main .main-item.main-year .number span {
  width: 90px;
}

.main-one > .main .main .main-item.main-num .number span {
  width: 180px;
}

.main-one > .main .main .main-item.main-weight .number span {
  width: 225px;
}

.main-one > .main .more {
  width: 101px;
  height: 36px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #297bff;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #297bff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.main-two {
  background: #f8f8f8;
  padding-bottom: 70px;
}

.main-two .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-two .content .content-item {
  position: relative;
  overflow: hidden;
  height: 355px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333333;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-two .content .content-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-two .content .content-item > img.small {
  display: block;
}

.main-two .content .content-item > img.big {
  display: none;
}

.main-two .content .content-item .content-item-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
}

.main-two .content .content-item .content-item-center .item-title {
  font-size: 24px;
  line-height: 33px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: bold;
}

.main-two .content .content-item .content-item-center .item-tip {
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Regular;
  line-height: 20px;
  margin-top: 20px;
  display: block;
  position: relative;
}

.main-two .content .content-item .content-item-center .item-tip::after {
  content: "";
  width: 28px;
  height: 4px;
  background: #297bff;
  position: absolute;
  left: 0;
  top: -10px;
}

.main-two .content .content-item .content-item-center .item-content {
  display: none;
  margin-top: 24px;
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: justify;
  color: #ffffff;
  line-height: 20px;
}

.main-two .content .content-item.active {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.main-two .content .content-item.active > img.small {
  display: none;
}

.main-two .content .content-item.active > img.big {
  display: block;
}

.main-two .content .content-item.active .content-item-center {
  background: rgba(41, 115, 255, 0.9);
}

.main-two .content .content-item.active .content-item-center .item-title {
  color: #ffffff;
}

.main-two .content .content-item.active .content-item-center .item-tip {
  display: none;
}

.main-two .content .content-item.active .content-item-center .item-content {
  display: block;
  color: #fff;
  width: 440px;
}

.main-three {
  padding-bottom: 70px;
}

.main-three .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-three .content > .content-item {
  display: block;
  border: 6px solid #fff;
  height: 392px;
  width: 33%;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.main-three .content > .content-item > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-three .content > .content-item > .content-item-center {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.main-three .content > .content-item > .content-item-center > .item-title {
  font-size: 26px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: bold;
  line-height: 26px;
}

.main-three .content > .content-item > .content-item-center > .item-content {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  margin-top: 16px;
}

.main-three .content > .content-item > .content-item-center > .more {
  -webkit-transition: -webkit-transform ease-in-out 0.4s;
  transition: -webkit-transform ease-in-out 0.4s;
  transition: transform ease-in-out 0.4s;
  transition: transform ease-in-out 0.4s, -webkit-transform ease-in-out 0.4s;
  background: #297bff;
  font-family: PingFangSC, PingFangSC-Regular;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  width: 101px;
  height: 36px;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.main-three .content > .content-item > .content-item-center > .more a {
  color: #fff;
}

.main-three .content > .content-item.three {
  width: 66%;
}

.main-three .content > .content-item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.main-three .content > .content-item:hover .content-item-center {
  background: rgba(0, 0, 0, 0.4);
}

.main-three .content > .content-item:hover .content-item-center .item-content {
  margin-bottom: 16px;
}

.main-three .content > .content-item:hover .content-item-center > .more {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.main-three .content > .content-item:hover .content-item-center > .more:hover {
  background: #68a2ff;
}

.main-three .content > .content-more {
  margin: 6px;
  height: 392px;
  width: calc(66% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-three .content > .content-more > .img {
  width: 66px;
  height: 66px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  color: #297bff;
}

.main-three .content > .content-more > .img > i {
  font-size: 55px;
}

.main-three .content > .content-more > .item-more {
  margin-top: 20px;
  font-size: 20px;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #297bff;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-three .content > .content-more:hover {
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
}

.main-three .content > .content-more:hover > .img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.main-three .content > .content-more:hover > .item-more {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.main-four {
  padding-bottom: 70px;
  height: 595px;
  background: url("/static/img/main-four-bg.jpg");
  background-size: 100% 100%;
}

.main-four .main-panel-title h1 {
  color: #fff;
}

.main-four .content {
  background: rgba(0, 0, 0, 0.5);
  height: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-four .content .left-tab {
  width: 215px;
  min-width: 215px;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.main-four .content .left-tab > li {
  text-align: center;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
  height: 86px;
  line-height: 86px;
  cursor: pointer;
  position: relative;
}

.main-four .content .left-tab > li::after {
  content: "";
  height: 0;
  width: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-four .content .left-tab > li.active::after {
  height: 16px;
  background: #297bff;
}

.main-four .content .panels {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 40px;
}

.main-four .content .panels .right-content {
  width: 890px;
  height: 345px;
  padding: 60px 0;
  display: none;
  overflow: hidden;
  position: relative;
}

.main-four .content .panels .right-content .swiper-slide > img {
  width: 225px;
  height: 225px;
  float: left;
}

.main-four .content .panels .right-content .swiper-slide .main {
  margin-left: 250px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: justify;
  color: #ffffff;
  line-height: 25px;
  height: 225px;
}

.main-four .content .panels .right-content .swiper-wrapper-group {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.main-four .content .panels .right-content .swiper-wrapper-group .swiper-wrapper-target {
  display: inline-block;
  width: 42px;
  height: 6px;
  background: #f3f3f3;
  margin: 0 13px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.main-four .content .panels .right-content .swiper-wrapper-group .swiper-wrapper-target:hover {
  background: #297bff;
}

.main-four .content .panels .right-content .swiper-wrapper-group .swiper-wrapper-target.active {
  background: #297bff;
}

.main-four .content .panels .right-content.panel-one {
  display: block;
}

.main-five {
  padding-bottom: 70px;
  background: #fff;
  opacity: 1;
}

.main-five .content {
  -webkit-box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 417px;
  position: relative;
}

.main-five .content > .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 34px 25px 34px;
}

.main-five .content > .swiper-wrapper .swiper-slide > .img {
  width: 271px;
  height: 150px;
  margin: 0 6px 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-five .content > .swiper-wrapper .swiper-slide > .img > img {
  max-height: 80%;
  max-width: 80%;
}

.main-five .content .swiper-wrapper-group {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.main-five .content .swiper-wrapper-group .swiper-wrapper-target {
  display: inline-block;
  width: 42px;
  height: 6px;
  background: #c3c3c3;
  margin: 0 13px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.main-five .content .swiper-wrapper-group .swiper-wrapper-target:hover {
  background: #297bff;
}

.main-five .content .swiper-wrapper-group .swiper-wrapper-target.active {
  background: #297bff;
}

.main-six {
  background: #f8f8f8;
  padding-bottom: 70px;
}

.main-six .content {
  overflow: hidden;
}

.main-six .content .content-tab {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: baqpx solid rgba(255, 87, 51, 0.7);
}

.main-six .content .content-tab .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: center;
  color: #333333;
  line-height: 16px;
  cursor: pointer;
  position: relative;
}

.main-six .content .content-tab .tab::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -16px;
  border-bottom: 1px solid #297bff;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.main-six .content .content-tab .tab.active {
  color: #297bff;
}

.main-six .content .content-tab .tab.active::after {
  left: 30%;
  right: 30%;
}

.main-six .content .content-tab .tab:hover {
  color: #297bff;
}

.main-six .content .content-tab .tab:hover::after {
  left: 40%;
  right: 40%;
}

.main-six .content .content-panels {
  height: 291px;
  margin-top: 40px;
}

.main-six .content .content-panels .panel {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.main-six .content .content-panels .panel > .left {
  width: 493px;
  min-width: 493px;
  height: 100%;
  overflow: hidden;
  float: left;
}

.main-six .content .content-panels .panel > .left > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.main-six .content .content-panels .panel > .left > a img {
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.main-six .content .content-panels .panel > .left > a .left-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 42px;
  padding: 0 16px;
}

.main-six .content .content-panels .panel .left:hover > a {
  color: #68a2ff;
}

.main-six .content .content-panels .panel .left:hover > a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.main-six .content .content-panels .panel > .main {
  overflow: hidden;
  margin-left: 500px;
}

.main-six .content .content-panels .panel > .main .list {
  width: 100%;
}

.main-six .content .content-panels .panel > .main .list a {
  width: 100%;
  height: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
}

.main-six .content .content-panels .panel > .main .list a .left {
  width: 92px;
  min-width: 92px;
}

.main-six .content .content-panels .panel > .main .list a .left .year {
  font-size: 20px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
}

.main-six .content .content-panels .panel > .main .list a .left .other {
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Medium;
  text-align: center;
  line-height: 10px;
}

.main-six .content .content-panels .panel > .main .list a .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.main-six .content .content-panels .panel > .main .list a .right .title {
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: bold;
  color: #333333;
  line-height: 14px;
}

.main-six .content .content-panels .panel > .main .list a .right .brif {
  width: 100%;
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Regular;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 14px;
}

.main-six .content .content-panels .panel > .main .list a:hover {
  color: #297bff;
}

.main-six .content .content-panels .panel > .main .list a:hover .right .title {
  color: #297bff;
}

.main-six .content .content-panels .panel > .main .more-row {
  text-align: right;
}

.main-six .content .content-panels .panel > .main .more-row > .more {
  display: inline-block;
  width: 101px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #999999;
  text-align: center;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #999999;
  border-radius: 4px;
}

.main-six .content .content-panels .panel > .main .more-row > .more a {
  color: #999999;
}

.main-six .content .content-panels .panel > .main .more-row > .more:hover {
  border-color: #297bff;
}

.main-six .content .content-panels .panel > .main .more-row > .more:hover a {
  color: #297bff;
}

.main-six .content .content-panels .panel:nth-child(1) {
  display: block;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .site-info .content {
    padding-left: 50px;
    font-size: 30px;
  }
  .site-info .content > div {
    margin-bottom: 8px;
  }
  .site-info .content .motto-title {
    font-size: 15px;
  }
  .main-one {
    padding-bottom: 57px;
  }
  .main-one .content {
    line-height: 20px;
  }
  .main-one .main {
    padding: 40px 0;
  }
  .main-one .main .main-item {
    margin: 0 35px;
  }
  .main-one .main .main-item .number {
    font-size: 56px;
  }
  .main-one .main .main-item.main-year .number span {
    width: 64px;
  }
  .main-one .main .main-item.main-num .number span {
    width: 128px;
  }
  .main-one .main .main-item.main-weight .number span {
    width: 160px;
  }
  .main-two {
    padding-bottom: 30px;
  }
  .main-two .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-two .content .content-item {
    height: 355px;
    margin: 0 10px;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    color: #333333;
    cursor: pointer;
  }
  .main-two .content .content-item > img.big {
    display: block;
  }
  .main-two .content .content-item .content-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: all ease-in-out 0.5s 0.3s;
    transition: all ease-in-out 0.5s 0.3s;
  }
  .main-two .content .content-item .content-item-center .item-title {
    color: #ffffff;
  }
  .main-two .content .content-item .content-item-center .item-tip {
    display: block;
    color: #fff;
  }
  .main-two .content .content-item .content-item-center .item-content {
    height: 0;
    overflow: hidden;
    display: block;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
  }
  .main-two .content .content-item:hover .content-item-center {
    background: rgba(41, 115, 255, 0.9);
  }
  .main-two .content .content-item:hover .content-item-center .item-title {
    color: #ffffff;
  }
  .main-two .content .content-item:hover .content-item-center .item-content {
    height: 200px;
  }
  .main-four .content {
    background: rgba(0, 0, 0, 0.5);
    height: 345px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-four .content .left-tab {
    width: 120px;
    min-width: 120px;
  }
  .main-six {
    background: #f8f8f8;
    padding-bottom: 70px;
  }
  .main-six .content .panel {
    margin-top: 40px;
  }
  .main-six .content .panel > .left {
    width: 266px;
    min-width: 266px;
    height: 145px;
  }
}
/*# sourceMappingURL=pc.css.map */