html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    background-color: #F3F4F8;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* *{
    font-size: 14px;
} */
.redBorder{
    border: 1px solid red !important;
}

select{
    outline: none;
}

.container {
    background-color: #F3F4F8;
}
td:hover{
    background-color: #F3F4F8;
}
.border {
    border-radius: 5px;
}
.border-box{
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.white {
    color: white;
}

.black {
    color: black;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.full-parent {
    width: 100%;
    height: 100%;
}
.f11{
    font-size: 11px;
}

.f16 {
    font-size: 16px;
}

.f14 {
    font-size: 14px;
}

.f12 {
    font-size: 12px;
}

.f20 {
    font-size: 20px;
}

.flex1 {
    flex: 1;
}

.bold {
    font-weight: bold;
}

.hintColor {
    color: #999999;
}

.hint2Color{
    color: #BCBCBC;
}

.HLine {
    width: 1px;
    height: 50px;
    background-color: #DBDBDB;
}

.WLine {
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
}


.padding10 {
    padding: 10px;
}

.padding20 {
    padding: 20px;
}

.textCenter {
    text-align: center;
}

.textLeft {
    text-align: left;
}

.space-between {
    justify-content: space-between;
}

.section {
    border-radius: 5px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    flex: 1;
    transition: all 1s;
}
/* .section:hover{
    box-shadow: 0px 4px 10px 9px rgba(0, 0, 0, 0.3);
} */
[v-cloak]{
    display: none;
}
.whiteButton{
    box-sizing: border-box;
    background-color: white;
    color: black;
    border-radius: 5px;
    white-space: nowrap;

    border: 1px solid #BBBBBB;
    font-size: 12px;
    display: inline-block;
    padding: calc(0.25vw + 0.25vh) calc(0.75vw + 0.75vh);
    user-select: none;
    position: relative;
    z-index: 2;
    transition: color;
    transition-delay: 0.6s;
}
.whiteButton:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #E4512B;
    /* opacity: 0.7; #ce951b*/
    z-index: -1;
    transition: width 0.5s ease-in-out;
  }

  .whiteButton:hover:before {
    width: 100%;
  }
  .whiteButton:hover{
    color: white !important;
    /* border: none; */
  }


.blueButton{
    box-sizing: border-box;
    background-color: #316AE4;
    color: white;
    border-radius: 5px;
    white-space: nowrap;

    border: 1px solid #BBBBBB;
    font-size: 12px;
    display: inline-block;
    padding: calc(0.25vw + 0.25vh) calc(0.75vw + 0.75vh);
    user-select: none;
}
.blueButton:hover{
    cursor: pointer;
}
.whiteButton:hover{
    cursor: pointer;
}

.blueBg{
    background-color: #316AE4;
}
.blueColor{
    color: #316AE4;
    cursor: pointer;
}
.pointer{
    cursor: pointer;
}

table {
    line-height: 50px;
    border-collapse: collapse;
    user-select: none;
}

table tr {
    border-bottom: 1px solid #DBDBDB;
}