/*
 * @Author: 天吾
 * @Date: 2019-01-23 16:29:55
 * @Last Modified by: 天吾
 * @Last Modified time: 2019-04-27 19:55:52
 */
/*
    size 统一用  sm base lg  表示,  对于不能满足的情况, 仿照衣服尺寸加上 x(EXTRA) 比如  font-size-xlg 表示特大
*/
.gd-modal__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #606266;
}
.gd-modal__wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.gd-modal__wrapper::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #e1e5f5;
}
.gd-modal__wrapper::-webkit-scrollbar-track {
  border-radius: 3px;
}
.gd-modal__wrapper--overlay {
  background: hsla(0, 0%, 100%, 0.8);
}
.gd-modal__wrapper--centered {
  text-align: center;
}
.gd-modal__wrapper--centered::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.gd-modal__wrapper--centered .gd-modal {
  text-align: left;
  vertical-align: middle;
  display: inline-block;
}
.gd-modal {
  margin: 0 auto;
  position: relative;
  outline: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(160, 160, 180, 0.4);
  box-sizing: border-box;
  padding: 40px 40px 0px 40px;
}
.gd-modal--dark {
  background: #000;
  color: #fff;
}
.gd-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gd-modal__title {
  font-size: 22px;
  color: #333;
  font-weight: bold;
}
.gd-modal__close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.6;
  font-size: 16px;
  color: #AAA;
}
.gd-modal__close:hover {
  opacity: 1;
}
.gd-modal__close--new {
  width: 1.2em;
  height: 1.2em;
  background: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg t='1556702568373' class='icon' style='' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2107' xmlns:xlink='http://www.w3.org/1999/xlink' width='200' height='200' fill='%23999'%3E%3Cdefs%3E%3Cstyle type='text/css'/%3E%3C/defs%3E%3Cpath d='M810.666667 273.493333L750.506667 213.333333 512 451.84 273.493333 213.333333 213.333333 273.493333 451.84 512 213.333333 750.506667 273.493333 810.666667 512 572.16 750.506667 810.666667 810.666667 750.506667 572.16 512z' p-id='2108'/%3E%3C/svg%3E");
  background-size: contain;
}
.gd-modal__footer {
  padding: 0 0 40px 0;
}
.gd-modal__body {
  margin: 16px 0;
  /*
        font: 14px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
        */
}
.gd-modal__buttons {
  display: flex;
  flex-flow: row-reverse;
}
.gd-modal-fade-enter-active {
  animation: gd-modal-fade-in 0.3s;
}
.gd-modal-fade-leave-active {
  animation: gd-modal-fade-out 0.3s;
}
@keyframes gd-modal-fade-in {
0% {
    transform: translate3d(0, -40px, 0);
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes gd-modal-fade-out {
0% {
    opacity: 1;
}
100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
}
}
