﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
 
th {
    text-align: center;
}
.hoverselect:hover {
    color: #337ab7;
    cursor: pointer;
}
.selectBarItem {
    color: blueviolet;
    font-size: large;
    margin-top: 5px;
}
.defaultBarItem  {
    font-size: large;
    margin-top: 5px;
}


@keyframes scaleDraw { /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform: scale(1); /*开始为原始大小*/
        color:blueviolet;
    }

    75% {
        transform: scale(1.1);
        color: blueviolet;
    }
}
@keyframes scaleDrawWarn { /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform: scale(1); /*开始为原始大小*/
    }

    25% {
        transform: scale(1.3); /*放大1.1倍*/
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }
}
.ballonSelect { 
    color:black;
    -webkit-animation-name: scaleDraw; /*关键帧名称*/
    -webkit-animation-timing-function: ease; /*动画的速度曲线*/
    -webkit-animation-iteration-count: 1; /*动画播放的次数*/
    -webkit-animation-duration: 2s; /*动画所花费的时间*/
}
.ballonWarn {
    color: red;
    -webkit-animation-name: scaleDrawWarn; /*关键帧名称*/
    -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
    -webkit-animation-iteration-count: infinite; /*动画播放的次数*/
    -webkit-animation-duration: 3s; /*动画所花费的时间*/
}
@keyframes scaleSize { /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform: scale(1); /*开始为原始大小*/ 
    }

    50% {
        transform: scale(1.1); 
    }
}

.buttonNoticyWarn {
    -webkit-animation-name: scaleSize; /*关键帧名称*/
    -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
    -webkit-animation-iteration-count: infinite; /*动画播放的次数*/
    -webkit-animation-duration: 1.5s; /*动画所花费的时间*/
}

/*Chrome 下去除type ==  "number"  时 的右侧图标*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/*火狐 下去除type ==  "number"  时 的右侧图标*/
input[type="number"] {
    -moz-appearance: textfield;
}

/*IE下去除 右边的×*/
input::-ms-clear {
    display: none;
}
 
/*IE下去除 小眼睛*/
input::-ms-reveal {
    display: none;
}
 
