body {
  padding: 0;
  margin: 0;
  /* 提示弹层样式 */
  /* PC 尺寸 */
  /* 手机尺寸 */
  /*.main-warp[data-v-750c29d2]{
		min-width: 340px;
		max-width: 580px;
		margin: auto;
		padding-top: 40px;
		.app-name{
			font-weight: 700;
			padding-bottom: 40px;
			height: 45px;
			font-size: 30px;
			display: flex;
			align-items: center;
			.app-name-box{
				.app-name-img{
					margin-right: 10px;
				}
			}
		}
	}*/
}
@font-face {
  font-family: Graphik-Medium;
  src: url(./Gdium.woff);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Graphik-Regular;
  src: url(./Regular.woff);
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url(./MLight.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Graphik-Semibold;
  src: url(./Semibold.woff);
  font-weight: 400;
}
body * {
  font-family: Avenir Next, Helvetica Neue, Helvetica, sans-serif;
}
@-webkit-keyframes fadeIn-data-v-7e6303ae {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@keyframes fadeIn-data-v-7e6303ae {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-webkit-keyframes bob-data-v-5a1c0366 {
  10% {
    transform: translateY(-10px);
    background-color: #9e9da2;
  }
  50% {
    transform: translateY(0);
    background-color: #b6b5ba;
  }
}
@keyframes bob-data-v-5a1c0366 {
  10% {
    transform: translateY(-10px);
    background-color: #9e9da2;
  }
  50% {
    transform: translateY(0);
    background-color: #b6b5ba;
  }
}
body .overlay {
  font-size: 14px;
  color: #333;
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 109;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body .overlay * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}
body .overlay .modal {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: scale(0.78);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.33s ease;
}
body .overlay .modal .modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .overlay .modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
}
body .overlay .modal .modal-header .close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}
body .overlay .modal .modal-body {
  padding: 20px;
  max-height: calc(100% - 130px);
  overflow-y: auto;
}
body .overlay .modal .modal-body .form-group {
  margin-bottom: 20px;
  position: relative;
}
body .overlay .modal .modal-body .form-group .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
body .overlay .modal .modal-body .form-group .form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}
body .overlay .modal .modal-body .form-group .form-input:focus {
  outline: none;
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
body .overlay .modal .modal-body .form-group .form-input.error {
  border-color: #ff4d4f;
}
body .overlay .modal .modal-body .form-group .error-message {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
body .overlay .modal .modal-body .form-group textarea.form-input {
  min-height: 120px;
  resize: vertical;
}
body .overlay .modal .modal-body .form-group .image-upload {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 10px;
}
body .overlay .modal .modal-body .form-group .image-upload .image-preview {
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
body .overlay .modal .modal-body .form-group .image-upload .image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .overlay .modal .modal-body .form-group .image-upload .image-preview .delete {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}
body .overlay .modal .modal-body .form-group .image-upload .upload-box {
  width: 100px;
  height: 100px;
  border: 1px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background-color: #fafafa;
  transition: border-color 0.3s;
}
body .overlay .modal .modal-body .form-group .image-upload .upload-box:hover {
  border-color: #1890ff;
}
body .overlay .modal .modal-body .form-group .image-upload .upload-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
body .overlay .modal .modal-body .form-group .image-upload .upload-box i {
  font-size: 24px;
  color: #999;
}
body .overlay .modal .modal-body .form-group .upload-tip {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
body .overlay .modal .modal-footer-marg {
  width: 100%;
  height: 62px;
}
body .overlay .modal .modal-footer {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 1px solid #eee;
  padding-right: 22px;
}
body .overlay .modal .modal-footer .submit-btn {
  background-color: #1890ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
body .overlay .modal .modal-footer .submit-btn:hover {
  background-color: #40a9ff;
}
body .overlay.show {
  opacity: 1;
}
body .overlay.show .modal {
  transform: scale(1);
  opacity: 1;
}
body .image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body .image-viewer img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform-origin: center;
  transform: scale(0.82);
  transition: transform 0.35s ease;
}
body .image-viewer .viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
body .image-viewer.show {
  opacity: 1;
}
body .image-viewer.show img {
  transform: scale(1);
}
body .toast {
  position: absolute;
  top: 30px;
  right: 50%;
  padding: 12px 24px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  z-index: 115;
  opacity: 0;
  transform: translate(50%, -30px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 80%;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
body .toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}
body .toast-success {
  background-color: #52c41a;
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
body .toast-success.show {
  transform: translate(50%, 0);
}
body .toast-error {
  background-color: #ff4d4f;
}
body .toast-warning {
  background-color: #faad14;
}
body .toast-icon {
  margin-right: 8px;
}
body .loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 118;
}
body .spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body .required-mark {
  color: #ff4d4f;
  margin-left: 4px;
}
body .image-viewer-hidd {
  display: none;
}
body .main-contain .main-warp .app-contact {
  background-color: #ffffff;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window {
  position: fixed;
  box-sizing: border-box;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-animation: fadeIn-data-v-7e6303ae;
  animation: fadeIn-data-v-7e6303ae;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 15px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window.closed {
  opacity: 0;
  display: none;
  bottom: 90px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header {
  background: #4e8cff;
  color: #ffffff;
  min-height: 60px;
  padding: 0;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  box-sizing: border-box;
  display: flex;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--img {
  border-radius: 50%;
  align-self: center;
  padding: 10px;
  width: 40px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--title {
  align-self: center;
  padding: 10px;
  flex: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  cursor: pointer;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--title.enabled {
  border-radius: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--title.enabled:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 1, 0.1);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--close-button {
  width: 30px;
  align-self: center;
  height: 30px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 5px;
  margin-left: auto;
  margin-right: 10px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--close-button:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 1, 0.1);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--close-button .close {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-weight: bold;
  padding: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--close-button .close-hidd {
  display: none;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .m-r-14 {
  margin-right: 14px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .close-brs {
  display: block;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list {
  background-color: #ffffff;
  height: 80%;
  overflow-y: auto;
  background-size: 100%;
  padding: 40px 20px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message {
  padding: 0 10px;
  margin-bottom: 10px;
  display: flex;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content {
  width: 100%;
  display: flex;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--avatar {
  background-image: url(../../images/index/comment.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  /*align-self: center;
											margin-right: 15px;*/
  align-self: flex-start;
  margin-right: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text {
  color: #36476c;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text .contact-message--toolbox {
  background: #f5f5f5;
  transition: left 0.2s ease-out 0s;
  white-space: normal;
  opacity: 0;
  position: absolute;
  left: 0px;
  width: 25px;
  top: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text .contact-message--text-content {
  white-space: pre-wrap;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text:hover .contact-message--toolbox {
  left: -20px;
  opacity: 1;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.sent {
  justify-content: flex-end;
  margin-right: 10px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.sent .contact-message--avatar {
  display: none;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.sent .contact-message--text {
  color: #ffffff;
  background-color: #0096ff;
  max-width: calc(100% - 60px) !important;
  word-wrap: break-word;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.sent .contact-message--text .contact-message--toolbox {
  background: #0096ff;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.system {
  justify-content: center;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-typing-indicator {
  color: #36476c;
  background-color: #f5f5f5;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-typing-indicator span {
  display: inline-block;
  background-color: #b6b5ba;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 3px;
  -webkit-animation: bob-data-v-5a1c0366 2s infinite;
  animation: bob-data-v-5a1c0366 2s infinite;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-typing-indicator span:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-typing-indicator span:nth-child(2) {
  -webkit-animation-delay: -0.85s;
  animation-delay: -0.85s;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-typing-indicator span:nth-child(3) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip {
  display: block !important;
  z-index: 10000;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip .tooltip-inner {
  background: black;
  color: white;
  border-radius: 16px;
  padding: 5px 10px 4px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip.info .tooltip-inner {
  background: rgba(0, 68, 153, 0.9);
  color: white;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip.info .tooltip-arrow {
  border-color: rgba(0, 68, 153, 0.9);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='top'] {
  margin-bottom: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='top'] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='bottom'] {
  margin-top: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='bottom'] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='right'] {
  margin-left: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='right'] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='left'] {
  margin-right: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[x-placement^='left'] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[aria-hidden='true'] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .tooltip[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .received .contact-message--text {
  color: #36476c;
  background-color: #f5f5f5;
  margin-right: 30px !important;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .received .contact-message--text .contact-message--toolbox {
  background: #f5f5f5;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .received .contact-message--text .contact-message--text-content p {
  margin: 0;
  margin-bottom: 8px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .received .contact-message--text .contact-message--text-content p:first-child {
  margin-top: 1px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .received .contact-message--text .contact-message--text-content p:nth-last-child(1) {
  margin-bottom: 2px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message-error .contact-message--content .contact-message--text .contact-message--text-content {
  color: #f32323;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-suggestions-row {
  background: #ffffff;
  text-align: right;
  margin-right: 10px;
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-bottom: 10px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-suggestions-row .contact-suggestions-element {
  max-width: calc(100% - 15px);
  border-radius: 12px 0px 12px 12px;
  background-color: #E7F4FE;
  padding: 7px;
  text-align: center;
  color: #333;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: 10px;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-suggestions-row .contact-suggestions-element:hover {
  background: #CBE9FF;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item-hidd {
  display: none;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input {
  min-height: 55px;
  margin: 0;
  position: relative;
  bottom: 0;
  display: flex;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ffffff;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px -5px 20px 0px rgba(150, 165, 190, 0.2);
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text {
  flex-grow: 1;
  outline: none;
  border-bottom-left-radius: 10px;
  box-sizing: border-box;
  padding: 18px;
  font-size: 15px;
  line-height: 1.33;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #565867;
  -webkit-font-smoothing: antialiased;
  max-height: 60px;
  overflow-x: hidden;
  overflow-y: auto;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text:empty:before {
  content: attr(placeholder);
  display: block;
  /* For Firefox */
  -webkit-filter: contrast(15%);
  filter: contrast(15%);
  outline: none;
  cursor: text;
  pointer-events: none;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar {
  width: 5px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar-thumb {
  border-radius: 999px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar-track {
  background: transparent;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar-thumb {
  height: 4px;
  background-clip: content-box;
  background: #00000080;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar-corner {
  background: transparent;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--text::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--buttons {
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-right: 10px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--buttons:hover {
  background: #fff;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--buttons .contact-user-input--button {
  margin: 0 4px;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--buttons .contact-user-input--button .contact-user-input--button-icon-wrapper {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input .contact-user-input--buttons .contact-user-input--button .contact-user-input--button-icon-wrapper svg {
  display: block;
}
body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-input .contact-user-input.active {
  background-color: white;
  box-shadow: 0px -5px 20px 0px rgba(150, 165, 190, 0.2);
}
body .main-contain .main-warp .app-contact .contact-cont .minWin {
  width: 370px;
  height: calc(100% - 120px);
  max-height: 590px;
  right: 15px;
  bottom: 15px;
}
body .main-contain .main-warp .app-contact .contact-cont .fullWin {
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  border-radius: 0;
}
body .main-contain .main-warp .app-contact .contact-cont .fullWin .contact-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body .main-contain .main-warp .app-contact .img_comment {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 761px) {
  body .overlay .modal {
    width: 600px;
    max-height: 800px;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list {
    padding: 15px 0 !important;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--avatar {
    padding-top: 6px;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text .contact-message--text-content {
    padding: 3px 0;
    font-weight: 500;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content.sent {
    margin-right: 10px;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-suggestions-row {
    max-width: calc(100% - 15px);
  }
}
@media only screen and (min-width: 751px) {
  body .main-contain .main-warp {
    min-width: 340px;
    margin: auto;
  }
  body .main-contain .main-warp .app-name {
    padding: 20px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #090b29;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 80px;
  }
  body .main-contain .main-warp .app-name .app-name-box {
    width: 100%;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
  }
  body .main-contain .main-warp .app-name .app-name-box .app-name-img {
    margin-right: 6px;
  }
  body .main-contain .main-warp .app-box {
    width: 100%;
    max-width: 980px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  body .main-contain .main-warp .app-box .box-title {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  body .main-contain .main-warp .app-box .box-content {
    border-radius: 8px;
    background: #f2f5fa;
    height: 280px;
    text-align: center;
    margin-bottom: 40px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 40px 0;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list {
    display: flex;
    justify-content: center;
    grid-gap: 56px;
    gap: 56px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item {
    flex: 0 0 160px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item .item-img-svg {
    width: 60px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item .content-item-title {
    margin-top: 16px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  body .main-contain .main-warp .app-box .box-btn {
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    display: inline-flex;
    padding: 16px 120px;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    border-radius: 4px;
    background: #5c69f7;
    box-shadow: 0 7px 20px 0 #6a74df;
    margin: 0 auto;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
  }
  body .main-contain .main-warp .app-box .box-btn:hover {
    transform: scale(1.1);
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-title {
    position: relative;
    margin: 20px 0;
    border-top: 1px solid #c5d5e4;
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-title:after {
    content: attr(data-content);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 30px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-desc {
    width: 100%;
    max-width: 800px;
    margin: auto;
    color: #6e6e6e;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 750px) {
  body .main-contain .main-warp {
    min-width: 100%;
    margin: auto;
    padding-bottom: 200px;
  }
  body .main-contain .main-warp .app-name {
    padding: 10px;
    font-size: 20px;
    color: #090b29;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 35px;
  }
  body .main-contain .main-warp .app-name .app-name-box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  body .main-contain .main-warp .app-name .app-name-box .app-name-img {
    margin-right: 6px;
  }
  body .main-contain .main-warp .app-box {
    width: calc(100% - 32px);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 0 16px;
  }
  body .main-contain .main-warp .app-box .box-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
  body .main-contain .main-warp .app-box .box-content {
    width: 100%;
    border-radius: 8px;
    background: #f2f5fa;
    padding-bottom: 30px;
    text-align: center;
    margin-bottom: 40px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 20px 0;
    padding-bottom: 25px;
    max-width: 300px;
    margin: 0 auto;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list {
    display: flex;
    justify-content: center;
    grid-gap: 14px;
    gap: 14px;
    padding: 0 10px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item .item-img-svg {
    width: 40px;
  }
  body .main-contain .main-warp .app-box .box-content .box-content-list .content-item .content-item-title {
    margin-top: 16px;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  body .main-contain .main-warp .app-box .box-btn {
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    display: inline-flex;
    width: calc(100% - 36px);
    padding: 16px 0;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    border-radius: 4px;
    background: #5c69f7;
    box-shadow: 0 7px 20px 0 #6a74df;
    margin: 0 auto;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
  }
  body .main-contain .main-warp .app-box .box-btn:hover {
    transform: scale(1.1);
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-title {
    position: relative;
    margin: 20px 0;
    border-top: 1px solid #c5d5e4;
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-title:after {
    content: attr(data-content);
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 0.2rem;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    width: 60%;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body .main-contain .main-warp .app-box .box-tips .box-tips-desc {
    width: 100%;
    max-width: 800px;
    margin: auto;
    color: #6e6e6e;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
  }
}
@media (max-width: 760px) {
  body .overlay .modal {
    width: 85%;
    max-height: 85%;
  }
  body .main-contain .main-warp {
    width: 86% !important;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .contact-header--img {
    width: 40px;
    padding-right: 0 !important;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list {
    padding: 15px 0;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message {
    width: 94% !important;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--avatar {
    padding-top: 4px;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message .contact-message--content .contact-message--text .contact-message--text-content {
    padding: 3px 0;
    font-weight: 500;
  }
  body .main-contain .main-warp .app-contact .img_comment {
    right: 14px;
  }
}
@media (max-width: 450px) {
  body .overlay .modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100%;
  }
  body .overlay .modal .modal-header {
    padding: 12px 20px;
  }
  body .overlay .modal .modal-header .modal-title {
    font-size: 16px;
  }
  body .overlay .modal .modal-footer-marg {
    height: 50px;
  }
  body .overlay .modal .modal-footer {
    height: 50px;
  }
  body .overlay .modal .modal-footer .submit-btn {
    padding: 7px 20px;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window {
    width: 100%;
    height: 100%;
    max-height: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    transition: 0.1s ease-in-out;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header {
    border-radius: 0;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-header .close-brs {
    display: none;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window.closed {
    bottom: 0;
  }
  body .main-contain .main-warp .app-contact .contact-cont .contact-chat-window .contact-message-list .cont-message-item .contact-message {
    width: 80%;
  }
}
