/** * date:17/08/25 ,author:GuanQun*/
* {-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-user-select: none;outline: 0;-webkit-tap-highlight-color: transparent;-webkit-tap-highlight-color: transparent;}
.own-popup{border: 0px #f00 solid;position: fixed;z-index: 10001;top: 0;left: 0;right: 0;bottom: 0;display: flex;justify-content: center;align-items: center;}
#popup-in{width: 270px;border-radius: 13px;overflow: hidden;text-align: center;}
.popup-inner{border-bottom: 1px #CCC solid;position: relative;padding: 15px;border-radius: 13px 13px 0 0;background: rgba(255,255,255,.95);}
.popup-title{font-size: 18px;font-weight: 500;text-align: center;}
.popup-title+.popup-text {font-family: inherit;font-size: 14px;margin: 5px 0 0;text-align: center;color: #000;}
.popup-buttons{border: 0px #00f solid;position: relative;display: -webkit-box;display: -webkit-flex;display: flex;height: 44px;-webkit-box-pack: center;-webkit-justify-content: center;justify-content: center;}
.popup-button.popup-button-bold {font-weight: 600;}
.popup-button {border: none;font-size: 17px;line-height: 44px;position: relative;display: block;overflow: hidden;box-sizing: border-box;width: 100%;height: 44px;padding: 0 5px;cursor: pointer;text-align: center;white-space: nowrap;text-overflow: ellipsis;color: #F6383A;background: rgba(255,255,255,.95);-webkit-box-flex: 1;}
.popup-button:first-child:last-child {border-radius: 0 0 13px 13px;}
.popup-button.mui-popup-button-bold {font-weight: 600;}
.popup-button:last-child {border-radius: 0 0 13px;}
.popup-button:first-child {border-radius: 0 0 0 13px;}

.animated {animation-duration: 0.3s;animation-fill-mode: both;}
@keyframes pulse {from {transform: scale3d(1, 1, 1);}
50% {transform: scale3d(1.05, 1.05, 1.05);}
to {transform: scale3d(1, 1, 1);}}
.pulse {animation-name: pulse;}
@keyframes fadeIn {0% {opacity: 0; }50% {opacity: 0.85; }100% {opacity: 1; /*结尾状态 透明度为1*/}}
.fadeIn{-webkit-animation-name: fadeIn; /*动画名称*/-webkit-animation-duration: 400ms; /*动画持续时间*/animation-fill-mode: both;}
.popup-input input {font-size: 14px;width: 100%;height: 26px;margin: 15px 0 0;padding: 0 5px;border: 1px solid rgba(0,0,0,.3);border-radius: 0;background: #fff;}
.popup-input select {font-size: 14px;width: 100%;height: 26px;background: none;margin-top: 10px;}
input{  -webkit-user-select:auto;}
textarea{-webkit-user-select:auto;}
.popup-backdrop{position: fixed;z-index: 10000;top: 0;right: 0;bottom: 0;left: 0;opacity: 1;background: rgba(0,0,0,0.4)}