@charset "utf-8";
:root {
  --color: #008CAB;
  --color2: #3DC35B;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
  }
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #002129;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
svg:not(.no-inherit) path,
svg:not(.no-inherit) circle,
svg:not(.no-inherit) rect {
  fill: currentColor !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1360px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font14 {
  font-size: 14px;
  line-height: calc(24/14);
}
.font16 {
  font-size: 16px;
  line-height: calc(26/16);
}
.font18 {
  font-size: 18px;
  line-height: calc(28/18);
}
.font24 {
  font-size: 24px;
  line-height: calc(34/24);
}
.font32 {
  font-size: 32px;
  line-height: calc(42/32);
}
.font36 {
  font-size: 36px;
  line-height: calc(46/36);
}
.font40 {
  font-size: 40px;
  line-height: calc(50/40);
}
@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font24 {
    font-size: 20px;
  }
  .font32 {
    font-size: 24px;
  }
  .font36 {
    font-size: 28px;
  }
  .font40 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .font14 {
    font-size: 12px;
  }
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 14px;
  }
  .font24 {
    font-size: 16px;
  }
  .font32 {
    font-size: 18px;
  }
  .font36 {
    font-size: 20px;
  }
  .font40 {
    font-size: 24px;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 10px 30px;
  min-width: 172px ;
  height: 58px;
  border-radius: 29px;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  background: linear-gradient(270deg, #008CAB 0%, #37B9C2 50%, #2BBEB2 100%);
}
@media (max-width: 1580px) {
  .public-btn {
    height: 40px;
    padding: 5px 5px 5px 15px;
    min-width: 100px;
  }
}
.public-btn .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.18rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.4s;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 1580px) {
  .public-btn .c-ico {
    width: 30px;
    height: 30px;
  }
}
.public-btn .c-ico .c-svg {
  width: 10px;
  height: 10px;
}
.public-btn:hover .c-ico .c-svg {
  animation: arrow 1s;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes arrow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(200%, -200%);
  }
  51% {
    transform: translate(-200%, 200%);
  }
  100% {
    transform: translate(0);
  }
}
/* 公共标题 */
.public-title {
  text-align: center;
  font-weight: bold;
}
.public-title .c-text {
  margin-top: 0.14rem;
  color: #666;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 80px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid transparent;
  line-height: 80px;
  text-align: center;
  color: #000;
  transition: 0.4s;
  background: #fff;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#c-header a {
  color: #000;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -85px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#c-header.c-style2 {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
}
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 40px;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 30px;
  }
}
#c-header .c-logo span {
  margin-left: 0.45rem;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
  margin-right: 0.25rem;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  margin: 0 0.1rem 0 0;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header .c-gn .public-btn {
  padding: 0 0.26rem;
  color: #fff;
}
#c-header .c-nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.3rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li > .c-title-box:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  padding: 10px;
  min-width: 100px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
#c-header .c-nav > li > ul li:last-child a::before {
  display: none;
}
#c-header .c-nav > li > ul li a {
  display: block;
  padding: 0 20px;
  color: #333;
  border-radius: 5px;
}
#c-header .c-nav > li > ul li a:hover {
  color: var(--color);
  background: #f8f9fc;
}
#c-header.c-style2 .c-nav li.on > .c-title-box,
#c-header .c-nav li:hover > .c-title-box,
#c-header.c-style2 .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: var(--color);
}
#c-header.c-style2 .c-nav li.on > .c-title-box:before,
#c-header .c-nav li:hover > .c-title-box:before,
#c-header.c-style2 .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: var(--color);
}
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 50px;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 5vw;
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: calc(100% - 40px);
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 底部 */
#c-footer {
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#c-footer .c-top-box {
  padding: 0.8rem 0;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1rem 0 1.2rem;
  }
}
#c-footer .c-top-box .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  color: #fff;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #666;
  }
}
#c-footer .c-top-box .container .c-title-box img,
#c-footer .c-top-box .container .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box img,
  #c-footer .c-top-box .container .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container a.c-title-box:hover {
  color: var(--color);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box {
    padding-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box p {
  padding-bottom: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box p {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-ico {
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #33444f;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a {
    width: 40px;
    height: 40px;
  }
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 50%;
  height: 50%;
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: var(--color);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  border-top: 1px solid #999;
  color: #7f7f7f;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container {
    flex-wrap: wrap;
  }
}
#c-footer .c-bottom-box .container a {
  color: #7f7f7f;
}
#c-footer .c-bottom-box .container a:hover {
  color: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  margin-right: 0.4rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-copyright {
    margin-right: 0;
  }
}
#c-footer .c-bottom-box .container .c-policy-link a {
  margin-right: 0.2rem;
}
#c-footer .c-bottom-box .container .c-policy-link a:last-child {
  margin-right: 0;
}
.c-right-pop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 60px;
  text-align: center;
}
@media (max-width: 991px) {
  .c-right-pop {
    display: none !important;
  }
}
.c-right-pop .c-item {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #FFF;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 0.1rem 0;
  font-size: 12px;
  cursor: pointer;
  overflow: hidden;
}
.c-right-pop .c-item:nth-child(1) {
  margin-bottom: 0.1rem;
  border-radius: 8px;
  border: 2px solid #FFF;
  background: linear-gradient(220deg, #008CAB 1.13%, #37B9C2 50.57%, #2BBEB2 100%);
  color: #fff;
}
.c-right-pop .c-item:nth-child(2) {
  border-radius: 8px 8px 0 0;
}
.c-right-pop .c-item:last-child {
  border-radius: 0 0 8px 8px;
}
.c-right-pop .c-item:hover .c-text {
  opacity: 1;
  pointer-events: auto;
}
.c-right-pop .c-item .c-svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.05rem;
  color: var(--color);
}
.c-right-pop .c-item .c-text {
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
.c-right-pop .c-item .c-text p {
  position: relative;
  margin-right: 15px;
  border-radius: 0.08rem;
  padding: 0 0.2rem;
  display: flex;
  align-items: center;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.c-right-pop .c-item .c-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 10;
  border: 10px solid transparent;
  border-right-width: 0;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  color: #333;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close:hover {
  color: #fff;
  background-color: var(--color);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.public-next,
.public-prev {
  margin-top: -52px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.4s;
  left: -1rem;
  color: var(--color);
  border: 1px solid var(--color);
  background: transparent;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-next,
  .public-prev {
    width: 40px;
    height: 40px;
    margin-top: -35px;
    left: -60px;
  }
}
@media (max-width: 991px) {
  .public-next,
  .public-prev {
    display: none;
  }
}
.public-next::after,
.public-prev::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(247deg, #47D064 0%, #3FBD98 50%, #1291B1 100%);
  transition: all 0.4s;
  opacity: 0;
}
.public-next img,
.public-prev img,
.public-next svg,
.public-prev svg {
  position: relative;
  z-index: 2;
  width: 50%;
  height: 50%;
}
.public-next img path,
.public-prev img path,
.public-next svg path,
.public-prev svg path {
  fill: transparent !important;
  stroke: currentColor !important;
}
.public-next:hover,
.public-prev:hover {
  color: #fff;
  border-color: transparent;
}
.public-next:hover::after,
.public-prev:hover::after {
  opacity: 1;
}
.public-next {
  left: auto;
  right: -1rem;
  transform: rotate(180deg);
}
@media (max-width: 1580px) {
  .public-next {
    right: -60px;
  }
}
.public-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0;
}
.public-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 20px;
  height: 4px;
  vertical-align: top;
  margin: 0 0.12rem;
}
@media (max-width: 767px) {
  .public-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.3rem;
  }
}
.public-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: var(--color);
  width: 0;
  animation-timing-function: linear;
  transition: all 0.4s;
}
.public-pagination .swiper-pagination-bullet-active div {
  width: 100%;
}
/*首页内容1*/
.c-home1 {
  overflow: hidden;
}
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(600/1920*100vw);
  min-height: 600px;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-img {
    min-height: auto;
    height: 120vw;
  }
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #009FC2 0%, rgba(0, 0, 0, 0) 65.625%);
  color: #fff;
}
.c-home1 .swiper-slide .c-wrap .c-box {
  max-width: 600px;
}
.c-home1 .swiper-slide .c-wrap .c-title {
  line-height: calc(54/36);
  font-weight: 600;
}
.c-home1 .swiper-slide .c-wrap .c-line {
  display: flex;
  align-items: flex-start;
  opacity: 0.5;
  margin: 0.15rem 0;
}
.c-home1 .swiper-slide .c-wrap .c-line div {
  width: calc(260/600*100%);
  border-top: 1px solid #fff;
}
.c-home1 .swiper-slide .c-wrap .c-line div:nth-child(2) {
  border-top: 1px dashed #fff;
  width: calc(60/600*100%);
}
.c-home1 .swiper-slide .c-wrap .c-text {
  color: #65ED83;
  font-weight: bold;
}
.c-home1 .swiper-slide .c-wrap .c-text2 {
  margin: 0.4rem 0 0.5rem;
}
.c-home1 .swiper-slide .c-wrap .c-text2 p {
  display: flex;
  align-items: flex-start;
  line-height: 22px;
  margin-bottom: 0.15rem;
}
.c-home1 .swiper-slide .c-wrap .c-text2 p::before {
  margin: 8px 0.1rem;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.c-home1 .public-next {
  margin-top: -30px;
  right: 0.6rem;
}
.c-home1 .public-prev {
  margin-top: -30px;
  left: 0.6rem;
}
.c-home1 .public-pagination {
  bottom: 0.6rem;
}
.c-home2 {
  padding: 0.8rem 0 0.6rem;
}
.c-home2 .swiper-box {
  position: relative;
}
.c-home2 .swiper {
  padding-bottom: 44px;
  margin-top: 0.4rem;
  border-radius: 6px;
}
@media (max-width: 1580px) {
  .c-home2 .swiper {
    padding-bottom: 30px;
  }
}
.c-home2 .swiper .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
}
.c-home2 .swiper .public-img::before {
  padding-top: calc(282/437*100%);
}
.c-home2 .swiper .c-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0.86rem;
  padding: 0.2rem;
  background: #f8f8f8;
}
@media (max-width: 1260px) {
  .c-home2 .public-next,
  .c-home2 .public-prev {
    display: none;
  }
}
.c-home3 {
  padding: 0.8rem 0 0.6rem;
  background: #F7F9FC url(../images/home3-bg.png) no-repeat left top / 100% auto;
}
.c-home3 .swiper-box {
  position: relative;
}
.c-home3 .swiper1 {
  margin: 0.25rem 0 0.4rem;
}
.c-home3 .swiper1 .swiper-slide {
  margin: 0 0.15rem;
  width: auto;
  padding: 0.16rem 0;
  color: #666;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-home3 .swiper1 .swiper-slide {
    margin: 0 0.1rem;
  }
}
.c-home3 .swiper1 .swiper-slide::before,
.c-home3 .swiper1 .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 2px;
  background: #ddd;
  transition: all 0.4s;
}
.c-home3 .swiper1 .swiper-slide::after {
  z-index: 2;
  height: 2px;
  background: linear-gradient(270deg, #3DC35B 0%, #3FBD98 50%, #008CAB 100%);
  transition: all 0.4s;
}
.c-home3 .swiper1 .swiper-slide span {
  margin-right: 0.1rem;
  transition: all 0.4s;
  opacity: 0;
}
.c-home3 .swiper1 .swiper-slide.on {
  color: var(--color);
}
.c-home3 .swiper1 .swiper-slide.on span {
  opacity: 1;
}
.c-home3 .swiper1 .swiper-slide.on::before {
  width: 100%;
}
.c-home3 .swiper1 .swiper-slide.on::after {
  width: 40%;
}
.c-home3 .swiper2 {
  padding-bottom: 44px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .c-home3 .swiper2 {
    padding-bottom: 30px;
  }
}
.c-home3 .swiper2 .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
}
.c-home3 .swiper2 .public-img::before {
  padding-top: calc(296/322*100%);
}
.c-home3 .swiper2 .c-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0.86rem;
  padding: 0.2rem;
  background: #f8f8f8;
}
.c-home3 .c-list {
  position: relative;
}
.c-home3 .c-list li {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}
.c-home3 .c-list li:nth-child(1) {
  position: relative;
}
.c-home3 .c-list li.on {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1260px) {
  .c-home3 .public-next,
  .c-home3 .public-prev {
    display: none;
  }
}
.c-home4 {
  padding: 0.8rem 0;
  background: url(../images/home4-bg.png) no-repeat left bottom / 100% auto;
}
.c-home4 .c-main-box {
  margin-top: 0.6rem;
  padding: 0 0.2rem 0.2rem;
  border-radius: 12px;
  background: linear-gradient(294deg, #008CAB 0%, #37B9C2 28.55%, #2BBEB2 59.79%, #47E0D3 100%), #008CAB;
  box-shadow: 11px 0 40px 0 rgba(4, 143, 173, 0.4);
  text-align: center;
}
.c-home4 .c-main-box .c-title {
  padding: 0.4rem 0 0.3rem;
  color: #fff;
  font-weight: 600;
}
.c-home4 .c-main-box .c-main {
  padding: 0.4rem 0.4rem 0;
  border-radius: 12px 12px 0 0;
  background: #fff;
}
.c-home4 .c-main-box .c-main:last-child {
  border-radius: 0 0 12px 12px;
  padding-bottom: 0.5rem;
}
.c-home4 .c-main-box .c-main:last-child .c-list li {
  width: 50%;
}
@media (max-width: 767px) {
  .c-home4 .c-main-box .c-main:last-child .c-list li {
    width: 100%;
  }
}
.c-home4 .c-main-box .c-main .c-title2 {
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.2rem;
  border-radius: 21px;
  background: var(--color2);
  color: #fff;
  font-weight: bold;
}
.c-home4 .c-main-box .c-main .c-list {
  margin: -21px -0.3rem 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px dashed #ddd;
}
@media (max-width: 767px) {
  .c-home4 .c-main-box .c-main .c-list {
    padding-top: 0.4rem;
  }
}
.c-home4 .c-main-box .c-main .c-list li {
  padding: 0.6rem 0.3rem 0;
  width: 33.33%;
}
@media (max-width: 767px) {
  .c-home4 .c-main-box .c-main .c-list li {
    width: 100%;
  }
}
.c-home4 .c-main-box .c-main .c-list li .c-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-home4 .c-main-box .c-main .c-list li .c-box img {
  margin-right: 0.08rem;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.c-home4 .c-main-box .c-main .c-list li .c-text {
  margin-top: 0.1rem;
  color: #666;
  text-align: left;
}
.c-home5 {
  padding: 0.8rem 0;
  background: url(../images/home5-bg.jpg) no-repeat left top / cover;
  text-align: center;
}
.c-home5 .c-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  padding: 0.3rem 0 0.5rem;
}
.c-home5 .c-main .public-img {
  width: calc(608/1360*100%);
}
@media (max-width: 767px) {
  .c-home5 .c-main .public-img {
    width: 100%;
  }
}
.c-home5 .c-main .public-img::before {
  padding-top: calc(324/607*100%);
}
.c-home5 .c-main .c-form {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(723/1360*100%);
}
@media (max-width: 767px) {
  .c-home5 .c-main .c-form {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.c-home5 .c-main .c-form .c-item {
  position: relative;
  margin-bottom: 0.24rem;
  width: 100%;
  line-height: 60px;
}
@media (max-width: 767px) {
  .c-home5 .c-main .c-form .c-item {
    line-height: 40px;
  }
}
.c-home5 .c-main .c-form .c-item:nth-child(1),
.c-home5 .c-main .c-form .c-item:nth-child(2) {
  width: calc(50% - 0.2rem);
}
@media (max-width: 767px) {
  .c-home5 .c-main .c-form .c-item:nth-child(1),
  .c-home5 .c-main .c-form .c-item:nth-child(2) {
    width: 100%;
  }
}
.c-home5 .c-main .c-form .c-item:last-child {
  margin: 0;
}
.c-home5 .c-main .c-form .c-item input {
  width: 100%;
  height: 60px;
  padding: 0 0.2rem;
  background: #fff;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .c-home5 .c-main .c-form .c-item input {
    height: 40px;
  }
}
.c-home5 .c-main .c-form .c-item input:focus ~ p {
  display: none;
}
.c-home5 .c-main .c-form .c-item input.on ~ p {
  display: none;
}
.c-home5 .c-main .c-form .c-item textarea {
  display: block;
  width: 100%;
  height: 156px;
  padding: 0.2rem;
  background: #fff;
  border-radius: 6px;
  line-height: 20px;
}
.c-home5 .c-main .c-form .c-item textarea:focus ~ p {
  display: none;
}
.c-home5 .c-main .c-form .c-item textarea.on ~ p {
  display: none;
}
.c-home5 .c-main .c-form .c-item .c-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  color: #999;
  pointer-events: none;
}
.c-home5 .c-main .c-form .c-item .c-text span {
  color: #ee1b1b;
}
.c-home6 {
  padding: 0.8rem 0;
  background: url(../images/home6-bg.png) no-repeat left bottom / contain;
  text-align: center;
}
.c-home6 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.6rem -0.12rem 0.36rem;
}
.c-home6 .c-list .c-item {
  display: flex;
  width: 33.33%;
  padding: 0 0.12rem 0.24rem;
}
@media (max-width: 767px) {
  .c-home6 .c-list .c-item {
    width: 100%;
  }
}
.c-home6 .c-list .c-item .c-wrap {
  width: 100%;
  border-radius: 0.12rem;
  background: #F4F7FC;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.c-home6 .c-list .c-item .c-wrap .c-title {
  display: flex;
  padding: 0.2rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(270deg, #008CAB 0%, #37B9C2 50%, #2BBEB2 100%), #3FBD98;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box {
  position: relative;
  padding: 0.2rem 0.4rem 0;
  text-align: left;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-num {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  font-weight: bold;
  font-size: 0.96rem;
  line-height: 1;
  background: linear-gradient(232deg, #E8ECF1 6.07%, rgba(232, 236, 241, 0.1) 94.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #ddd;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2:last-child {
  border: 0;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-title2 {
  position: relative;
  padding-left: 12px;
  line-height: 1;
  font-weight: bold;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-title2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: '';
  border-radius: 0.08rem;
  background: linear-gradient(180deg, #3DC35B 0%, #65ED83 100%);
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-box {
  padding: 0.25rem 0 0 12px;
  color: #666;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-box p {
  position: relative;
  margin-bottom: 0.18rem;
  padding-left: 28px;
  line-height: 20px;
  background: url(../images/home6-ico.svg) no-repeat left top / 20px 20px;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-box p:last-child {
  margin-bottom: 0;
}
.c-home6 .c-list .c-item .c-wrap .c-list2-box .c-list2 .c-item2 .c-box p span {
  font-weight: bold;
  color: #334D54;
}
.c-home7 {
  padding: 0.8rem 0;
  background: #F4F7FC;
}
.c-home7 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.6rem -0.2rem -0.4rem;
}
.c-home7 .c-list .c-item {
  width: 33.33%;
  padding: 0 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .c-home7 .c-list .c-item {
    width: 50%;
  }
}
.c-home7 .c-list .c-item:nth-child(even) .c-wrap {
  background: #37B9C2;
}
.c-home7 .c-list .c-item .c-wrap {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #2BBEB2;
}
.c-home7 .c-list .c-item .c-wrap .public-img {
  mix-blend-mode: multiply;
}
.c-home7 .c-list .c-item .c-wrap .public-img::before {
  padding-top: calc(274/426*100%);
}
.c-home7 .c-list .c-item .c-wrap .c-text-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.c-home7 .c-list .c-item .c-wrap .c-text-box .c-ico {
  margin: 0 auto 0.12rem;
  width: 0.6rem;
  height: 0.6rem;
}
@media (max-width: 767px) {
  .c-home7 .c-list .c-item .c-wrap .c-text-box .c-ico {
    margin-bottom: 5px;
    width: 40px;
    height: 40px;
  }
}
.c-home7 .c-list .c-item .c-wrap .c-text-box .c-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-home7 .c-list .c-item .c-wrap .c-text-box .c-title {
  font-weight: bold;
}
.c-home8 {
  overflow: hidden;
  padding: 0.8rem 0;
  text-align: center;
}
.c-home8 .swiper {
  margin: 0.6rem 0;
  overflow: visible;
}
.c-home8 .swiper-slide {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
.c-home8 .swiper-slide .c-text-box {
  width: calc(550/1360*100%);
}
@media (max-width: 1260px) {
  .c-home8 .swiper-slide .c-text-box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-home8 .swiper-slide .c-text-box {
    width: 100%;
  }
}
.c-home8 .swiper-slide .c-text-box .c-title {
  font-weight: bold;
}
.c-home8 .swiper-slide .c-text-box .c-text {
  margin-top: 0.12rem;
  color: #666;
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item {
  margin-top: 0.4rem;
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item:first-child {
  margin-top: 0.3rem;
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item:first-child .c-box p {
  background-image: url(../images/home8-ico.svg);
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item .c-title2 {
  position: relative;
  padding-left: 12px;
  line-height: 1;
  font-weight: bold;
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item .c-title2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: '';
  border-radius: 0.08rem;
  background: linear-gradient(180deg, #3DC35B 0%, #65ED83 100%);
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item .c-box {
  color: #666;
}
.c-home8 .swiper-slide .c-text-box .c-list .c-item .c-box p {
  position: relative;
  margin-top: 0.18rem;
  padding-left: 28px;
  line-height: 20px;
  background: url(../images/home6-ico.svg) no-repeat left top / 20px 20px;
}
.c-home8 .swiper-slide .public-img {
  width: calc(600/1360*100%);
  border-radius: 0.12rem;
}
@media (max-width: 767px) {
  .c-home8 .swiper-slide .public-img {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.c-home8 .swiper-slide .public-img::before {
  padding-top: calc(420/600*100%);
}
.c-home8 .public-pagination {
  left: auto;
  right: -0.3rem;
  width: 4px;
  flex-wrap: wrap;
  bottom: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .c-home8 .public-pagination {
    right: -4px;
  }
}
.c-home8 .public-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 20px;
  margin: 0.05rem 0;
}
.c-home8 .public-pagination .swiper-pagination-bullet div {
  width: 100%;
  height: 0;
}
.c-home8 .public-pagination .swiper-pagination-bullet-active div {
  height: 100%;
}
.c-home9 {
  padding: 0.8rem 0;
}
.c-home9 .c-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #F4F7FC;
  border-radius: 0.12rem;
  overflow: hidden;
}
.c-home9 .c-main .c-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  width: 40.58%;
}
@media (max-width: 767px) {
  .c-home9 .c-main .c-left {
    width: 100%;
    min-height: 50vw;
  }
}
.c-home9 .c-main .c-left img {
  width: 100%;
  max-width: 2.9rem;
}
.c-home9 .c-main .c-right {
  position: relative;
  z-index: 2;
  padding: 0.8rem 0.9rem;
  color: #fff;
  width: 59.42%;
  min-height: 5.52rem;
}
@media (max-width: 767px) {
  .c-home9 .c-main .c-right {
    padding: 0.6rem;
    width: 100%;
  }
}
.c-home9 .c-main .c-right img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home9 .c-main .c-right .c-title {
  font-weight: bold;
}
.c-home9 .c-main .c-right .c-subtitle {
  margin: 0.8rem 0 0.15rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-home9 .c-main .c-right .c-subtitle {
    margin-top: 0.4rem;
  }
}
.c-home10 {
  padding: 0.6rem 0 0.5rem;
  background: url(../images/home10-img.jpg) no-repeat center center / cover;
  color: #fff;
  text-align: center;
}
.c-home10 .c-title {
  font-weight: bold;
}
.c-home10 .c-text {
  margin: 0.16rem 0 0.4rem;
}
.c-home10 .public-btn {
  background: #fff;
  color: #00455E;
}
.c-home10 .public-btn .c-ico {
  background: linear-gradient(270deg, #008CAB 0%, #37B9C2 50%, #2BBEB2 100%);
}
.c-home10 .public-btn .c-ico svg {
  color: transparent;
}
.c-home10 .public-btn .c-ico svg path {
  stroke: #fff;
}
#c-form-pop {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 90%;
  max-width: 740px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  padding: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  #c-form-pop {
    padding: 25px;
  }
}
#c-form-pop .c-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #c-form-pop .c-close {
    top: 5px;
    right: 5px;
  }
}
#c-form-pop .c-close .c-svg {
  width: 20px;
  height: 20px;
}
#c-form-pop .c-close:hover {
  color: var(--color);
}
#c-form-pop .c-title {
  font-weight: bold;
}
#c-form-pop .c-subtitle {
  margin-bottom: 0.2rem;
  padding: 0.1rem 0 0.2rem;
  border-bottom: 1px solid #eee;
}
#c-form-pop .c-form {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.2rem;
  text-align: left;
}
#c-form-pop .c-form .c-item {
  position: relative;
  margin-bottom: 0.24rem;
  width: 100%;
  line-height: 40px;
}
#c-form-pop .c-form .c-item:nth-child(1),
#c-form-pop .c-form .c-item:nth-child(2) {
  width: calc(50% - 0.2rem);
}
@media (max-width: 767px) {
  #c-form-pop .c-form .c-item:nth-child(1),
  #c-form-pop .c-form .c-item:nth-child(2) {
    width: 100%;
  }
}
#c-form-pop .c-form .c-item:last-child {
  margin: 0;
}
#c-form-pop .c-form .c-item input {
  width: 100%;
  height: 40px;
  padding: 0 0.15rem;
  background: #f8f8f9;
  border-radius: 6px;
  font-size: 12px;
}
#c-form-pop .c-form .c-item input:focus ~ p {
  display: none;
}
#c-form-pop .c-form .c-item input.on ~ p {
  display: none;
}
#c-form-pop .c-form .c-item textarea {
  display: block;
  width: 100%;
  height: 120px;
  padding: 0.2rem 0.15rem;
  background: #f8f8f9;
  border-radius: 6px;
  line-height: 20px;
  font-size: 12px;
}
@media (max-width: 767px) {
  #c-form-pop .c-form .c-item textarea {
    height: 80px;
  }
}
#c-form-pop .c-form .c-item textarea:focus ~ p {
  display: none;
}
#c-form-pop .c-form .c-item textarea.on ~ p {
  display: none;
}
#c-form-pop .c-form .c-item .c-text {
  margin-bottom: 0.1rem;
  line-height: 1.5;
}
#c-form-pop .c-form .c-item .c-text span {
  color: #ee1b1b;
}
