/* 入场动画 */
[vm-type="1"] {
  visibility: hidden;
}
/*滚动动效*/
.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.1, 1);
}
.animated .number1 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated .number2 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .05s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated .number3 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated .number4 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .15s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated .number5 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated .number6 {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 1023px) {
  [vm-type="1"] {
    visibility: visible;
  }
  .animated {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.1, 1);
  }
  .animated .number1 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .animated .number2 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .animated .number3 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .animated .number4 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .animated .number5 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .animated .number6 {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.level0 {
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;
}
.level1 {
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;
}
.level2 {
  -webkit-animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
}
.level3 {
  -webkit-animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
}
.level4 {
  -webkit-animation-duration: 1.8s;
  -webkit-animation-delay: 0.4s;
}
.level5 {
  -webkit-animation-duration: 2.1s;
  -webkit-animation-delay: 0.5s;
}
.level6 {
  -webkit-animation-duration: 2.4s;
  -webkit-animation-delay: 0.5s;
}
.level7 {
  -webkit-animation-duration: 2.7s;
  -webkit-animation-delay: 0.6s;
}
.level8 {
  -webkit-animation-duration: 3s;
  -webkit-animation-delay: 0.7s;
}
.reallyslow {
  -webkit-animation-duration: 6s;
  -webkit-animation-delay: 3s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -o-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.fadeInTop {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
}
@keyframes expansion {
  0% {
    width: 0;
    right: 160px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    width: 53px;
    right: 107px;
    -webkit-transform: translateY(-105px);
    transform: translateY(-105px);
  }
}
.expansion {
  -webkit-animation-name: expansion;
  animation-name: expansion;
}
@keyframes expansionRight {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
.expansionRight {
  -webkit-animation-name: expansionRight;
  animation-name: expansionRight;
}
@keyframes scales {
  0% {
    width: 0;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  50% {
    width: 53px;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    width: 53px;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
}
.scales {
  -webkit-animation-name: scales;
  animation-name: scales;
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@keyframes zoomIn {
  from {
    /*opacity: 0.5;*/
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  50% {
    /*opacity: 1;*/
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@font-face {
	font-family: 'cui-icon';
	src: url(./../images/go_global-intlEn-cui-icon.eot);
	src: url(./../images/go_global-intlEn-cui-icon.eot#iefix) format('embedded-opentype'),
	url(./../images/go_global-intlEn-cui-icon.woff2) format('woff2'),
	url(./../images/go_global-intlEn-cui-icon.woff) format('woff'),
	url(./../images/go_global-intlEn-cui-icon.ttf) format('truetype'),
	url(./../images/go_global-intlEn-cui-icon.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}

.cui-icon {
	font-family: 'cui-icon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
}

.cui-icon-add:before {
	content: "\EA01"
}

.cui-icon-cancel:before {
	content: "\EA02"
}

.cui-icon-confirm:before {
	content: "\EA03"
}

.cui-icon-date:before {
	content: "\EA04"
}

.cui-icon-download:before {
	content: "\EA05"
}

.cui-icon-edit:before {
	content: "\EA06"
}

.cui-icon-heart:before {
	content: "\EA07"
}

.cui-icon-help:before {
	content: "\EA08"
}

.cui-icon-home:before {
	content: "\EA09"
}

.cui-icon-infomation:before {
	content: "\EA0A"
}

.cui-icon-menu:before {
	content: "\EA0B"
}

.cui-icon-minus:before {
	content: "\EA0C"
}

.cui-icon-purchase:before {
	content: "\EA0D"
}

.cui-icon-refresh:before {
	content: "\EA0E"
}

.cui-icon-search:before {
	content: "\EA0F"
}

.cui-icon-star-outline:before {
	content: "\EA10"
}

.cui-icon-star:before {
	content: "\EA11"
}

.cui-icon-visible:before {
	content: "\EA12"
}

.cui-icon-double-down:before {
	content: "\EA13"
}

.cui-icon-double-left:before {
	content: "\EA14"
}

.cui-icon-double-right:before {
	content: "\EA15"
}

.cui-icon-double-up:before {
	content: "\EA16"
}

.cui-icon-down:before {
	content: "\EA17"
}

.cui-icon-left:before {
	content: "\EA18"
}

.cui-icon-more:before {
	content: "\EA19"
}

.cui-icon-play:before {
	content: "\EA1A"
}

.cui-icon-right:before {
	content: "\EA1B"
}

.cui-icon-triangle-down:before {
	content: "\EA1C"
}

.cui-icon-up:before {
	content: "\EA1D"
}
.foldIcon {
  font-family: 'cui-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  border: none;
  margin-top: -6px;
  font-size: 12px;
  color: #666a75;
}
.foldIcon:before {
  content: "\EA17";
  position: static;
  border: none;
  margin: 0px;
}
.cui-btn {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  border: solid 1px transparent;
  border-radius: 2px;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  transition: .2s;
}
.cui-btn-small {
  height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 30px;
}
.cui-btn-large {
  height: 48px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 46px;
}
.cui-btn-primary {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-primary:hover,
.cui-btn-primary.hover {
  box-shadow: 0 8px 16px rgba(246, 111, 106, 0.5);
}
.cui-btn-dark {
  border-color: #252b3a;
  background-color: #252b3a;
  color: #fff;
}
.cui-btn-outline-primary {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-primary:hover,
.cui-btn-outline-primary .hover {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-outline-dark {
  border: solid 1px #252b3a;
  color: #252b3a;
}
.cui-btn-outline-dark:hover,
.cui-btn-outline-dark .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-light {
  border: solid 1px #fff;
  color: #fff;
}
.cui-btn-outline-light:hover,
.cui-btn-outline-light .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-select {
  display: inline-block;
  position: relative;
  width: 220px;
  height: 32px;
  border: solid 1px #ddd;
  border-radius: 2px;
  background: white;
  cursor: pointer;
}
.cui-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 0;
  background: transparent;
  font-size: 14px;
  color: #252b3a;
  line-height: 30px;
  cursor: pointer;
}
.cui-select select::-ms-expand {
  display: none;
}
.cui-select i {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 30px;
  background: white;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.cui-select i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border: solid 4px transparent;
  border-bottom: none;
  border-top: solid 5px #666a75;
  margin-bottom: 1px;
}
.cui-select:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 32px;
  bottom: 5px;
  border-right: solid 1px #ddd;
}
.cui-select-trigger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
}
.cui-select-option-list {
  display: none;
}
.cui-select.open .cui-select-option-list {
  display: block;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: -1px;
  right: -1px;
  border: solid 1px #ddd;
  border-radius: 2px;
  margin-top: 5px;
}
.cui-select.open .cui-select-option-list li {
  padding: 4px 9px;
  background: white;
  font-size: 14px;
  line-height: 22px;
  color: #666a75;
}
.cui-select.open .cui-select-option-list li:hover {
  background: #f7f7f7;
  color: #f66f6a;
}
.cui-select.open .cui-select-option-list li.selected {
  background: #f66f6a;
  color: #fff;
}
.go-section .wrapper {
  max-width: 1210px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.go-section {
  padding-bottom: 50px;
}
.go-more-wrap {
  text-align: center;
}
.go-more-wrap a {
  display: inline-block;
  font-size: 14px;
  color: #666A75;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  transition: all 0.3s;
}
.go-more-wrap a span {
  transition: all 0.3s;
}
.go-more-wrap a .cui-icon {
  margin-left: 10px;
  transition: transform 0.2s;
}
.go-more-wrap a:hover {
  color: #f66f6a;
}
.go-more-wrap a:hover i {
  -ms-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}
@media (max-width: 1023px) {
  .go-section .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .go-section {
    padding-bottom: 30px;
  }
}
.go-section .go-title {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
.go-section .go-title.white h1 {
  color: #FFFFFF;
}
.go-section .go-title h1 {
  font-size: 32px;
  line-height: 36px;
  color: #252b3a;
}
.go-section .go-title h2 {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #666a75;
}
.go-section .go-title.dark h1 {
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .go-section .go-title {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .go-section .go-title h1 {
    font-size: 24px;
    line-height: 26px;
  }
  .go-section .go-title h2 {
    font-size: 12px;
    line-height: 18px;
  }
}
.foldIcon {
  font-family: 'cui-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  border: none;
  margin-top: -6px;
  font-size: 12px;
  color: #666a75;
}
.foldIcon:before {
  content: "\EA17";
  position: static;
  border: none;
  margin: 0px;
}
.cui-btn {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  border: solid 1px transparent;
  border-radius: 2px;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  transition: .2s;
}
.cui-btn-small {
  height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 30px;
}
.cui-btn-large {
  height: 48px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 46px;
}
.cui-btn-primary {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-primary:hover,
.cui-btn-primary.hover {
  box-shadow: 0 8px 16px rgba(246, 111, 106, 0.5);
}
.cui-btn-dark {
  border-color: #252b3a;
  background-color: #252b3a;
  color: #fff;
}
.cui-btn-outline-primary {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-primary:hover,
.cui-btn-outline-primary .hover {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-outline-dark {
  border: solid 1px #252b3a;
  color: #252b3a;
}
.cui-btn-outline-dark:hover,
.cui-btn-outline-dark .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-light {
  border: solid 1px #fff;
  color: #fff;
}
.cui-btn-outline-light:hover,
.cui-btn-outline-light .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-select {
  display: inline-block;
  position: relative;
  width: 220px;
  height: 32px;
  border: solid 1px #ddd;
  border-radius: 2px;
  background: white;
  cursor: pointer;
}
.cui-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 0;
  background: transparent;
  font-size: 14px;
  color: #252b3a;
  line-height: 30px;
  cursor: pointer;
}
.cui-select select::-ms-expand {
  display: none;
}
.cui-select i {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 30px;
  background: white;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.cui-select i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border: solid 4px transparent;
  border-bottom: none;
  border-top: solid 5px #666a75;
  margin-bottom: 1px;
}
.cui-select:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 32px;
  bottom: 5px;
  border-right: solid 1px #ddd;
}
.cui-select-trigger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
}
.cui-select-option-list {
  display: none;
}
.cui-select.open .cui-select-option-list {
  display: block;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: -1px;
  right: -1px;
  border: solid 1px #ddd;
  border-radius: 2px;
  margin-top: 5px;
}
.cui-select.open .cui-select-option-list li {
  padding: 4px 9px;
  background: white;
  font-size: 14px;
  line-height: 22px;
  color: #666a75;
}
.cui-select.open .cui-select-option-list li:hover {
  background: #f7f7f7;
  color: #f66f6a;
}
.cui-select.open .cui-select-option-list li.selected {
  background: #f66f6a;
  color: #fff;
}
.go-section .wrapper {
  max-width: 1210px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.go-section {
  padding-bottom: 50px;
}
.go-more-wrap {
  text-align: center;
}
.go-more-wrap a {
  display: inline-block;
  font-size: 14px;
  color: #666A75;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  transition: all 0.3s;
}
.go-more-wrap a span {
  transition: all 0.3s;
}
.go-more-wrap a .cui-icon {
  margin-left: 10px;
  transition: transform 0.2s;
}
.go-more-wrap a:hover {
  color: #f66f6a;
}
.go-more-wrap a:hover i {
  -ms-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}
@media (max-width: 1023px) {
  .go-section .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .go-section {
    padding-bottom: 30px;
  }
}
.go-section .go-title {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
.go-section .go-title.white h1 {
  color: #FFFFFF;
}
.go-section .go-title h1 {
  font-size: 32px;
  line-height: 36px;
  color: #252b3a;
}
.go-section .go-title h2 {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #666a75;
}
.go-section .go-title.dark h1 {
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .go-section .go-title {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .go-section .go-title h1 {
    font-size: 24px;
    line-height: 26px;
  }
  .go-section .go-title h2 {
    font-size: 12px;
    line-height: 18px;
  }
}
.go_global-banner {
  min-height: 350px;
  line-height: 350px;
  font-size: 0;
  overflow: hidden;
  background: url(./../images/go_global-intlEn-banner-pc.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
.support-body-banner {
  display: inline-block;
  font-size: 1rem;
  line-height: 1rem;
  vertical-align: middle;
  padding: 0 15px!important;
}
.support-body-banner .support-banner-content {
  text-align: center;
}
.support-body-banner .banner-title {
  font-size: 32px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: center;
  line-height: 40px;
}
.support-body-banner .banner-title + .banner-h1 {
  margin-top: 10px;
}
.support-body-banner .banner-h1 {
  font-weight: 700;
  font-size: 50px;
  color: #FFFFFF;
  letter-spacing: 1.85px;
  text-align: center;
  line-height: 68px;
}
.support-body-banner .banner-h1 + .banner-p {
  margin-top: 15px;
}
.support-body-banner .banner-p {
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 38px;
}
@media (max-width: 768px) {
  .go_global-banner {
    background: url(./../images/go_global-intlEn-banner-mb.jpg) no-repeat top center;
  }
  .support-body-banner {
    margin-top: 0px;
  }
  .support-body-banner .support-banner-content {
    margin-bottom: 5px;
    background: none;
    padding: 0;
  }
  .support-body-banner .banner-title {
    font-size: 18px;
    line-height: 22px;
  }
  .support-body-banner .banner-h1 {
    font-size: 32px;
    line-height: 46px;
  }
  .support-body-banner .banner-p {
    font-size: 16px;
    line-height: 20px;
  }
}
.go_global-pagenav {
  height: 48px;
  line-height: 48px;
  background: #fff;
  border-bottom: 2px solid #ddd;
}
.go_global-pagenav .cloudbr-btn-swiper {
  display: none;
}
.cloudbr-wrapper.swiper-container {
  text-align: center;
}
.fade .navigation,
.fade .head-tools {
  -webkit-transform: translate3d(0, -80px, 0);
  -ms-transform: translate3d(0, -80px, 0);
  transform: translate3d(0, -80px, 0);
  transition: all .5s ease;
  opacity: 0;
  visibility: hidden;
  filter: alpha(opacity=0);
}
.partner-pagenav-nav {
  width: 1000px;
  display: inline-block;
  font-size: 0;
  text-align: center;
}
.partner-pagenav-nav li.pagenav-slide {
  display: inline-block;
  width: auto;
}
.partner-pagenav-nav li.pagenav-slide + li.pagenav-slide {
  margin-left: 30px;
}
.partner-pagenav-nav .pagenav-li {
  display: inline-block;
}
.partner-pagenav-nav .pagenav-li + .pagenav-li {
  margin-left: 30px;
}
.partner-pagenav-nav a {
  display: block;
  position: relative;
  padding: 0 14px;
  font-size: 14px;
  color: #252B3A;
}
.partner-pagenav-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #F66F6B;
  transition: .2s;
}
.partner-pagenav-nav .pagenav-li.active a:after {
  left: 0;
  width: 100%;
}
.partner-pagenav-nav .pagenav-li:hover a {
  color: #F66F6B;
  transition: 0.2s;
}
.go_global-pagenav.fixed .cloudbr-wrapper {
  position: fixed;
  z-index: 199;
  top: 40px;
  left: 50%;
  width: 1000px;
  max-width: 1200px;
  margin-left: -500px;
}
@media (max-width: 1023px) {
  .go_global-pagenav.fixed .cloudbr-wrapper {
    left: 0;
    width: 100%;
    margin-left: 0;
    top: 44px;
    background: rgba(0, 0, 0, 0.4);
  }
}
.go_global-pagenav.fixed .partner-pagenav-nav a {
  color: white;
}
.go_global-pagenav.fixed .partner-pagenav-nav a:after {
  background: #e41f2b;
}
.go_global-pagenav.fixed .partner-pagenav-nav .pagenav-li:hover a {
  color: white;
}
/*@media (max-width: 1024px){
  .partner-pagenav-nav {
    width: 700px;

    li.pagenav-slide{

      & + li.pagenav-slide {
        margin-left: 50px;
      }
    }
    .pagenav-li {

      & + .pagenav-li {
        margin-left: 50px;
      }
    }


    a {
      display: block;
      position: relative;
      padding: 0 14px;
      font-size: 18px;
      color: #252B3A;

      &:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        background: #F66F6B;
        transition: .2s;
      }
    }

    .pagenav-li.active {
      a {
        &:after {
          left: 0;
          width: 100%;
        }
      }
    }

    .pagenav-li:hover {
      a {
        color: #F66F6B;
      }
    }
  }
}*/
@media (max-width: 1023px) {
  .partner-pagenav-nav {
    width: 100%;
    display: flex;
  }
  .partner-pagenav-nav li.pagenav-slide {
    text-align: left;
  }
  .partner-pagenav-nav li.pagenav-slide + li.pagenav-slide {
    margin-left: 0px;
  }
  .partner-pagenav-nav .pagenav-li {
    width: 33.33%;
    text-align: center;
  }
  .partner-pagenav-nav .pagenav-li a {
    display: inline-block;
    font-size: 14px;
    padding: 0 12px;
  }
  .partner-pagenav-nav .pagenav-li + .pagenav-li {
    margin-left: 0px;
  }
  .go_global-pagenav {
    display: none;
    line-height: 44px;
    height: 44px;
    border-bottom: 1px solid #dddddd;
  }
  .go_global-pagenav .cloudbr-wrapper.swiper-container {
    padding: 0;
  }
  .go_global-pagenav .cloudbr-btn-swiper {
    display: block;
    width: 24px;
    height: 24px;
    top: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .go_global-pagenav .cloudbr-btn-swiper.swiper-button-prev {
    background-image: url(./../images/go_global-intlEn-prev.svg);
  }
  .go_global-pagenav .cloudbr-btn-swiper.swiper-button-next {
    background-image: url(./../images/go_global-intlEn-next.svg);
  }
  .go_global-pagenav .cloudbr-btn-swiper.swiper-button-next.cloudbr-disabled,
  .go_global-pagenav .cloudbr-btn-swiper.swiper-button-prev.cloudbr-disabled {
    opacity: 0;
  }
  .go_global-pagenav.fixed .cloudbr-btn-swiper {
    height: 20px;
    top: 37px;
  }
  .go_global-pagenav.fixed .cloudbr-btn-swiper.swiper-button-prev {
    background-image: url(./../images/go_global-intlEn-prev-f.svg);
  }
  .go_global-pagenav.fixed .cloudbr-btn-swiper.swiper-button-next {
    background-image: url(./../images/go_global-intlEn-next-f.svg);
  }
  .partner-pagenav-nav .pagenav-li:hover a {
    color: #252B3A;
  }
}
@media (max-width: 375px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 4px;
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 4px;
  }
}
@media (max-width: 330px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 0;
  }
}
.go-section.go_global-summary.unfill {
  margin-top: -1px;
  padding-bottom: 30px;
}
.go-section.go_global-summary.unfill .go-body .summary-content .brokenLine {
  position: absolute;
  left: 500px;
  top: -30px;
  height: 4px;
  width: 100px;
  background-color: #f66f6a;
  display: block;
}
.go-section.go_global-summary.unfill .go-body .summary-content img {
  width: 420px;
  height: 256px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  float: left;
  border-radius: 2px;
}
.go-section.go_global-summary.unfill .go-body .summary-content .summary-info {
  position: relative;
  min-height: 220px;
  padding-left: 500px;
  margin: 70px 0 0 0px;
  padding-right: 80px;
}
.go-section.go_global-summary.unfill .go-body .summary-content .summary-info h2 {
  font-size: 22px;
  color: #130000;
  line-height: 32px;
  margin-bottom: 10px;
}
.go-section.go_global-summary.unfill .go-body .summary-content .summary-info .summary-p {
  font-size: 14px;
  color: #666A75;
  line-height: 24px;
}
@media (max-width: 1023px) {
  .go-section.go_global-summary.unfill .go-body .summary-content .brokenLine {
    left: 50%;
    margin-left: -50px;
    top: -20px;
    width: 100px;
  }
  .go-section.go_global-summary.unfill .go-body .summary-content img {
    width: 100%;
    height: auto;
    float: none;
    max-width: 375px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.1);
  }
  .go-section.go_global-summary.unfill .go-body .summary-content .summary-info {
    margin: 0;
    padding: 0 0px;
    min-height: 0;
    background: none;
    margin-top: 55px;
    text-align: center;
  }
  .go-section.go_global-summary.unfill .go-body .summary-content .summary-info .summary-p {
    text-align: left;
  }
}
/** write less here**/
.go-section.go_global-why {
  background: #F9FAFF;
}
.go-section .pri-col-sm-4 {
  padding: 10px;
  width: 33.33333333%;
}
.go-section .product-item-box {
  display: block;
  height: 116px;
  background: url(./../images/go_global-intlEn-why-pc.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(1) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_01.svg) no-repeat center;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(3) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_02.svg) no-repeat bottom center;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(5) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_03.svg) no-repeat bottom center;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(7) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_04.svg) no-repeat bottom center;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(9) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_05.svg) no-repeat bottom center;
  background-size: cover;
}
.go-section .pri-col-sm-4.col-mb-12:nth-child(11) .icons-product-md {
  background: url(./../images/go_global-intlEn-icon_06.svg) no-repeat bottom center;
  background-size: cover;
}
.go-section .cf:before,
.go-section .cf:after {
  content: " ";
  display: table;
  line-height: 0;
}
.go-section .icons-product-md {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 48px;
}
.go-section .product-item-box .icon {
  float: left;
  display: block;
  margin-left: 20px;
  margin-top: 18px;
  width: 80px;
  height: 80px;
}
.go-section .product-item-box .text-box {
  float: left;
  width: calc(100% - 140px);
  margin-top: 30px;
  margin-left: 20px;
}
.go-section .product-item-box h4 {
  font-size: 20px;
  color: #FFFFFF;
  line-height: 26px;
  margin-bottom: 10px;
  cursor: default;
}
.go-section .product-item-box p {
  color: #FFFFFF;
  line-height: 20px;
  font-size: 16px;
  cursor: default;
  opacity: .8;
  max-height: 36px;
}
@media (min-width: 1024px) {
  .go-section .product-item-box h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
  }
  .go-section .product-item-box p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.go-section .mb-space {
  height: 0;
}
@media (max-width: 1199px) {
  .go-section .product-item-box .icons-product-md {
    font-size: 32px;
  }
}
@media (max-width: 1023px) {
  .go-section .product-item-box {
    border: none;
    height: auto;
    display: block;
  }
  .go-section .product-item-box .text-box {
    float: left;
    width: calc(100% - 135px);
    margin-top: 28px;
  }
  .go-section .pri-col-sm-4 {
    width: 100%;
    float: initial;
    padding: 0px;
    padding-bottom: 20px;
  }
  .go-section .product-item-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 22px;
  }
  .go-section .product-item-box p {
    font-size: 12px;
    line-height: 18px;
    max-height: none;
  }
  .go-section .south-activity-grid {
    background: url(./../images/go_global-intlEn-why-mb.jpg) no-repeat bottom center;
    background-size: cover;
    margin: 0px!important;
  }
  .go-section .pri-col-sm-4.col-mb-12 .product-item-box {
    background: none;
    background-size: cover;
    /* height: 100px;*/
  }
  .go-section .pri-col-sm-4.col-mb-12 .icons-product-md {
    width: 80px;
    height: 80px;
    margin-top: 10px;
  }
  .go-section .mb-space {
    height: 10px;
    width: 100%;
    background: #F2F3FF;
  }
  .go-section .mb-space:last-child {
    display: none;
  }
}
@media (min-width: 1024px) {
  .go-section .product-item-box .text-box-en {
    width: calc(100% - 169px);
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
  }
  .go-section .text-box-en p {
    white-space: initial;
    font-size: 12px;
    line-height: 18px;
  }
  .go-section .text-box-en h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
  }
  .go-section .sub-southafrica-title-object-en {
    display: block!important;
    margin-top: 5px;
    margin-bottom: 0px!important;
  }
  .go-section .sub-southafrica-title-time-en {
    display: block!important;
    margin-top: 0px!important;
  }
}
@media (max-width: 360px) {
  .go-section .text-box-en h4 {
    font-size: 14px;
  }
}
.foldIcon {
  font-family: 'cui-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  border: none;
  margin-top: -6px;
  font-size: 12px;
  color: #666a75;
}
.foldIcon:before {
  content: "\EA17";
  position: static;
  border: none;
  margin: 0px;
}
.cui-btn {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  border: solid 1px transparent;
  border-radius: 2px;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  transition: .2s;
}
.cui-btn-small {
  height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 30px;
}
.cui-btn-large {
  height: 48px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 46px;
}
.cui-btn-primary {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-primary:hover,
.cui-btn-primary.hover {
  box-shadow: 0 8px 16px rgba(246, 111, 106, 0.5);
}
.cui-btn-dark {
  border-color: #252b3a;
  background-color: #252b3a;
  color: #fff;
}
.cui-btn-outline-primary {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-primary:hover,
.cui-btn-outline-primary .hover {
  border-color: #f66f6a;
  background-color: #f66f6a;
  color: #fff;
}
.cui-btn-outline-dark {
  border: solid 1px #252b3a;
  color: #252b3a;
}
.cui-btn-outline-dark:hover,
.cui-btn-outline-dark .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-btn-outline-light {
  border: solid 1px #fff;
  color: #fff;
}
.cui-btn-outline-light:hover,
.cui-btn-outline-light .hover {
  border: solid 1px #f66f6a;
  color: #f66f6a;
}
.cui-select {
  display: inline-block;
  position: relative;
  width: 220px;
  height: 32px;
  border: solid 1px #ddd;
  border-radius: 2px;
  background: white;
  cursor: pointer;
}
.cui-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 0;
  background: transparent;
  font-size: 14px;
  color: #252b3a;
  line-height: 30px;
  cursor: pointer;
}
.cui-select select::-ms-expand {
  display: none;
}
.cui-select i {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 30px;
  background: white;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.cui-select i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border: solid 4px transparent;
  border-bottom: none;
  border-top: solid 5px #666a75;
  margin-bottom: 1px;
}
.cui-select:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 32px;
  bottom: 5px;
  border-right: solid 1px #ddd;
}
.cui-select-trigger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
}
.cui-select-option-list {
  display: none;
}
.cui-select.open .cui-select-option-list {
  display: block;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: -1px;
  right: -1px;
  border: solid 1px #ddd;
  border-radius: 2px;
  margin-top: 5px;
}
.cui-select.open .cui-select-option-list li {
  padding: 4px 9px;
  background: white;
  font-size: 14px;
  line-height: 22px;
  color: #666a75;
}
.cui-select.open .cui-select-option-list li:hover {
  background: #f7f7f7;
  color: #f66f6a;
}
.cui-select.open .cui-select-option-list li.selected {
  background: #f66f6a;
  color: #fff;
}
.go-global-solution {
  overflow: hidden;
}
.section-title {
  font-size: 32px;
  color: #252B3A;
  letter-spacing: 0;
  line-height: 46px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.section-mall {
  background-position: center top;
  background-size: cover;
  max-width: 1180px;
  margin: 0 auto;
}
@keyframes mall-bg {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -608px;
  }
}
.mall-app > ul {
  /*   .clearfix();*/
  margin-left: -10px;
  margin-right: -10px;
}
.mall-app > ul > li {
  float: left;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.mall-app-card {
  position: relative;
  height: 470px;
  overflow: hidden;
  background-color: grey;
  text-align: center;
}
.mall-app-card-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: .2s;
}
.mall-app-card-top {
  position: relative;
  height: 48%;
}
.mall-app-card-top i {
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  transition: .2s;
}
.mall-app-card-top h2 {
  position: absolute;
  top: 148px;
  right: 0;
  left: 0;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  transition: .2s;
}
.mall-app-card-top h2:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 0;
  height: 4px;
  margin: 15px auto;
  background-color: #f66f6a;
  transition: .2s .2s;
}
.mall-app-card-top p {
  position: absolute;
  top: 155px;
  right: 0;
  left: 0;
  padding-left: 20px;
  padding-right: 20px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  opacity: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /*transition: .2s;*/
}
.mall-app-card-bottom {
  position: relative;
  height: 50%;
  padding-top: 0px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.mall-app-card-bottom li {
  margin-bottom: 10px;
  line-height: 20px;
}
.mall-app-card-bottom li a:hover {
  color: #f66f6a;
}
.mall-app-card-bottom .mall-tag {
  display: inline-block;
  width: 0;
}
.mall-app-card-bottom .mall-tag span {
  display: inline-block;
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 2px;
  margin-left: 5px;
  background-color: #f66f6a;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mall-app-card:hover .mall-app-card-bg {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
@media (min-width: 1024px) {
  .mall-app-card:hover .mall-app-card-top i {
    opacity: 0;
  }
  .mall-app-card:hover .mall-app-card-top h2 {
    top: 85px;
  }
  .mall-app-card:hover .mall-app-card-top h2:before {
    width: 68px;
  }
  .mall-app-card:hover .mall-app-card-top p {
    margin-top: 0;
    opacity: 1;
  }
}
@media (max-width: 1366px) {
  .mall-app-card {
    height: 362px;
  }
  .mall-app-card-top i {
    top: 50px;
  }
  .mall-app-card-top h2 {
    top: 140px;
  }
  .mall-app-card-top p {
    top: 118px;
    padding-left: 30px;
    padding-right: 30px;
    height: 44px;
  }
  .mall-app-card-bottom {
    padding-top: 16px;
  }
}
@media (max-width: 1366px) and (min-width: 1024px) {
  .mall-app-card:hover .mall-app-card-top h2 {
    top: 32px;
  }
}
@media (max-width: 1023px) {
  .section-mall {
    background: white;
  }
  .mall-app > ul {
    margin-left: -3px;
    margin-right: -3px;
  }
  .mall-app > ul > li {
    width: 50%;
    padding-left: 3px;
    padding-right: 3px;
  }
  .mall-app > ul > li:nth-child(2) ~ li {
    margin-top: 6px;
  }
  .mall-app-card {
    height: 170px;
  }
  .mall-app-card-top {
    height: 100%;
  }
  .mall-app-card-top i {
    top: 30px ;
  }
  .mall-app-card-top h2 {
    top: 87px;
    font-size: 16px;
    line-height: 20px;
    padding: 0 10px;
  }
  .mall-app-card-top h2:before {
    margin-top: 10px;
    width: 40px;
  }
  .mall-app-bottom {
    display: none;
  }
  .mall-app-card:hover .mall-app-card-top h2 {
    color: #f66f6a;
  }
}
.mall-partner > ul {
  margin-top: -25px;
}
.mall-partner > ul > li {
  float: left;
  width: 20%;
  padding-top: 25px;
}
.mall-partner-logo-box {
  display: block;
  position: relative;
  height: 100%;
}
.mall-partner-logo {
  width: 140px;
  height: 60px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: .2s;
}
.mall-partner-logo.logo-hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
}
.mall-partner-logo.logo-mb {
  display: none;
}
.mall-partner-logo-box:hover .mall-partner-logo.logo-hover {
  opacity: 1;
}
@media (max-width: 1380px) {
  .section-wrapper {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1023px) {
  .mall-partner > ul > li {
    width: 50%;
  }
  .mall-partner-logo.logo-grey,
  .mall-partner-logo.logo-hover {
    display: none;
  }
  .mall-partner-logo.logo-mb {
    display: block;
    width: 105px;
    height: 45px;
  }
}
@charset "utf-8";
/****basis start****/
.activity.light {
  color: #666a75;
  background-color: #dce6ff;
}
.activity.dark {
  background-color: #100768;
}
.black {
  color: #252b3a;
}
.white {
  color: #fff;
}
.gray-b {
  color: #a0a2a8;
}
.gray-w {
  color: rgba(255, 255, 255, 0.6);
}
.link,
.blue {
  color: #387cf0;
}
.activity.light .link:hover {
  color: #2d65c4;
}
.activity.dark .link:hover {
  color: #609bff;
}
.red,
.price {
  color: #f66f6a;
}
.yellow {
  color: #f7a655;
}
img {
  display: block;
  width: 100%;
}
.h1 {
  font-size: 48px;
  line-height: 60px;
}
.h2 {
  font-size: 28px;
  line-height: 36px;
}
.h3 {
  font-size: 24px;
  line-height: 30px;
}
.h4 {
  font-size: 22px;
  line-height: 28px;
}
.h5 {
  font-size: 20px;
  line-height: 26px;
}
.h6 {
  font-size: 18px;
  line-height: 22px;
}
.h7 {
  font-size: 16px;
  line-height: 20px;
}
.h8 {
  font-size: 14px;
  line-height: 18px;
}
.h9 {
  font-size: 12px;
  line-height: 16px;
}
.p1 {
  font-size: 16px;
  line-height: 24px;
}
.p2 {
  font-size: 14px;
  line-height: 22px;
}
.p3 {
  font-size: 12px;
  line-height: 18px;
}
.lh1 {
  line-height: 1 !important;
}
.bdr2 {
  border-radius: 2px;
}
.bdr4 {
  border-radius: 4px;
}
.layout-middle {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .h2 {
    font-size: 20px;
    line-height: 22px;
  }
  .h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .h5 {
    font-size: 14px;
    line-height: 18px;
  }
  .h6 {
    font-size: 14px;
    line-height: 18px;
  }
  .h7 {
    font-size: 14px;
    line-height: 18px;
  }
  .h8 {
    font-size: 14px;
    line-height: 18px;
  }
  .h9 {
    font-size: 12px;
    line-height: 16px;
  }
  .p1 {
    font-size: 14px;
    line-height: 22px;
  }
  .p2 {
    font-size: 12px;
    line-height: 18px;
  }
  .p3 {
    font-size: 10px;
    line-height: 16px;
  }
}
/****basis end****/
/****button start****/
.btn-s,
.btn-m,
.btn-l {
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  border: 1px solid;
  cursor: pointer;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.btn-s {
  padding: 0 19px;
  font-size: 14px;
  line-height: 30px;
}
.btn-m {
  padding: 0 19px;
  font-size: 16px;
  line-height: 38px;
}
.btn-l {
  padding: 0 29px;
  font-size: 16px;
  line-height: 38px;
}
.btn-red {
  color: #fff;
  border-color: #f66f6a;
  background-color: #f66f6a;
}
.light .btn-red:hover {
  box-shadow: 0 8px 16px 0 rgba(246, 111, 106, 0.3);
}
.dark .btn-red:hover {
  background: rgba(246, 111, 106, 0.9);
}
.light .btn-white {
  color: #f66f6a;
  border-color: #f66f6a;
}
.light .btn-white:hover {
  color: #fff;
  border-color: #f66f6a;
  background-color: #f66f6a;
}
.dark .btn-white {
  color: #fff;
  border-color: #fff;
}
.dark .btn-white:hover {
  color: #fff;
  border-color: #f66f6a;
  background: #f66f6a;
}
.light .btn-black {
  color: #252b3a;
  border-color: #252b3a;
}
.disable {
  pointer-events: none;
}
.light .btn-s.disable,
.light .btn-m.disable,
.light .btn-l.disable {
  color: #a0a2a8;
  border-color: #ddd;
  background-color: #f7f7f7;
}
@media (max-width: 768px) {
  .btn-s,
  .btn-m,
  .btn-l {
    padding: 0 14px;
    font-size: 14px;
    line-height: 30px;
  }
  .light .btn-red:hover {
    box-shadow: none;
  }
  .dark .btn-red:hover {
    background: #f66f6a;
  }
  .light .btn-white:hover {
    color: #f66f6a;
    border-color: #f66f6a;
    background-color: inherit;
  }
  .dark .btn-white:hover {
    color: #fff;
    border-color: #fff;
    background: inherit;
  }
}
/****button end****/
/****radio & checkbox start****/
.radio,
.checkbox {
  color: #666a75;
  font-size: 0;
}
.dark .radio,
.dark .checkbox {
  color: rgba(255, 255, 255, 0.8);
}
.radio .ui-title,
.radio ul,
.radio li,
.checkbox .ui-title,
.checkbox ul,
.checkbox li {
  display: inline-block;
}
.radio .ui-title,
.checkbox .ui-title {
  font-size: 14px;
  line-height: 16px;
  vertical-align: middle;
}
.radio[ui="radio2"] .ui-title,
.radio[ui="radio3"] .ui-title {
  line-height: 32px;
  vertical-align: top;
}
.radio li,
.checkbox li {
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
.radio[ui="radio1"] li,
.checkbox li {
  line-height: 16px;
  vertical-align: middle;
}
.radio[ui="radio1"] li + li,
.checkbox li + li {
  margin-left: 20px;
}
.radio[ui="radio1"] li::before {
  content: '';
}
.radio[ui="radio1"] li::before,
.checkbox li i {
  display: inline-block;
  width: 16px;
  height: 16px;
  padding: 2px;
  margin-right: 10px;
  border-radius: 16px;
  border: 1px solid #ddd;
  background-color: #fff;
  vertical-align: top;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.radio[ui="radio1"] li:hover::before {
  border: 1px solid #f66f6a;
}
.radio[ui="radio1"] li.active::before {
  border: 1px solid #f66f6a;
}
.radio[ui="radio1"] li::after {
  content: '';
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  top: 5px;
  left: 5px;
  border-radius: 16px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.radio[ui="radio1"] li.active::after {
  background-color: #f66f6a;
}
.radio[ui="radio2"] li,
.radio[ui="radio3"] li {
  padding: 0 9px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.radio[ui="radio2"] li {
  border-radius: 2px;
}
.radio[ui="radio2"] li + li {
  margin-left: 10px;
}
.radio[ui="radio2"] li:hover,
.radio[ui="radio2"] li.active {
  color: #f66f6a;
  border: 1px solid #f66f6a;
}
.radio[ui="radio3"] li + li {
  border-left: none;
}
.radio[ui="radio3"] li:first-child {
  border-radius: 2px 0 0 2px;
}
.radio[ui="radio3"] li:last-child {
  border-radius: 0 2px 2px 0;
}
.radio[ui="radio3"] li:hover {
  color: #f66f6a;
}
.radio[ui="radio3"] li.active {
  color: #fff;
  border-color: #f66f6a;
  background-color: #f66f6a;
}
.checkbox li i {
  position: relative;
  border-radius: 2px !important;
}
.checkbox li:hover i {
  border-color: #f66f6a;
}
.checkbox li.active i {
  border-color: #f66f6a;
  background-color: #f66f6a;
}
.checkbox li.active i::before,
.checkbox li.active i::after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: #fff;
}
.checkbox li.active i::before {
  width: 5px;
  top: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox li.active i::after {
  width: 8px;
  top: 6px;
  right: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/****radio & checkbox end****/
/****dropdown start****/
.dropdown {
  position: relative;
  width: 100%;
  color: #666a75;
  font-size: 0;
}
.dark .dropdown,
.dark .dropdown {
  color: rgba(255, 255, 255, 0.8);
}
.dropdown .ui-title {
  display: inline-block;
  width: 56px;
  color: #666a75;
  font-size: 14px;
  line-height: 32px;
  margin-right: 10px;
  vertical-align: top;
  white-space: nowrap;
}
.dropdown.small .ui-title {
  line-height: 24px;
}
.dropdown .ui-reveal {
  display: inline-table;
  width: calc(100% - 66px);
  height: 32px;
  padding: 4px 0 4px 9px;
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
}
.dropdown.small .ui-reveal {
  height: 22px;
  padding-left: 5px;
  line-height: 14px;
}
.dropdown .ui-reveal:hover {
  border-color: #a0a2a8;
}
.dropdown .ui-reveal span {
  display: table-cell;
  padding-right: 10px;
  color: #252b3a;
  vertical-align: middle;
}
.dropdown .ui-reveal i {
  position: relative;
  display: table-cell;
  width: 30px;
  height: 22px;
  border-left: 1px solid #ddd;
  vertical-align: middle;
}
.dropdown.small .ui-reveal i {
  height: 14px;
}
.dropdown .ui-reveal i::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 9px;
  left: 9px;
  border-width: 5px;
  border-style: solid;
  border-color: #666a75 #fff #fff #fff;
}
.dropdown.small .ui-reveal i::after {
  top: 5px;
}
.dropdown .ui-content {
  display: none;
  position: absolute;
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}
.dropdown li {
  padding: 0 9px;
  color: #666a75;
  font-size: 14px;
  line-height: 32px;
}
.dropdown.small li {
  line-height: 24px;
}
.dropdown li:hover {
  color: #f66f6a;
  background-color: #f7f7f7;
}
.dropdown li:active {
  color: #fff;
  background-color: #f66f6a;
}
@media (max-width: 768px) {
  .dropdown .ui-reveal:hover {
    border: 1px solid #ddd;
  }
  .dropdown li:hover,
  .dropdown li:active {
    color: #666a75;
    background-color: #fff;
  }
}
/****dropdown end****/
/****tip start****/
.tip {
  position: absolute;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
.tip.strip {
  width: 65px;
  height: 65px;
  top: 0;
  right: 0;
  overflow: hidden;
}
.tip.strip.small {
  width: 50px;
  height: 50px;
}
.tip.strip p {
  position: absolute;
  width: 150%;
  top: 13px;
  left: -9px;
  line-height: 22px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tip.strip.red p {
  background-color: #f66f6a;
}
.tip.strip.yellow p {
  background-color: #f7a655;
}
.tip.strip.small p {
  top: 10px;
  left: -6px;
  line-height: 18px;
}
.tip.flag {
  width: 60px;
  height: 60px;
  top: -5px;
  padding: 2px 10px 10px 7px;
  line-height: 50px;
  background-repeat: no-repeat;
  /*background-image: url(../images/flag.png);*/
  background-size: auto 100%;
}
.tip.flag.red {
  background-position: 0;
}
.tip.flag.yellow {
  background-position: -60px;
}
.tip.pop1 {
  padding: 0 5px;
  line-height: 17px;
  font-weight: bold;
  border-radius: 2px;
  border-bottom: none !important;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.pop1.red {
  color: #f66f6a;
  border: 1px solid #f66f6a;
}
.pop1.yellow {
  color: #f7a655;
  border: 1px solid #f7a655;
}
.dark .tip.pop1 {
  color: #fff;
  border: 1px solid #fff;
}
.tip.pop1::before,
.tip.pop1::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(50% - 3px);
  height: 1px;
  bottom: 0;
  right: 0;
}
.tip.pop1.red::before,
.tip.pop1.red::after {
  background-color: #f66f6a;
}
.tip.pop1.yellow::before,
.tip.pop1.yellow::after {
  background-color: #f7a655;
}
.dark .tip.pop1::before,
.dark .tip.pop1::after {
  background-color: #fff;
}
.tip.pop1:before {
  left: 0;
}
.tip.pop1 p::before,
.tip.pop1 p::after {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 1px;
  bottom: -3px;
  right: calc(50% - 5px);
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.tip.pop1.red p::before,
.tip.pop1.red p::after {
  background-color: #f66f6a;
}
.tip.pop1.yellow p::before,
.tip.pop1.yellow p::after {
  background-color: #f7a655;
}
.dark .tip.pop1 p::before,
.dark .tip.pop1 p::after {
  background-color: #fff;
}
.tip.pop1 p::after {
  left: calc(50% - 5px);
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
}
.tip.pop2 {
  padding: 0 5px;
  line-height: 16px;
  font-weight: bold;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.tip.pop2.red {
  color: #f66f6a;
  border: 1px solid #f66f6a;
}
.tip.pop2.yellow {
  color: #f7a655;
  border: 1px solid #f7a655;
}
.dark .tip.pop2 {
  color: #fff;
  border: 1px solid #fff;
}
/****tip end****/
/****icon start****/
.icon40,
.icon48,
.icon64,
.icon120,
.iconNum {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.icon40 {
  width: 40px;
  height: 40px;
}
.icon48 {
  width: 48px;
  height: 48px;
}
.icon64 {
  width: 64px;
  height: 64px;
}
.icon120 {
  width: 120px;
  height: 120px;
}
.icon40.icon2 {
  background-position: -40px;
}
.icon40.icon3 {
  background-position: -80px;
}
.icon40.icon4 {
  background-position: -120px;
}
.icon40.icon5 {
  background-position: -160px;
}
.icon40.icon6 {
  background-position: -200px;
}
.icon48.icon2 {
  background-position: -48px;
}
.icon48.icon3 {
  background-position: -96px;
}
.icon48.icon4 {
  background-position: -144px;
}
.icon48.icon5 {
  background-position: -192px;
}
.icon48.icon6 {
  background-position: -240px;
}
.icon64.icon2 {
  background-position: -64px;
}
.icon64.icon3 {
  background-position: -128px;
}
.icon64.icon4 {
  background-position: -192px;
}
.icon64.icon5 {
  background-position: -256px;
}
.icon64.icon6 {
  background-position: -320px;
}
.icon120.icon2 {
  background-position: -120px;
}
.icon120.icon3 {
  background-position: -240px;
}
.icon120.icon4 {
  background-position: -360px;
}
.icon120.icon5 {
  background-position: -480px;
}
.icon120.icon6 {
  background-position: -600px;
}
.iconNum {
  width: 36px;
  height: 75px;
  /*background-image: url(../images/iconNum-pc-blue.png);*/
}
.iconNum.active,
.active .iconNum {
  /*background-image: url(../images/iconNum-pc-white.png);*/
}
.iconNum.icon2 {
  background-position: -36px;
}
.iconNum.icon3 {
  background-position: -72px;
}
.iconNum.icon4 {
  background-position: -108px;
}
.iconNum.icon5 {
  background-position: -144px;
}
.iconNum.icon6 {
  background-position: -180px;
}
.iconNum.icon7 {
  background-position: -216px;
}
.iconNum.icon8 {
  background-position: -252px;
}
.iconNum.icon9 {
  background-position: -288px;
}
.iconFade {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.iconFade.active,
.active .iconFade {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.iconFade::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 3px;
  left: 5px;
  border-left: 2px solid #979797;
  border-bottom: 2px solid #979797;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .iconNum {
    width: 72px;
    height: 72px;
    /*background-image: url(../images/iconNum-mb-blue.png);*/
  }
  .iconNum.active,
  .active .iconNum {
    /*background-image: url(../images/iconNum-mb-white.png);*/
  }
  .iconNum.icon2 {
    background-position: -72px;
  }
  .iconNum.icon3 {
    background-position: -144px;
  }
  .iconNum.icon4 {
    background-position: -216px;
  }
  .iconNum.icon5 {
    background-position: -288px;
  }
  .iconNum.icon6 {
    background-position: -360px;
  }
  .iconNum.icon7 {
    background-position: -432px;
  }
  .iconNum.icon8 {
    background-position: -504px;
  }
  .iconNum.icon9 {
    background-position: -576px;
  }
  .iconFade {
    width: 12px;
    height: 12px;
  }
  .iconFade::after {
    width: 7px;
    height: 7px;
    top: 1px;
    left: 2px;
    border-width: 1px;
  }
}
/****icon end****/
/****layout start****/
#activity {
  padding-top: 60px;
}
.section {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
  background-position: center top;
}
.headline,
.content {
  max-width: 1180px;
  margin: 0 auto;
}
.itemCount2 > * {
  width: 50%;
}
.itemCount3 > * {
  width: 33.33333333%;
}
.itemCount4 > * {
  width: 25%;
}
.itemCount5 > * {
  width: 20%;
}
.itemCount6 > * {
  width: 16.66666667%;
}
.layout {
  float: left;
  padding: 10px;
}
.card {
  position: relative;
  box-shadow: 0 8px 16px 0 rgba(147, 154, 255, 0.1);
  border-radius: 4px;
}
.bgcf {
  background-color: #fff;
}
.table-row {
  display: table-row;
}
.table-row .item {
  display: table-cell;
  width: 1180px;
}
@media (max-width: 1199px) {
  .content {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 0 15px 30px;
  }
  .section.columns {
    padding: 0 0 30px;
  }
  .mbbr0 {
    border-radius: 0;
  }
}
/****layout end****/
/****banner start****/
.section.banner {
  height: 350px;
  padding-bottom: 0;
}
.banner .content {
  height: 350px;
}
.banner-pc {
  display: table;
  width: 100%;
  height: 100%;
}
.banner-mb {
  display: none;
}
.bannner-layout {
  display: table-cell;
  vertical-align: middle;
}
.banner .content p + p {
  margin-top: 10px;
}
.banner .content .btn-m {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .banner-pc {
    display: none;
  }
  .banner-mb {
    display: block;
  }
}
/****banner end****/
.headline {
  margin-bottom: 30px;
  text-align: center;
}
.light .headline {
  color: #252b3a;
}
.dark .headline {
  color: #fff;
}
.headline .h7 {
  margin-top: 10px;
}
/************************modal star************************/
.shade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 200;
  opacity: .8;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  background-color: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.modal-s {
  width: 400px;
}
.modal-m {
  width: 550px;
}
.modal-l {
  width: 700px;
}
.modal-xl {
  width: 900px;
}
.mod-close {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  overflow: hidden;
  transform: rotate(45deg);
}
.mod-close::before,
.mod-close::after {
  content: '';
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  top: 10px;
  left: 0;
  background-color: #999;
}
.mod-close::after {
  width: 2px;
  height: 22px;
  top: 0;
  left: 10px;
}
.mod-header {
  padding-top: 30px;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.mod-caption {
  padding-left: 27px;
  border-left: 3px solid #f66f6a;
}
.mod-body {
  padding: 0 30px;
  margin: 30px 0;
  *zoom: 1;
}
.mod-body.scroll {
  overflow-y: scroll;
  padding-right: 23px;
  margin-right: 2px;
}
.mod-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 8px;
  background-color: rgba(51, 51, 51, 0.6);
}
.mod-body::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #fff;
}
.mod-body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: rgba(51, 51, 51, 0.6);
}
.modal-m .mod-body.scroll {
  height: 237px;
}
.modal-l .mod-body.scroll {
  height: 349px;
}
.modal-xl .mod-body.scroll {
  height: 424px;
}
.mod-body::after {
  content: ' ';
  display: table;
  line-height: 0;
  clear: both;
}
.mod-state-icons {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  background-repeat: no-repeat;
  /*background-image: url(../images/icons-modal.png);*/
  background-size: auto 100%;
}
.mod-state-icons.icon2 {
  background-position: -40px 0;
}
.mod-state-icons.icon3 {
  background-position: -80px 0;
}
.mod-state-icons.icon4 {
  background-position: -120px 0;
}
.mod-content {
  float: left;
  max-width: calc(100% - 60px);
  min-height: 40px;
}
.mod-content.state-icons-none {
  max-width: 100%;
  width: 100%;
}
.mod-content-layout {
  display: table;
}
.mod-content-center {
  display: table-cell;
  vertical-align: middle;
}
.mod-content-title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25;
}
.mod-content-title + .mod-content-detail {
  margin-top: 5px;
}
.mod-footer {
  padding: 15px;
  font-size: 0;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 0 0 2px 2px;
}
.mod-footer .btn-s + .btn-s {
  margin-left: 20px;
}
.cui-btn {
  cursor: pointer;
}
.mod-rule-wrapper {
  padding-left: 20px;
}
.mod-rule-wrapper li {
  color: #333;
  list-style: decimal;
  text-align: justify;
}
.mod-rule-wrapper li + li {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .modal-s,
  .modal-m,
  .modal-l,
  .modal-xl {
    max-width: calc(100% - 30px);
  }
  .mod-header {
    font-size: 20px;
  }
  .mod-state-icons {
    margin-right: 10px;
  }
  .mod-content-title {
    font-size: 16px;
  }
  .modal-s .mod-body.scroll,
  .modal-m .mod-body.scroll,
  .modal-l .mod-body.scroll,
  .modal-xl .mod-body.scroll {
    height: calc(100vh - 372px);
  }
  .mod-rule-wrapper li {
    text-align: left;
  }
  .mod-rule-wrapper li + li {
    margin-top: 2px;
  }
}
@media (max-width: 320px) {
  .modal-s .mod-body.scroll,
  .modal-m .mod-body.scroll,
  .modal-l .mod-body.scroll,
  .modal-xl .mod-body.scroll {
    height: calc(100vh - 212px);
  }
}
/************************modal end************************/
/** write less here**/
.go-section.go-customer {
  background-color: #F7F8FE;
  width: 100%;
}
.go-section.go-customer .wrapper {
  clear: both;
}
.go-section.go-customer .go-more-wrap {
  margin-top: 30px;
}
.go-section .homepage-custom-title {
  padding-top: 50px;
  padding-bottom: 40px;
}
.go-section .homepage-custom-title h1 {
  font-size: 32px;
  color: #000000;
  letter-spacing: 0;
  text-align: center;
  line-height: 36px;
}
.go-section .custom-cards-slide {
  height: auto;
}
.go-section .custom-cards-slide[data-cols='4'] > li {
  width: calc((100%) / 4);
}
.go-section .custom-background {
  height: 100px;
  padding: 0 20px;
}
.go-section .custom-carditem {
  padding: 0 20px 36px 20px;
}
.go-section .custom-cards {
  text-align: center;
}
.go-section .custom-cards ul {
  display: inline-block;
}
.go-section .custom-advantage-item {
  text-align: center;
  position: relative;
  float: left;
}
.go-section .custom-advantage-item a {
  display: block;
  position: relative;
  transition: all cubic-bezier(0.4, 0, 0.1, 1) 0.5s;
}
.go-section .custom-advantage-item a:hover {
  background-color: #FFFFFF;
}
.go-section .custom-advantage-item a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%;
                height: 100%;*/
  opacity: 0;
  transition: all cubic-bezier(0.4, 0, 0.1, 1) 0.5s;
}
.go-section .custom-advantage-item:hover a:after {
  opacity: 1;
}
.go-section .custom-logo {
  width: 100%;
  height: 60px;
  margin-top: 40px;
}
.go-section .custom-cards > ul > li:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.go-section .custom-xinhua a {
  background: url(./../images/go_global-intlEn-jincheng_default.png) center 40px no-repeat;
}
.go-section .custom-xinhua a:hover {
  background: url(./../images/go_global-intlEn-jincheng_hover.png) #fff center 40px no-repeat;
}
.go-section .custom-konka a {
  background: url(./../images/go_global-intlEn-konka_default.png) center 40px no-repeat;
}
.go-section .custom-konka a:hover {
  background: url(./../images/go_global-intlEn-konka_hover.png) #fff center 40px no-repeat;
}
.go-section .custom-thermo a {
  background: url(./../images/go_global-intlEn-debang_default.png) center 40px no-repeat;
}
.go-section .custom-thermo a:hover {
  background: url(./../images/go_global-intlEn-debang_hover.png) #fff center 40px no-repeat;
}
.go-section .custom-roman a {
  background: url(./../images/go_global-intlEn-roman_default.png) center 40px no-repeat;
}
.go-section .custom-roman a:hover {
  background: url(./../images/go_global-intlEn-roman_hover.png) #fff center 40px no-repeat;
}
.go-section .custom-info {
  padding: 0px 10px;
}
.go-section .custom-info h2 {
  font-size: 18px;
  color: #252B3A;
  letter-spacing: 0;
  text-align: center;
  line-height: 22px;
  margin-top: 30px;
  position: relative;
}
.go-section .custom-info h2 span {
  line-height: 22px;
  position: relative;
  display: inline-block;
}
.go-section .custom-info h2 span:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 3px;
  background: #f66f6a;
  transition: all cubic-bezier(0.4, 0, 0.1, 1) 0.5s;
}
.go-section .custom-advantage-item a:hover .custom-info h2 span:after {
  width: 30px;
}
.go-section .animated .custom-info p {
  -webkit-line-clamp: 5;
}
.go-section .custom-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5.0;
  height: 110px;
  overflow: hidden;
  font-size: 14px;
  color: #666A75;
  line-height: 22px;
  margin-top: 15px;
  text-align: left;
}
.go-section .custom-links {
  width: 140px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.go-section .custom-links-details span {
  font-size: 14px;
  color: #666A75;
  letter-spacing: 0;
  text-align: center;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .go-section .stories-advantage-item {
    width: calc((100% - 5px) / 2) !important;
    height: auto;
    padding: 15px;
    margin: 0 5px 5px 0;
    border-radius: 2px;
  }
}
@media (max-width: 768px) {
  .go-section .go-more-wrap {
    margin-top: 15px;
  }
  .go-section .custom-cards-wrapper {
    padding-bottom: 0;
  }
  .go-section .custom-advantage-item {
    padding-bottom: 0px;
  }
  .go-section .custom-advantage-item a {
    background: transparent;
  }
  .go-section .custom-advantage-item a:hover {
    background: transparent;
  }
  .go-section .custom-advantage-item a .custom-carditem {
    padding: 0 20px 0px 20px;
  }
  .go-section .customer-view-style {
    margin: 0!important;
    padding-bottom: 30px!important;
  }
  .go-section .homepage-hk-en-v2-customer {
    background: #F7F8FE;
  }
  .go-section .homepage-custom-title {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .go-section .homepage-custom-title h1 {
    font-size: 24px;
    color: #252B3A;
    letter-spacing: 0;
    text-align: center;
    line-height: 30px;
  }
  .go-section .custom-cards-slide[data-cols='4'] > li {
    width: calc((100%) / 2);
    min-height: auto;
  }
  .go-section .stories-advantage-item {
    width: 100% !important;
    padding: 0 !important;
    margin: 0;
    box-shadow: none;
    float: none;
    text-align: center;
  }
  .go-section .custom-info p {
    display: none;
  }
  .go-section .custom-background {
    display: none;
  }
  .go-section .custom-info h2 {
    font-size: 14px;
    color: #252B3A;
    letter-spacing: 0;
    text-align: center;
    line-height: 22px;
    margin: 0;
  }
  .go-section .custom-info {
    padding: 0;
  }
  .go-section .custom-icon {
    width: 112px;
    height: 40px;
    background-size: cover;
    margin: 25px auto 15px auto;
  }
  .go-section .custom-icon a:hover {
    background: transparent;
  }
  .go-section .custom-xinhua-logo-mobile {
    background: url(./../images/go_global-intlEn-jincheng_hover.png) center no-repeat;
    background-size: contain;
  }
  .go-section .custom-konka-logo-mobile {
    background: url(./../images/go_global-intlEn-konka_hover.png) center no-repeat;
    background-size: contain;
  }
  .go-section .custom-thermo-logo-mobile {
    background: url(./../images/go_global-intlEn-debang_hover.png) center no-repeat;
    background-size: contain;
  }
  .go-section .custom-roman-logo-mobile {
    background: url(./../images/go_global-intlEn-roman_hover.png) center no-repeat;
    background-size: contain;
  }
  .go-section .custom-cards > ul > li:hover {
    box-shadow: none;
    border-radius: 0;
  }
  .go-section .custom-links {
    padding-bottom: 30px;
  }
}
.safety-authen-container {
  display: none;
}
.safety-authen {
  z-index: 4;
}
/** write less here**/
/* region common */
/* 设备尺寸查询
 ============*/
/* size: mb */
.sub-title {
  font-size: 14px;
  color: #666A75;
  margin: 20px 0 0 0;
  text-align: center;
}
.section-content {
  max-width: 1210px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
title {
  font-size: 21px;
}
/* size: pb */
@media (min-width: 768px) {
  title {
    font-size: 22px;
  }
}
/* size: sm */
@media (min-width: 1024px) {
  title {
    font-size: 23px;
  }
}
/* size: md */
@media (min-width: 1280px) {
  title {
    font-size: 24px;
  }
}
/* size: lg */
@media (min-width: 1366px) {
  title {
    font-size: 25px;
  }
}
/* size: xg */
@media (min-width: 1680px) {
  title {
    font-size: 26px;
  }
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #666;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #666;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #666;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #666;
}
/****dropdown start****/
.go_global-contact .dropdown,
.go_global-contact .complex-dropdown {
  position: relative;
  width: 100%;
  color: #666a75;
  font-size: 0;
}
.go_global-contact .dark .dropdown,
.go_global-contact .dark .complex-dropdown {
  color: rgba(255, 255, 255, 0.8);
}
.go_global-contact .dropdown .ui-title,
.go_global-contact .complex-dropdown .ui-title {
  display: inline-block;
  width: 56px;
  color: #666a75;
  font-size: 14px;
  line-height: 32px;
  margin-right: 10px;
  vertical-align: top;
  white-space: nowrap;
}
.go_global-contact .dropdown.small .ui-title,
.go_global-contact .complex-dropdown.small .ui-title {
  line-height: 24px;
}
.go_global-contact .dropdown .ui-reveal,
.go_global-contact .complex-dropdown .ui-reveal {
  display: inline-table;
  width: 100%;
  height: 32px;
  padding: 4px 0 4px 9px;
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
}
.go_global-contact .dropdown.small .ui-reveal,
.go_global-contact .complex-dropdown.small .ui-reveal {
  height: 22px;
  padding-left: 5px;
  line-height: 14px;
}
.go_global-contact .dropdown .ui-reveal:hover,
.go_global-contact .complex-dropdown .ui-reveal:hover {
  border-color: #a0a2a8;
}
.go_global-contact .dropdown .ui-reveal span,
.go_global-contact .complex-dropdown .ui-reveal span {
  display: table-cell;
  padding-right: 10px;
  color: #252b3a;
  vertical-align: middle;
}
.go_global-contact .dropdown .ui-reveal i,
.go_global-contact .complex-dropdown .ui-reveal i {
  position: relative;
  display: table-cell;
  width: 30px;
  height: 22px;
  border-left: 1px solid #ddd;
  vertical-align: middle;
}
.go_global-contact .dropdown.small .ui-reveal i,
.go_global-contact .complex-dropdown.small .ui-reveal i {
  height: 14px;
}
.go_global-contact .dropdown .ui-reveal i::after,
.go_global-contact .complex-dropdown .ui-reveal i::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 9px;
  left: 9px;
  border-width: 5px;
  border-style: solid;
  border-color: #666a75 #fff #fff #fff;
}
.go_global-contact .dropdown.small .ui-reveal i::after,
.go_global-contact .complex-dropdown.small .ui-reveal i::after {
  top: 5px;
}
.go_global-contact .dropdown .ui-content,
.go_global-contact .complex-dropdown .ui-content {
  display: none;
  position: absolute;
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  overflow-y: auto;
  z-index: 9;
  max-height: 300px;
}
.go_global-contact .dropdown li,
.go_global-contact .complex-dropdown li {
  padding: 0 9px;
  color: #666a75;
  font-size: 14px;
  line-height: 32px;
}
.go_global-contact .dropdown.small li,
.go_global-contact .complex-dropdown.small li {
  line-height: 24px;
}
.go_global-contact .dropdown li:hover,
.go_global-contact .complex-dropdown li:hover {
  color: #f66f6a;
  background-color: #f7f7f7;
}
.go_global-contact .dropdown li:active,
.go_global-contact .complex-dropdown li:active {
  color: #fff;
  background-color: #f66f6a;
}
@media (max-width: 768px) {
  .go_global-contact .dropdown .ui-reveal:hover,
  .go_global-contact .complex-dropdown .ui-reveal:hover {
    border: 1px solid #ddd;
  }
  .go_global-contact .dropdown li:hover,
  .go_global-contact .dropdown li:active,
  .go_global-contact .complex-dropdown li:hover,
  .go_global-contact .complex-dropdown li:active {
    color: #666a75;
    background-color: #fff;
  }
}
/****dropdown end****/
.form-section {
  background: #fff;
}
.form-section .section-title .sub-title {
  font-size: 14px;
  color: #666A75;
  margin: 20px 0;
  text-align: center;
}
.form-section .section-content {
  background: #ffffff;
  max-width: 1180px;
  margin-top: 40px;
  /*        .aui-btn-red.disable:hover{
            border-color: #F66F6A  !important;
            background: #F66F6A  !important;
            color: #fff !important;
        }*/
}
.form-section .section-content .southafrica-title h1 {
  text-align: center;
  font-size: 32px;
  color: #252B3A;
  letter-spacing: 0;
  line-height: 36px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.form-section .section-content .southafrica-title .sub-title {
  font-size: 14px;
  color: #666A75;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.form-section .section-content .form-container {
  vertical-align: top;
  margin: 0 auto;
  width: 648px;
}
.form-section .section-content .form-container .form-wrap {
  background: #ffffff;
  display: inline-block;
}
.form-section .section-content .form-row {
  width: 100%;
  clear: both;
}
.form-section .section-content .form-row:first-child {
  padding-top: 0px;
}
.form-section .section-content .form-row > div {
  float: left;
}
.form-section .section-content .form-key {
  position: static;
  margin-top: auto;
  height: 32px;
  width: 127px;
  line-height: 18px;
  margin-top: 8px;
  color: #252B3A;
}
.form-section .section-content .form-row.state .form-key {
  width: 314px;
}
.form-section .section-content .form-row.state .form-value {
  width: calc(100% - 314px - 25px);
  margin-left: 25px;
}
.form-section .section-content .form-row.form-row-submit .form-value {
  text-align: center;
  width: 100%;
}
.form-section .section-content .form-row.validate .form-value {
  padding-top: 20px;
}
.form-section .section-content .realname div.form-contain .form-key {
  float: left;
}
.form-section .section-content .realname div.form-contain:first-child .max-width {
  width: 170px;
  float: left;
}
.form-section .section-content .realname div.form-contain:last-child .form-key {
  width: 108px;
  text-align: right;
}
.form-section .section-content .realname div.form-contain:last-child .max-width {
  width: 194px;
  float: left;
  margin-left: 10px;
}
.form-section .section-content .form-key em {
  font-style: normal;
  color: #F66F6A;
  margin-right: 5px;
  margin-left: 5px;
}
.form-section .section-content .form-value {
  width: calc(100% - 74px - 25px);
  position: relative;
}
.form-section .section-content .form-row .max-width {
  width: calc(100% - 102px - 25px);
}
.form-section .section-content .form-input {
  display: block;
  width: 100%;
  height: 32px;
  border: solid 1px #ddd;
  padding-left: 10px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border-radius: 2px;
}
.form-section .section-content .ok-span,
.form-section .section-content .error-span {
  display: none;
  margin: 5px 0;
}
.form-section .section-content .err.tips-text,
.form-section .section-content .err.ok {
  position: relative;
  padding-left: 20px;
}
.form-section .section-content .err.ok {
  width: 16px;
  height: 16px;
  background: url(./../images/go_global-intlEn-ok_icon.svg) no-repeat;
  margin-top: 0px;
  position: absolute;
  right: -29px;
  top: 8px;
}
.form-section .section-content .realname div.form-contain:first-child .err.ok {
  right: -31px;
}
.form-section .section-content .tips-text {
  color: #FF4C4C;
  font-size: 12px;
  margin-left: 5px;
  min-height: 20px;
  display: block;
}
.form-section .section-content .error-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(./../images/go_global-intlEn-err_icon.svg) no-repeat;
  margin-top: 2px;
  margin-left: -20px;
}
.form-section .section-content .error-span span {
  display: block;
  height: 20px;
  line-height: 20px;
}
.form-section .section-content .form-row .en-title p {
  display: inline-block;
  width: 70%;
  line-height: 16px;
}
.form-section .section-content .form-row .en-title em {
  vertical-align: top;
  position: relative;
  top: -6px;
}
.form-section .section-content .half-input {
  /* width: calc(50% - 8px); */
  display: inline-block;
}
.form-section .section-content .half-input:first-child {
  width: 170px;
}
.form-section .section-content .half-input + .half-input {
  width: 301px;
  margin-left: 7px;
  vertical-align: top;
}
.form-section .section-content .ti-select-wrapper {
  width: 100% !important;
}
.form-section .section-content .categories {
  position: absolute;
  display: none;
  width: 100%;
  margin-top: 2px;
  background: white;
  padding: 15px 10px;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  max-height: 270px;
  overflow-y: auto!important;
  z-index: 9;
}
.form-section .section-content .categories .search {
  display: none;
}
.form-section .section-content .headline,
.form-section .section-content .content {
  max-width: 1180px;
  margin: 0 auto;
}
.form-section .section-content .categories .category-title {
  font-size: 14px;
  color: #252B3A;
  letter-spacing: 0;
  line-height: 22px;
  padding-left: 8px;
  position: relative;
}
.form-section .section-content .categories .category-title::before {
  content: '';
  position: absolute;
  background: #F66F6A;
  width: 2px;
  left: 0;
  height: 12px;
  top: 5px;
}
.form-section .section-content .categories .category-detail {
  margin: 10px 0 2px 8px;
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: top;
}
.form-section .section-content .categories .product-category-detail {
  width: calc(33% - 8px);
}
.form-section .section-content .categories .category-detail .h5 {
  font-size: 14px;
  color: #252B3A;
  letter-spacing: 0;
  line-height: 20px;
}
.form-section .section-content .success-result {
  /* width: 100%; */
  height: 200px;
  padding-left: calc(50% - 260px);
  padding-top: 60px;
  display: none;
}
.form-section .section-content .big-icon,
.form-section .section-content .error-big-icon {
  background: url(./../images/go_global-intlEn-success.svg) no-repeat;
  display: inline-block !important;
  width: 40px;
  height: 40px;
  margin-top: 0px;
  position: absolute;
}
.form-section .section-content .success-result .result-text {
  padding-left: 60px;
  font-size: 18px;
  color: #252B3A;
  line-height: 40px;
}
.form-section .section-content .success-result .result-text h5 {
  display: inline-block;
  font-size: 18px;
  color: #252B3A;
  line-height: 22px;
}
.form-section .section-content .success-result .result-text p {
  display: inline-block;
  font-size: 14px;
  color: #666A75;
  letter-spacing: 0;
  text-align: justify;
  line-height: 22px;
  padding-right: 15px;
}
.form-section .section-content .aui-btn-red:hover {
  background: #F66F6A;
  box-shadow: 0 8px 16px 0 rgba(246, 111, 106, 0.3);
}
.form-section .section-content .aui-btn-red,
.form-section .section-content .aui-btn-white {
  padding: 0px;
  height: 40px;
  line-height: 40px;
  /*width: 116px;*/
  font-size: 18px;
}
.form-section .section-content .aui-btn-red {
  border-radius: 2px;
  border-color: #F66F6A;
  margin-top: 40px;
  background: #F66F6A;
  color: #fff !important;
  font-size: 14px;
  padding: 0 40px;
}
.form-section .section-content .aui-btn-red.disable {
  color: #A0A2A8 !important;
  background: #F7F7F7 !important;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  height: 40px;
  line-height: 40px;
  /* width: 110px;*/
  padding: 0 40px;
  cursor: pointer;
}
.form-section .section-content input[type=checkbox] {
  vertical-align: middle;
  background: #fff;
  -webkit-appearance: none;
  border: 1px solid #ddd;
  border-radius: 1px;
  height: 16px;
  width: 16px;
  float: left;
  margin-top: 2px;
  margin-right: 10px;
}
.form-section .section-content input:checked {
  -webkit-appearance: checkbox;
  background-color: #F66F6A;
  color: #fff;
}
.form-section .section-content .form-value-agreement a {
  color: #1B79C8;
}
.form-section .section-content .form-value-agreement a:hover {
  text-decoration: underline;
}
.form-section .section-content .aui-btn-red.disable:hover {
  box-shadow: 0 8px 16px 0 rgba(246, 111, 106, 0);
}
.form-section .section-content .validate .form-key {
  height: 21px;
  line-height: 21px;
}
.ti-select-dominator-container-focused,
.ti-select-dominator-container-focused:hover {
  border: 1px solid #ddd;
}
.ti-select-dominator-container {
  border: 1px solid #ddd;
}
/************************modal star************************/
/*
.shade{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 200;
}
.modal{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    background-color: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}
.modal-s{width: 400px}
.modal-m{width: 550px}
.modal-l{width: 700px}
.modal-xl{width: 900px}
.mod-close{
    position: absolute;
    width: 22px;
    height: 22px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    overflow: hidden;
    transform: rotate(45deg);
}
.mod-close::before,
.mod-close::after{
    content: '';
    display: block;
    position: absolute;
    width: 22px;
    height: 2px;
    top: 10px;
    left: 0;
    background-color: #999;
}
.mod-close::after{
    width: 2px;
    height: 22px;
    top: 0;
    left: 10px;
}
.mod-header{
    padding-top: 30px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}
.mod-caption{
    padding-left: 27px;
    border-left: 3px solid #f66f6a;
}
.mod-body{
    padding: 0 30px;
    margin: 30px 0;
    *zoom: 1;
}
.mod-body.scroll{
    overflow-y: scroll;
    padding-right: 23px;
    margin-right: 2px;
}
.mod-body::-webkit-scrollbar {
    width: 5px;
    border-radius: 8px;
    background-color: rgba(51,51,51,.6);
}
.mod-body::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #fff;
}
.mod-body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(51,51,51,.6)
}
.modal-m .mod-body.scroll{
    height: 237px;
}
.modal-l .mod-body.scroll{
    height: 349px;
}
.modal-xl .mod-body.scroll{
    height: 424px;
}
.mod-body::after{
    content: ' ';
    display: table;
    line-height: 0;
    clear: both;
}

.mod-state-icons.icon2{background-position: -40px 0;}
.mod-state-icons.icon3{background-position: -80px 0;}
.mod-state-icons.icon4{background-position: -120px 0;}
.mod-content{
    float: left;
    max-width: calc(100% - 60px);
    min-height: 40px;
}
.mod-content.state-icons-none{
    max-width: 100%;
    width: 100%;
}
.mod-content-layout{
    display: table;
}
.mod-content-center{
    display: table-cell;
    vertical-align: middle;
}
.mod-content-title{
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.25;
}
.mod-content-title+.mod-content-detail{
    margin-top: 5px;
}
.mod-footer{
    padding: 15px;
    font-size: 0;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 0 0 2px 2px;
}
.mod-footer .btn-s+.btn-s{
    margin-left: 20px;
}
.mod-rule-wrapper{
    padding-left: 20px;
}
.mod-rule-wrapper li{
    color: #333;
    list-style: decimal;
    text-align: justify;
}
.mod-rule-wrapper li+li{
    margin-top: 5px;
}*/
.form-section .section-content .error-big-icon {
  background: url(./../images/go_global-intlEn-failure.svg) no-repeat;
}
.modal-content-div {
  padding-left: calc(50% - 220px);
}
.btn-s,
.btn-m,
.btn-l {
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  border: 1px solid;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.modal-content-div .result-text {
  margin-left: 60px;
  line-height: 40px;
}
.btn-s {
  padding: 0 19px;
  font-size: 14px;
  line-height: 30px;
}
.btn-red {
  color: #fff;
  border-color: #f66f6a;
  background-color: #f66f6a;
}
@media (max-width: 768px) {
  /*.modal-s,.modal-m,.modal-l,.modal-xl{
        max-width: calc(100% - 30px);
    }
    .mod-header{
        font-size: 20px;
    }
    .mod-state-icons{
        margin-right: 10px;
    }
    .mod-content-title{
        font-size: 16px;
    }
    .modal-s .mod-body.scroll,
    .modal-m .mod-body.scroll,
    .modal-l .mod-body.scroll,
    .modal-xl .mod-body.scroll{
        height: calc(100vh - 372px);
    }
    .mod-rule-wrapper li+li{
        margin-top: 2px;
    }*/
  .form-section .section-content .form-row.state .form-value {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 320px) {
  /*  .modal-s .mod-body.scroll,
    .modal-m .mod-body.scroll,
    .modal-l .mod-body.scroll,
    .modal-xl .mod-body.scroll{
        height: calc(100vh - 212px);
    }*/
}
/************************modal end************************/
/*start mobile*/
@media (max-width: 768px) {
  .form-section .section-content .form-container .form-wrap {
    width: 100%;
  }
  .form-section .section-content .form-container {
    width: 100%;
  }
  .realname div.form-contain {
    width: 100%;
  }
  .realname div.form-contain .form-key {
    width: 100%;
    margin-left: 0;
  }
  .form-section .section-content .realname div.form-contain:first-child .max-width {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .form-section .section-content .realname div.form-contain:last-child .form-key {
    margin-left: 0;
    text-align: left;
  }
  .form-section .section-content .realname div.form-contain:last-child .max-width {
    width: 100%;
    margin-left: 0;
  }
  .form-section .section-content .form-key {
    width: 100%;
    font-size: 14px;
    height: auto;
    line-height: 18px;
  }
  .form-section .section-content .form-input {
    width: 100%;
    margin-top: 5px;
  }
  .form-section .section-content .form-row .max-width {
    width: 100%;
    margin-left: 0;
  }
  .form-section .section-content .half-input:first-child {
    width: calc(50% - 8px);
    display: inline-block;
    margin-top: 5px;
  }
  .form-section .section-content .half-input + .half-input {
    width: calc(50% - 8px);
    margin-left: 10px;
    vertical-align: top;
  }
  .form-section .section-content .form-value {
    margin-left: 0;
    width: 100%;
    position: relative;
  }
  .form-value-agreement span {
    height: 21px;
    line-height: 21px;
    display: block;
    width: 100%;
  }
  .form-section .section-content .aui-btn-red.disable,
  .form-section .section-content .aui-btn-red {
    margin-top: 20px;
    width: 100%;
    transition: all .3s;
  }
  .form-section .section-content .form-row .en-title em {
    top: 0;
  }
  .form-section .section-content .err.ok {
    margin-top: 0;
    position: relative;
    right: 0;
  }
  .form-section .section-content .realname div.form-contain:first-child .err.ok {
    right: 0;
  }
  .form-section .section-content .validate .form-key {
    display: none;
  }
  .form-section .section-title .sub-title {
    text-align: left;
  }
  .dropdown,
  .complex-dropdown,
  .country-content {
    margin-top: 5px;
  }
  .form-section .section-content {
    margin-top: 20px;
  }
  .form-section .section-content .form-row.state .form-key {
    width: 100%;
  }
}
/*end mobile*/
.form-section .section-content {
  margin-top: 0px!important;
}
/*register*/
.ti-dropdown-container,
.ti-searchbox-container.ti-searchbox-container-focused {
  border-color: #ddd;
}
.ti-dropdown-option:hover {
  background-color: #f5f6f7;
  color: #f66f6a;
  cursor: pointer;
}
.form-section .section-content .categories .category-detail .h5 {
  cursor: pointer;
  transition: all .3s;
}
.form-section .section-content .categories .category-detail .h5:hover {
  color: #f66f6a;
}
@media (max-width: 767px) {
  .form-section .section-content .categories {
    max-height: 240px;
  }
}
.ti-searchbox-search:hover {
  color: #f66f6a;
}
.ti-select-dominator-dropdown-btn:before {
  content: '';
  position: absolute;
  top: 5px;
  width: 1px;
  height: 20px;
  background: #ddd;
}
.categories .per-category + .per-category {
  margin-top: 20px;
}

/*# sourceMappingURL=index.css.map*/