// base color,modified by fanmingyong
// 基础风格颜色变量文件

@import "./blue-theme.scss";

// 卡片类
.border-box {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}
.border-svg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.border-box-title {
  position: absolute;
  height: 60px;
  top: 0;
  padding-left: 40px;
  padding-right: 10px;

  display: flex;
  align-items: center;
}
// 卡片内容主体样式
.border-box-content {
  position: relative;
  width: 100%;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

