@font-face {
  font-family: "myLato";
  src: url("../fonts/Lato/fonts/Lato-Regular.woff"),
    url("../fonts/Lato/fonts/Lato-Regular.woff2"),
    url("../fonts/Lato/fonts/Lato-Regular.eot");
}

@font-face {
  font-family: "myLato-Bold";
  src: url("../fonts/Lato/fonts/Lato-Bold.woff"),
    url("../fonts/Lato/fonts/Lato-Bold.woff2"),
    url("../fonts/Lato/fonts/Lato-Bold.eot");
}

/* 透明按钮 */
.button-transparent {
  margin: 40px auto;
  width: 340px;
  height: 60px;
  line-height: 60px;
  padding: 12px 65px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #d8152a;
  background-color: transparent;
  border: 2px solid #d8152a;
  transition: all 0.2s linear;
}

.button-transparent:hover {
  color: #ffffff;
  background-color: #d8152a;
  border: 2px solid #d8152a;
  transition: all 0.2s linear;
}

@media only screen and (max-width: 767px) {
  .button-transparent {
    margin: 4vw auto;
    width: 35vw;
    height: 8vw;
    line-height: 8vw;
    padding: 2vw 8vw;
    border-radius: 8vw;
    font-size: 4vw;
    font-weight: 700;
    color: #d8152a;
    background-color: transparent;
    border: 0.5vw solid #d8152a;
    transition: all 0.2s linear;
  }

  .button-transparent:hover {
    color: #ffffff;
    background-color: #d8152a;
    border: 0.5vw solid #d8152a;
    transition: all 0.2s linear;
  }
}

/* publish now 按钮 */
.button-publish {
  margin: 40px auto;
  width: 340px;
  height: 60px;
  line-height: 60px;
  padding: 12px 65px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #ffffff;
  background-color: #d8152a;
  border: 2px solid #d8152a;
  transition: all 0.2s linear;
}

.button-publish:hover {
  color: #d8152a;
  background-color: transparent;
  border: 2px solid #d8152a;
  transition: all 0.2s linear;
}

@media only screen and (max-width: 767px) {
  .button-publish {
    margin: 4vw auto;
    width: 35vw;
    height: 8vw;
    line-height: 8vw;
    padding: 2vw 8vw;
    border-radius: 8vw;
    font-size: 4vw;
    font-weight: 700;
    color: #ffffff;
    background-color: #d8152a;
    border: 0.5vw solid #d8152a;
    transition: all 0.2s linear;
  }

  .button-publish:hover {
    color: #d8152a;
    background-color: transparent;
    border: 0.5vw solid #d8152a;
    transition: all 0.2s linear;
  }
}

/* send 按钮 */
.button-send {
  margin: 40px auto;
  width: 340px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #ffffff;
  background-color: #f8b62d;
  border: 2px solid #f8b62d;
  transition: all 0.2s linear;
}

.button-send:hover {
  color: #f8b62d;
  background-color: transparent;
  border: 2px solid #f8b62d;
  transition: all 0.2s linear;
}

@media only screen and (max-width: 767px) {
  .button-send {
    margin: 4vw auto;
    width: 35vw;
    height: 8vw;
    line-height: 8vw;
    border-radius: 8vw;
    font-size: 4vw;
    font-weight: 700;
    color: #ffffff;
    background-color: #f8b62d;
    border: 0.5vw solid #f8b62d;
    transition: all 0.2s linear;
  }

  .button-send:hover {
    color: #f8b62d;
    background-color: transparent;
    border: 0.5vw solid #f8b62d;
    transition: all 0.2s linear;
  }
}

/* 未激活按钮 */
.btn-opacity-disabled {
  cursor: not-allowed !important;
  opacity: 0.2;
}

/*按钮loading*/
.btn-click-loading {
  pointer-events: none;
  opacity: 0.2 !important;
}
.btn-click-loading .btn-loader {
  display: inline-block;
}
.btn-loader,
.btn-loader:after {
  border-radius: 50%;
  width: 14px;
  height: 14px;
}
.btn-loader {
  margin-left: 15px;
  margin-bottom: -2px;
  text-indent: -9999em;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  border-right: 3px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: btn-loader 0.6s infinite linear;
  animation: btn-loader 0.6s infinite linear;
  display: none;
}
@-webkit-keyframes btn-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes btn-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* old style */
.click-loading {
  pointer-events: none;
  opacity: 0.4 !important;
}

.click-loading .load8 {
  display: inline-block;
}

.load8,
.load8:after {
  border-radius: 50%;
  width: 14px;
  height: 14px;
}

.load8 {
  margin-left: 15px;
  margin-bottom: -2px;
  text-indent: -9999em;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  border-right: 3px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.6s infinite linear;
  animation: load8 0.6s infinite linear;
  display: none;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 白底浮块 */

.wave-normal {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.wave-collapse {
  display: none;
}

@media only screen and (max-width: 767px) {
  .wave-normal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
  }

  .wave-collapse {
    display: block;
  }
}

/* cookie授权 */

.wpcc-container {
  z-index: 99999 !important;
}

.wpcc-corners-round .wpcc-btn {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "myLato";
}

a {
  color: #d8152a;
  text-decoration: none;
}

input,
button,
select,
textarea {
  font-family: "myLato";
}

input {
  width: 100%;
  height: 60px;
  padding: 0 26px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #fff;
  appearance: none;
  -moz-apprarence: none;
  -webkit-apprarence: none;
  display: block;
  box-sizing: border-box;
}

select {
  width: 100%;
  height: 58px;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  margin-top: 20px;
  background: #fff url(../images/select-expand.svg) right 10px center no-repeat;
  background-size: 14px;
  appearance: none;
  -moz-appearance: inherit;
  -webkit-appearance: inherit;
  display: block;
  box-sizing: border-box;
}

textarea {
  height: 178px;
  width: 100%;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  resize: vertical;
  display: block;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  transform: translateZ(0);
  vertical-align: middle;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
  padding: 0;
  margin: 0 0 8px;
}

.h1,
h1 {
  font-size: 36px;
}

.h2,
h2 {
  font-size: 34px;
}

.h3,
h3 {
  font-size: 32px;
}

.h4,
h4 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 18px;
}

.h6,
h6 {
  font-size: 14px;
}

.btn {
  display: inline-block;
  width: 200px;
  line-height: 26px;
  padding: 11px 30px;
  background: #d8152a;
  /*border: 0;*/
  border-radius: 30px;
  border: 1px solid #d8152a;
  font-family: "myLato";
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-sm {
  width: 100px;
  font-size: 14px;
}

.width-auto {
  width: auto !important;
}

.btn-warning {
  background-color: #f8b62d;
  border-color: #fcc633;
}

/* loading样式 */

.loadingBg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f2f5;
  z-index: 999999 !important;
}

.loadingBg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  text-align: center;
}

.container {
  background-color: #f0f2f5;
  text-align: center;
  min-width: 1200px;
}

.container > div {
  width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 200px;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity1 {
  opacity: 1;
}

.opacity-10 {
  opacity: 1;
}

.margin-0-auto {
  margin: 0 auto;
}

/* 返回顶部 */

.backtop-div {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99999;
  width: 50px !important;
  height: 50px !important;
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
}

.backtop-triangle-top {
  position: absolute;
  top: 38%;
}

.backtop-triangle-bottom {
  position: absolute;
  top: 1%;
}

.backtop-triangle-top::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  margin-left: 20.4px;
  margin-bottom: 7px;
}

.backtop-triangle-bottom::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  margin-left: 20.4px;
  margin-bottom: -20px;
}

.backtop-div:hover {
  /* transform: scale(1.05); */
  bottom: 55px;
  transition: 0.15s linear;
}

.backtop-div:hover .backtop-triangle-top::after,
.backtop-div:hover .backtop-triangle-bottom::after {
  border-top: 2px solid rgba(0, 0, 0, 0.8);
  border-right: 2px solid rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 767px) {
  .backtop-div {
    position: fixed;
    bottom: 20vw;
    right: 10vw;
    z-index: 99999;
    width: 13vw !important;
    height: 13vw !important;
    background-color: #ffffff;
    border-radius: 15vw;
    box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
  }

  .backtop-triangle-top {
    position: absolute;
    top: 3vw;
  }

  .backtop-triangle-bottom {
    position: absolute;
    top: 5vw;
  }

  .backtop-triangle-top::after {
    content: "";
    display: inline-block;
    width: 2vw;
    height: 2vw;
    border-top: 0.5vw solid rgba(0, 0, 0, 0.5);
    border-right: 0.5vw solid rgba(0, 0, 0, 0.5);
    transform: rotate(-45deg);
    margin-left: 5.5vw;
    margin-bottom: 0vw;
  }

  .backtop-triangle-bottom::after {
    content: "";
    display: inline-block;
    width: 2vw;
    height: 2vw;
    border-top: 0.5vw solid rgba(0, 0, 0, 0.5);
    border-right: 0.5vw solid rgba(0, 0, 0, 0.5);
    transform: rotate(-45deg);
    margin-left: 5.5vw;
    margin-bottom: 0vw;
  }

  .backtop-div:hover {
    /* transform: scale(1.05); */
    bottom: 23vw;
    transition: 0.15s linear;
  }

  .backtop-div:hover .backtop-triangle-top::after,
  .backtop-div:hover .backtop-triangle-bottom::after {
    border-top: 0.5vw solid rgba(0, 0, 0, 0.8);
    border-right: 0.5vw solid rgba(0, 0, 0, 0.8);
  }
}

/*左侧目录*/

.nav_sub_menu {
  list-style: none;
  font-size: 21px;
  text-align: left;
}

.nav_sub_menu li {
  display: flex;
  align-items: center;
  color: #000;
}

.nav_sub_menu li :nth-child(2) {
  color: #000000;
  pointer-events: none;
  cursor: default;
  font-weight: 700;
}

.nav_sub_menu li :nth-child(1) {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px #d8152a solid;
  border-radius: 50%;
  margin: 20px 24px 20px 0;
  position: relative;
}

.nav_sub_menu li :nth-child(1):after {
  content: "";
  display: block;
  clear: both;
  width: 1px;
  height: 44px;
  background-color: #d8152a;
  margin: 20px auto 0;
}

.nav_sub_menu li.active :nth-child(1) {
  background-color: #d8152a;
}

.nav_sub_menu li.active :nth-child(2) {
  color: #d8152a;
  pointer-events: auto;
  cursor: pointer;
}

.nav_sub_menu li.clickable :nth-child(1) {
  background-color: #d8152a;
}

.nav_sub_menu li.clickable :nth-child(2) {
  pointer-events: auto;
  cursor: pointer;
}

.nav_sub_menu li.clickable :nth-child(1):before {
  content: "";
  width: 8px;
  height: 3px;
  border: 2px solid white;
  border-top: transparent;
  border-right: transparent;
  text-align: center;
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  transform: rotate(-45deg);
}

.nav_sub_menu li:last-child :nth-child(1):after {
  content: "";
  display: none;
}

.nav_sub_menu li.notclickable :nth-child(2) {
  pointer-events: none;
  cursor: default;
}

/*其他服务*/

.nav-title {
  font-size: 36px;
  font-weight: 900;
  color: #d8152a;
  line-height: 44px;
  text-align: left;
}

.nav-title2 {
  font-size: 24px;
  font-weight: 900;
  color: #d8152a;
}

.nav-title3 {
  font-size: 21px;
  font-weight: 700;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nav-services {
  font-size: 18px;
  text-align: left;
  color: #000000;
  font-weight: 700;
  line-height: 48px;
  /* padding: 23px 12px 0px; */
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}

.nav-services img {
  height: 35px;
  margin-right: 32px;
}

.title-lg {
  font-size: 51px;
  font-weight: 900;
  text-align: left;
  line-height: 1.2;
}

.title-36 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

.title-md {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

.title-sm {
  font-size: 18px;
  text-align: left;
  line-height: 1.2;
}

.title-xs {
  font-size: 12px;
  text-align: left;
  line-height: 1.2;
}

.text-md {
  font-size: 36px;
  text-align: left;
  line-height: 1.2;
}

.text-24 {
  font-size: 24px;
  text-align: left;
  line-height: 1.2;
}

.text-sm {
  font-size: 18px;
  text-align: left;
  line-height: 1.2;
}

.text-16 {
  font-size: 16px;
  text-align: left;
  /* line-height: 1.2; */
  line-height: 1.6;
}

.text-21 {
  font-size: 21px;
  text-align: left;
  line-height: 1.2;
}

.text-xs {
  font-size: 12px;
  text-align: left;
  line-height: 1.2;
}

.font-weight-9 {
  font-weight: 900;
}

.font-weight-7 {
  font-weight: 700;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.text-red {
  color: #d8152a;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.form {
  padding-top: 40px;
}

.form label {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}

.form label span {
  color: #d8152a;
}

.form .warning .error {
  background: url("../images/attention.svg") no-repeat 0px 0px;
  padding-left: 26px;
  padding-bottom: 4px;
}

.my-error {
  background: url("../images/attention.svg") no-repeat 0px 0px;
  padding-left: 26px;
  padding-bottom: 4px;
}

.form p {
  font-size: 12px;
  color: #fa6400;
  line-height: 15px;
  height: 40px;
  width: 100%;
}

/*单选框*/

.title_radio input[type="radio"] {
  opacity: 0;
  height: 1px;
  width: 1px;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.title_radio input[type="radio"] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #ddd;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 12px;
  vertical-align: top;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-bottom: -3px;
}

.title_radio input[type="radio"]:checked + .radio-label:before {
  background-color: #d8152a;
  background-clip: content-box;
  box-shadow: inset 0 0 0 5px #fff;
  width: 15px;
  height: 15px;
  padding: 5px;
}

/*勾选框*/

.checkbox {
  outline: none;
  width: 0px;
  height: 0px;
  position: relative;
  padding: 0;
  margin: 0;
  display: inline-block;
  border: 0;
  appearance: none;
  -webkit-apprarence: none;
}

.checkbox:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  display: inline-block;
  border-radius: 2px;
  vertical-align: top;
  margin-top: 3px;
  margin-bottom: 3px;
}

.checkbox:checked:before {
  border: 1px solid #d8152a;
  background: #d8152a;
}

.checkbox:checked:after {
  content: "";
  width: 10px;
  height: 4px;
  border: 2px solid white;
  border-top: transparent;
  border-right: transparent;
  text-align: center;
  display: block;
  position: absolute;
  top: 8px;
  left: 3px;
  transform: rotate(-45deg);
}

.checkbox-label {
  color: #455a64 !important;
  font-size: 14px !important;
  margin-left: 28px;
  line-height: 24px;
}

/*不使用这个*/

.button-next {
  border: 0;
  /*padding:12px 70px;*/
  width: 200px;
  height: 50px;
  background: #d8152a;
  border-radius: 30px;
  opacity: 0.4;
  /*line-height: 50px;*/
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 70px 0 30px;
  text-align: center;
  transition: all 0.2s;
}

.flex-center-space-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.flex-center-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropzone {
  border-radius: 10px;
  border: 1px dashed #d8152a !important;
  text-align: center;
}

.dropzone2 {
  text-align: center;
  cursor: pointer;
  padding: 30px;
  /*width: 100%;*/
  /*height: 100%;*/
  /*width: 100%; */
  /*height: 300px;*/
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dddddd;
}

.margin-50-30 {
  margin: 50px 0 30px;
}

.margin-top-0 {
  margin: 0 !important;
}

.padding-50-30 {
  padding: 50px 0 30px;
}

.padding-top-30 {
  padding-top: 30px;
}

.table {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-top: 1px solid #ddd;
  /*height: 50px;*/
  padding: 13px 0;
  word-break: break-word;
}

.embed-table {
  width: 100%;
}

.embed-table td {
  border: 0;
  padding: 0;
}

.embed-table td:last-child {
  width: 83% !important;
}

/*上传图片loading*/

.loader {
  width: 40px;
  height: 40px;
  /*color: #D8152A;*/
  color: rgba(216, 21, 42, 0.8);
  vertical-align: middle;
  pointer-events: none;
}

.loader:before,
.loader:after {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: 50%;
  background-color: currentcolor;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s infinite ease-in-out;
  animation: loader 2s infinite ease-in-out;
}

.loader:after {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes loader {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loader {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.prompt {
  font-size: 16px;
  color: #455a64;
}

.clear {
  clear: both;
}
