
* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(121, 120, 120, 0.2);
    border-radius: 5px;
    background: #ededed;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(121, 120, 120, 0.2);
    background: #bbb9b9;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #088167;
    border-color: #088167;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #088167;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.loader {
    display: inline-block;
  border: 3px solid #f3f3f3; /* Light grey background */
  border-top: 3px solid #3498db; /* Blue border */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  }
/* 创建一个旋转动画 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  
.modal {
    display: table;
    width: 600px;
    height: 100%;
    margin: 0 auto;
}

.modal-dialog {
    display: table-cell;
    vertical-align: middle;
}

.area {
    margin: 0 0 0 14px;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none !important;
    box-shadow: none !important;
 }

 .base-alert {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background:rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    display: none;
 }
 .base-alert .alert-content {
    width: 814px;
    height: 446px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
 }
 .base-alert .alert-content .alert-content_delete {
    padding: 22px;
    text-align: right;
 }
 .base-alert .alert-content .state .title {
    font-weight: 600;
    font-size: 28px;
    color: #333333;
    margin: 34px 0 14px 0;
 }
 .base-alert .alert-content .state .text {
    font-weight: 400;
    font-size: 22px;
    color: #666666;
 }
 .base-alert .alert-content .buttom {
    margin: 90px 0 0 0;
    position: relative;
}
.base-alert .alert-content .buttom .btns {
    display: flex;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.base-alert .alert-content .btns .btns-left {
    background: #FFFFFF;
    border: 1px solid #CBCBCB;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    padding: 10px 32px;
    cursor: pointer;
    margin: 0 28px 0 0;
}
.base-alert .alert-content .btns .btns-left a {
    color: #333333;
}
.base-alert .alert-content .btns .btns-right {
    background: #088167;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding: 10px 32px;
    cursor: pointer;
}

.sidebar-center-show {
    display: block;
}
.sidebar-center-hide {
    display: none;
}

.AddModalWhole {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}
.EditModalWhole {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}
.AddModal {
    width: 600px;
    padding: 15px;
    border-radius: 4px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
}
.AddModaltitle {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 15px 0 ;
    border-bottom: 1px solid #999;
    margin: 0 0 15px 0;
}
.AddModalFooter {
    border-top: 1px solid #999;
    text-align: center;
    margin: 24px 0 0 0;
    padding: 15px 0 0 0;
}

.carousel-control.left {
    background-image: url('../image/left.png');
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center center;
}

.carousel-control.right {
    background-image: url('../image/right.png');
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center center;
}