@charset "UTF-8";
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
  --page-scale: 1;
}
.hweb-container {
  width: 100%;
  margin: 0 auto;
}
.section-base {
  width: 100%;
  background: #fff;
}
.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.align-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.text-start {
  text-align: start;
}
.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.align-end {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.text-end {
  text-align: end;
}
.justify-flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.align-flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.text-flex-start {
  text-align: flex-start;
}
.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.align-flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.text-flex-end {
  text-align: flex-end;
}
.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-space-between {
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -moz-box-align: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
}
.text-space-between {
  text-align: space-between;
}
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.text-center {
  text-align: center;
}
.justify-space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-space-around {
  -webkit-box-align: space-around;
  -webkit-align-items: space-around;
  -moz-box-align: space-around;
  -ms-flex-align: space-around;
  align-items: space-around;
}
.text-space-around {
  text-align: space-around;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.h-70 {
  height: 70px;
}
.modals.dimmer .ui.scrolling.modal {
  margin: 0.5rem auto;
}
.ui.modal {
  min-width: 500px;
  width: auto;
  font-size: 0.16rem;
  padding: 0.34rem 0.3rem 0.3rem;
  border-radius: 0.14rem;
}
.ui.dropdown .menu > .item {
  font-size: 16px;
}
.ui.selection.dropdown .menu > .item {
  padding: 10px 15px !important;
}
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > img,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .image,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > img {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .ui.modal {
    min-width: initial;
    width: 90%;
    margin: 0 15px;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .hweb-container {
    width: 100%;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .hweb-container {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1900px) {
  .hweb-container {
    width: 100%;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  html {
    font-size: 72.92px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1900px) {
  html {
    font-size: 83.333px;
  }
}
@media only screen and (min-width: 1900px) {
  html {
    font-size: 100px;
  }
}
.section-ship {
  margin: 0 auto 0.8rem;
  width: 15.20rem;
}
.ship-container {
  background: #eff4fa;
  border-radius: 14px;
  height: 4.84rem;
  margin-top: 0.4rem;
}
.ship-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0.53rem 0.5rem 0.5rem;
}
.ship-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.ship-item__content {
  background: url(boat-bg-00.png) no-repeat;
  background-size: cover;
  width: 4rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ship-item + .ship-item {
  margin-left: 1.1rem;
}
.ship-item h3 {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.5rem;
  color: #fff;
  line-height: 0.66rem;
  text-align: center;
  font-style: normal;
  margin-bottom: 0;
}
.ship-item .tlt {
  font-family: MicrosoftYaHei;
  font-size: 0.3rem;
  color: #fff;
  line-height: 0.4rem;
  text-align: center;
  font-style: normal;
  margin-top: 0.2rem;
}
.ship-item .bicon {
  width: 0.8rem;
  height: 0.82rem;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ship-item .bicon img {
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1000px) {
  .ship-container {
    height: auto;
    padding: 30px 0;
  }
  .ship-row {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ship-item {
    width: 100%;
    height: 260px;
    margin: 15px auto;
    background-size: contain !important;
    background-position: center !important;
  }
  .ship-item h3 {
    font-size: 30px;
    height: 40px;
    line-height: 40px;
  }
  .ship-item .tlt {
    font-size: 20px;
    line-height: 24px;
  }
  .ship-item p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
    width: 80%;
    height: 80px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 800px) {
  .ship-item p {
    width: 50%;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1000px) {
  .ship-item p {
    width: 38%;
  }
}
.banner-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner-swiper .swiper-slide {
  text-align: center;
  font-size: -webkit-calc(18px * var(--page-scale));
  font-size: -moz-calc(18px * var(--page-scale));
  font-size: calc(18px * var(--page-scale));
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banner-swiper .swiper-slide .swiper-slide-content {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.7rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banner-swiper .swiper-slide .swiper-slide-content h1 {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.32rem;
  color: #003274;
  line-height: 0.42rem;
  text-align: left;
  font-style: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}
.banner-swiper .swiper-slide .swiper-slide-content h1 span {
  font-size: 0.42rem;
  line-height: 0.55rem;
  margin-right: 0.18rem;
}
.banner-swiper .swiper-slide .swiper-slide-content .intro {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.22rem;
  color: #003274;
  line-height: 0.29rem;
  text-align: left;
  font-style: normal;
  margin: 0.21rem 0 0.36rem;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn {
  width: 1.7rem;
  height: 0.56rem;
  border-radius: 0.06rem;
  border: 0.02rem solid #ff8000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn span {
  font-family: MicrosoftYaHei;
  font-size: 0.2rem;
  color: #ff8000;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn i {
  width: 0.22rem;
  height: 0.12rem;
  display: block;
  background: url(icon-ar-h.png) no-repeat center;
  background-size: contain;
  margin-left: 0.1rem;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn:hover {
  background: #ff8000;
  border-color: #fff;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn:hover span {
  color: #fff;
}
.banner-swiper .swiper-slide .swiper-slide-content .sw-btn:hover i {
  background: url(icon-ar.png) no-repeat center;
  background-size: contain;
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.banner-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .banner-swiper {
    height: auto;
  }
  .banner-swiper .swiper-slide .swiper-slide-content {
    padding: 100px 50px;
  }
  .banner-swiper .swiper-slide .swiper-slide-content h1 {
    font-size: 20px;
    line-height: 28px;
  }
}
.section-route {
  margin: 0 auto 0.8rem;
  width: 15.20rem;
}
.route-map-wrap {
  margin-top: 0.4rem;
}
.map-wrap {
  position: relative;
}
.route-map {
  max-width: 1920px;
  width: 100%;
  object-fit: cover;
}
.mbtn-name .mbtn {
  padding: 8px 15px;
  background: #103974;
  border-radius: 4px;
  font-family: MicrosoftYaHei;
  font-size: -webkit-calc(16px * var(--page-scale));
  font-size: -moz-calc(16px * var(--page-scale));
  font-size: calc(16px * var(--page-scale));
  color: #fff;
  line-height: 21px;
  font-style: normal;
  position: absolute;
  cursor: pointer;
  z-index: 15;
}
.mbtn-name .mbtn:hover {
  background: #ff8000;
}
.mbtn-name .mbtn:hover + img {
  display: block;
}
.mbtn-name .mbtn.mbtn1 {
  left: 430px;
  top: 150px;
}
.mbtn-name .mbtn.mbtn2 {
  left: 470px;
  top: 255px;
}
.mbtn-name .mbtn.mbtn3 {
  left: 340px;
  bottom: 105px;
}
.mbtn-name .mbtn.mbtn4 {
  right: 555px;
  top: 165px;
}
.mbtn-name .mbtn.mbtn5 {
  right: 795px;
  top: 395px;
}
.mbtn-name .mbtn.mbtn6 {
  right: 585px;
  top: 475px;
}
.mbtn-img01 {
  width: 145px;
  height: 64px;
  display: none;
  position: absolute;
  left: 202px;
  top: 162px;
}
.mbtn-img02 {
  width: 765px;
  height: 321px;
  display: none;
  position: absolute;
  left: 134px;
  top: 160px;
}
.mbtn-img03 {
  width: 906px;
  height: 500px;
  display: none;
  position: absolute;
  left: -7px;
  top: 254px;
}
.mbtn-img04 {
  width: 588px;
  height: 191px;
  display: none;
  position: absolute;
  right: 490px;
  top: 254px;
}
.mbtn-img05 {
  width: 369px;
  height: 493px;
  display: none;
  position: absolute;
  right: 705px;
  top: 254px;
}
.mbtn-img06 {
  width: 568px;
  height: 418px;
  display: none;
  position: absolute;
  right: 506px;
  top: 254px;
}
@media only screen and (max-width: 767px) {
  .section-route {
    padding: 30px 0;
  }
  .route-map-wrap {
    padding-top: 30px;
  }
  .mbtn-name .mbtn {
    padding: 2px 8px;
  }
}
.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer .p-tlt {
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  font-family: MicrosoftYaHei;
  margin-bottom: 26px;
  font-weight: 400;
}
.footer .fp {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  font-family: MicrosoftYaHei;
  margin: 15px 0;
  padding-right: 10px;
}
.footer .fp.ctinfo {
  width: 5.5rem;
}
.footer .fp.small {
  font-size: 12px;
}
.footer .fp.large {
  font-size: 16px;
}
.footer .ercode {
  margin-top: 26px;
}
.footer .ercode > div {
  margin-right: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .ercode img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
  object-fit: cover;
}
.footer-content {
  height: 426px;
}
.footer-content .hweb-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 41px 58px 51px;
}
.footer-logo {
  margin-bottom: 0.11rem;
}
.footer-logo span {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.52rem;
  color: #ff8000;
  line-height: 0.69rem;
  text-align: left;
  font-style: normal;
}
.footer-row .contant-addres {
  margin-top: 5px;
}
.f-select {
  margin-right: 60px;
}
.copy-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 72px;
  background: #000;
}
.copy-right p {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #fff;
  line-height: 21px;
}
@media only screen and (max-width: 767px) {
  .footer .fp {
    font-size: 12px;
    line-height: 20px;
    padding-right: 0;
    width: auto;
  }
  .footer .fp.large {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .p-tlt {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .footer .ercode {
    margin-top: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-content {
    height: auto;
  }
  .footer-content .hweb-container {
    padding: 30px 15px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-row .contant-addres {
    margin-top: 20px;
  }
  .footer-row > div:first-child .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-row > div:last-child {
    margin-left: 0;
  }
  .f-select {
    margin-right: 0;
  }
  .copy-right {
    height: 68px;
  }
  .copy-right p {
    font-size: 12px;
    line-height: 18px;
    padding: 0 15px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2024;
}
header.bgwhite {
  background: #fff;
}
header.btborder {
  border-bottom: 1px solid #e4e7ed;
}
.main-header-nav {
  height: 0.87rem;
  padding: 0 0.45rem;
  background: #003274;
}
.main-header-nav .logo {
  line-height: 1;
  height: 37px;
}
.main-header-nav .logo img {
  width: 213px;
  height: 37px;
}
.main-header-nav .main-nav {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.main-header-nav .navs .nav {
  margin-left: 0.5rem;
}
.main-header-nav .navs .nav:first-child {
  margin-left: 0.98rem;
}
.main-header-nav .navs .nav a {
  font-size: 0.18rem;
  font-family: MicrosoftYaHei;
  color: #fff;
  position: relative;
  height: 0.24rem;
}
.main-header-nav .navs .nav a span {
  width: 10px;
  height: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}
.main-header-nav .navs .nav a span img {
  width: 100%;
  height: 100%;
}
.main-header-nav .extra-nav a {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #fff;
  line-height: 21px;
}
.main-header-nav .extra-nav a img {
  width: 24px;
  margin-right: 8px;
}
.main-header-nav .extra-nav a img.large {
  width: 26px;
}
.main-header-nav .extra-nav .line {
  width: 1px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 20px;
  display: block;
}
.main-header-nav .extra-nav .language-box {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-left: 0.3rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.main-header-nav .extra-nav .language-box span {
  font-family: MicrosoftYaHei;
  font-size: 0.12rem;
  color: #fff;
  line-height: 0.16rem;
  text-align: left;
  font-style: normal;
}
.menu-btn {
  display: none;
}
.sidebar-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: none;
}
.sidebar-mobile .sidebar-cover {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sidebar-mobile .sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  height: 100%;
  width: 80%;
}
.sidebar-mobile .ui.middle.divided.aligned.list .item {
  padding: 0.12rem 0;
  margin: 0 0.15rem;
  font-size: 15px;
  font-weight: 600;
}
.sidebar-mobile .ui.middle.divided.aligned.list .item .list .item {
  font-weight: 400;
}
.sidebar-mobile .ui.middle.divided.aligned.list .item a {
  color: #333;
}
.sidebar-mobile .sidebar-close {
  position: absolute;
  z-index: 12;
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  background: url(icon-close.png) no-repeat center;
  background-size: contain;
  right: 0.2rem;
  top: 0.2rem;
}
@-webkit-keyframes nvfadeInDown {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes nvfadeInDown {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nvfadeInDown {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .section-base > .hweb-container {
    padding: 0;
  }
  .header-top {
    display: none;
  }
  .main-header-nav {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    padding: 0;
  }
  .main-header-nav .main-nav {
    width: 100%;
    display: none;
  }
  .main-header-nav .navs {
    background: #00577b;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
  }
  .main-header-nav .navs .nav {
    margin: 0;
  }
  .main-header-nav .navs .nav:first-child {
    display: none;
  }
  .main-header-nav .navs .nav:nth-child(2) a::before {
    display: none !important;
  }
  .main-header-nav .navs .nav + .nav a::before {
    content: "";
    height: 10px;
    width: 1px;
    background: #fff;
    display: block;
    margin-right: 5px;
  }
  .main-header-nav .navs .nav a {
    height: 45px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
  }
  .menu-btn {
    display: block;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .menu-btn {
    display: block;
  }
  .main-header-nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .main-header-nav .main-nav {
    width: 100%;
    display: none;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1900px) {
  .main-header-nav .logo {
    height: 28px;
  }
  .main-header-nav .logo img {
    width: auto;
    height: 28px;
  }
  .main-header-nav .navs .nav a {
    font-size: 13px;
  }
  .main-header-nav .extra-nav a {
    font-size: 13px;
  }
  .main-header-nav .extra-nav .language-box span {
    font-size: 13px;
  }
  .main-header-nav .extra-nav .language-box span:last-child {
    font-size: 12px;
  }
}
.news-section {
  margin: 0 auto 0.8rem;
  width: 15.20rem;
}
.news-section .page-title {
  padding: 0;
}
.news-wrap {
  margin-top: 0.4rem;
}
.new-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.new-item {
  border: 1px solid rgba(0, 50, 116, 0.25);
  background: #fff;
  border-radius: 0.14rem;
  margin: 0 0.1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-calc(25% - 0.2rem);
  width: -moz-calc(25% - 0.2rem);
  width: calc(25% - 0.2rem);
}
.new-item .pic {
  width: 100%;
  height: 2rem;
  background: #d8d8d8;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.14rem 0.14rem 0 0;
}
.new-item .pic img {
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}
.new-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.18rem 0.2rem;
}
.new-content h3 {
  margin: 0;
}
.new-content h3 a {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.18rem;
  color: #192135;
  line-height: 0.28rem;
  text-align: left;
  font-style: normal;
  height: 0.56rem;
}
.new-content .v-date {
  margin-top: 0.2rem;
}
.new-content .v-date span {
  font-family: MicrosoftYaHei;
  font-size: 0.16rem;
  color: rgba(25, 33, 53, 0.5);
  line-height: 0.28rem;
  text-align: left;
  font-style: normal;
}
.news-more-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.news-more-btn a {
  width: 1.92rem;
  height: 0.48rem;
  border-radius: 0.24rem;
  border: 2px solid #003274;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-more-btn a span {
  font-family: MicrosoftYaHei;
  font-size: 0.16rem;
  color: #003274;
  line-height: 0.21rem;
  text-align: left;
  font-style: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-more-btn a span::before {
  content: "";
  display: block;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAQCAYAAAAvf+5AAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAydpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAxIDc5LjE0NjI4OTk3NzcsIDIwMjMvMDYvMjUtMjM6NTc6MTQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS4yIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowRDFDRUNBODRCRDIxMUVGQTZCRUMxN0IzQkM2QjBDQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowRDFDRUNBOTRCRDIxMUVGQTZCRUMxN0IzQkM2QjBDQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjBEMUNFQ0E2NEJEMjExRUZBNkJFQzE3QjNCQzZCMENBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjBEMUNFQ0E3NEJEMjExRUZBNkJFQzE3QjNCQzZCMENBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+j2YyfQAAAMdJREFUeNpiZDCoUGBg+hPPwMD4kOFc9wIGHICZQcq8H6ioAMgOYJC0YmB4fuwgNoVMaPwGBqOSeuwmittfZGD4Z8DAyKAAFXPAZjIzw4sjHxgk7A4SUswMJmGKGf99ACvCopgZbjZIsbjdQ1yKGbGGBcRDDUhedmTCHmr/FVC4/xgVME00Kp4PDNcEhB6GAwznexwZiVEEYjISowihkIAiiH+MShMIKYIo/P8/npAiEGBhYGRcCFQMNPT/A4bzvYm4khlAgAEAYLFTZ2SUaPoAAAAASUVORK5CYII=);
  width: 6px;
  height: 10px;
  background-size: cover;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .news-section {
    padding: 30px 0;
  }
  .news-wrap {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .new-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .new-item .pic {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }
  .new-item.card-large {
    border-bottom: 1px solid #dee5e5;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .new-item.card-large .pic {
    width: 100%;
    height: 220px;
  }
  .new-item.card-large p {
    margin-bottom: 10px;
    height: 50px;
  }
  .new-tag {
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    width: 70px;
    border-radius: 16px;
  }
  .new-content h3 {
    margin: 10px 0;
  }
  .new-content h3 a {
    font-size: 16px;
  }
  .new-content p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 16px;
    height: 32px;
  }
  .new-content .v-more span {
    font-size: 14px;
  }
  .new-content .v-more img {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
  .new-items::before {
    display: none;
  }
}
.section-service {
  margin: 0.8rem auto 0;
  width: 15.20rem;
}
.service-rows {
  width: 100%;
  margin: 0.4rem auto 0.8rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  zoom: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-rows__left,
.service-rows__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-rows__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.service-rows__left .service-item:first-child {
  margin-bottom: 0.2rem;
  margin-right: 0.2rem;
}
.service-rows__left .service-item:nth-child(2) {
  margin-bottom: 0.2rem;
}
.service-rows__left .service-item:last-child {
  margin-left: 0.2rem;
}
.service-rows__right {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3.75rem;
  margin-left: 0.2rem;
}
.service-rows__right .service-item {
  width: 3.75rem !important;
  height: 7.7rem;
}
.service-item {
  width: 3.75rem;
  height: 3.75rem;
  cursor: pointer;
}
.service-item:hover {
  z-index: 120;
  border-radius: 8px;
}
.service-item > a {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 21;
}
.service-item > a:hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 22;
  border-radius: 8px;
  background: rgba(255, 128, 0, 0.8);
}
.service-item > a:hover .service-item__footer a::before {
  opacity: 1;
}
.service-item > a:hover .service-content .tlt {
  color: #fff;
}
.service-item > a:hover .service-content .tlt span {
  color: #fff;
}
.service-item > a:hover .service-content p {
  color: #fff;
}
.service-item:first-child,
.service-item:last-child {
  width: -webkit-calc(100% - 3.75rem - 0.2rem);
  width: -moz-calc(100% - 3.75rem - 0.2rem);
  width: calc(100% - 3.75rem - 0.2rem);
}
.service-item .pic {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.service-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}
.service-item__footer {
  width: -webkit-calc(100% - 56px);
  width: -moz-calc(100% - 56px);
  width: calc(100% - 56px);
  position: absolute;
  bottom: 34px;
  left: 30px;
  right: 26px;
  z-index: 25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-item__footer a {
  position: relative;
  width: 54px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-item__footer .more {
  width: 54px;
  height: 36px;
  object-fit: cover;
}
.service-content .tlt {
  font-size: 0.26rem;
  font-family: MicrosoftYaHei;
  font-weight: 700;
  line-height: 0.35rem;
  color: #192135;
}
.service-content .tlt span {
  color: #ff8000;
}
.service-content p {
  font-size: 0.16rem;
  font-family: MicrosoftYaHei;
  color: #192135;
  line-height: 0.21rem;
  margin-top: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .section-service {
    padding: 30px 0 20px;
  }
  .service-content .tlt {
    font-size: 14px;
    line-height: 18px;
  }
  .service-content p {
    font-size: 12px;
    line-height: 1;
    margin-top: 2px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1900px) {
  .service-item__footer {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
  }
  .service-item__footer .more {
    width: 35px;
    height: auto;
    object-fit: cover;
  }
  .service-content .tlt {
    font-size: 22px;
    line-height: 25px;
  }
  .service-content p {
    font-size: 14px;
    margin-top: 5px;
  }
}
.page-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-title h3 {
  font-family: MicrosoftYaHei;
  font-weight: 700;
  font-size: 0.4rem;
  color: #003274;
  line-height: 52px;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .page-title {
    padding: 0;
  }
  .page-title h3 {
    font-size: 18px;
    line-height: 30px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .page-title .tlt-line {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .page-title .tlt-line::before {
    width: 8px;
    height: 8px;
  }
  .page-title .tlt-line-right::after {
    width: 8px;
    height: 8px;
  }
  .page-title .tlt-more span {
    font-size: 14px;
  }
  .page-title .tlt-more img {
    width: 25px;
    height: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .page-title h3 {
    font-size: 20px;
    line-height: 30px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .page-title .tlt-line {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .page-title .tlt-line::before {
    width: 10px;
    height: 10px;
  }
  .page-title .tlt-line-right::after {
    width: 10px;
    height: 10px;
  }
  .page-title .tlt-more span {
    font-size: 14px;
  }
  .page-title .tlt-more img {
    width: 25px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1900px) {
  .page-title h3 {
    font-size: 26px;
    line-height: 30px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .page-title .tlt-line {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .page-title .tlt-line::before {
    width: 10px;
    height: 10px;
  }
  .page-title .tlt-line-right::after {
    width: 10px;
    height: 10px;
  }
  .page-title .tlt-more span {
    font-size: 18px;
  }
  .page-title .tlt-more img {
    width: 30px;
    height: auto;
  }
}
#cityBox {
  width: 270px;
  padding: 25px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#totalConfirm {
  z-index: -9999;
  opacity: 0;
  width: 270px;
  position: absolute;
  outline: 0;
  left: 0;
  top: 0;
}
.city-drop-text {
  line-height: 20px;
  color: #fff;
  font-size: 16px;
}
.textArea {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.icon-arrow {
  width: 16px;
  height: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  line-height: 20px;
  color: #999;
}
.icon-arrow img {
  width: 100%;
  height: 100%;
}
.icon-arrow.icon-arrow-up {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#content {
  width: 378px;
  height: 280px;
  display: none;
  border-top: none;
  position: relative;
  border: 1px solid #009a9e;
  border-radius: 6px;
  overflow: hidden;
  bottom: 70px;
  position: absolute;
  left: 0;
}
.chosePCA {
  width: 80px;
  height: 40px;
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  float: left;
  cursor: pointer;
}
.area-list,
.city-list,
.province-list {
  position: absolute;
  width: 378px;
  min-height: 10px;
  padding: 10px;
  left: 0;
  top: 40px;
}
.select {
  background-color: #fff;
  color: #009a9e;
  border-bottom: none;
}
#content li {
  margin: 0;
  font-size: 14px;
  display: inline-block;
  padding: 8px;
  line-height: normal;
  cursor: pointer;
  color: #000;
}
#content li:hover {
  background-color: rgba(0, 154, 158, 0.1);
  color: #009a9e;
  border-radius: 4px;
}
.chose-tab {
  width: 378px;
  height: 40px;
  background-color: #f0f0f0;
  clear: both;
}
.chosePCA > ul {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.8);
  border-top: none;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  cursor: auto;
  height: 240px;
}
.btn {
  width: 60px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  margin-top: 10px;
  position: absolute;
}
.confirm {
  left: 70px;
}
#bigOne {
  width: 270px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #cityBox {
    width: 100%;
    padding: 10px 0;
  }
  #bigOne,
  #totalConfirm {
    width: 100%;
  }
  .icon-arrow {
    width: 12px;
    height: auto;
  }
  .city-drop-text {
    font-size: 14px;
  }
  #content {
    bottom: 50px;
  }
}
.cos-dropdown.ui.selection.dropdown {
  width: 270px;
  background: 0 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
  border-radius: 0 !important;
}
.cos-dropdown.ui.selection.dropdown .dropdown-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cos-dropdown.ui.selection.dropdown .dropdown-icon img {
  width: 16px;
  height: 10px;
}
.cos-dropdown.ui.selection.dropdown input {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown input::-webkit-input-placeholder {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown input:-moz-placeholder {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown input::-moz-placeholder {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown input:-ms-input-placeholder {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown input::placeholder {
  color: #fff;
}
.cos-dropdown.ui.selection.dropdown > .text {
  color: #fff !important;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #fff;
  line-height: 21px;
}
.cos-dropdown.ui.selection.dropdown .menu {
  max-height: 3rem !important;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 767px) {
  .cos-dropdown.ui.selection.dropdown {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .cos-dropdown.ui.selection.dropdown .dropdown-icon img {
    width: 12px;
    height: auto;
  }
  .cos-dropdown.ui.selection.dropdown > .text {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
  }
}