﻿.error_panel {
    height: 400px;
    width: 100%;
    text-align: center;
    margin: 0px auto 0 auto;
    position: relative;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

.error_panel .notice {
    display: flex; /* 使用 flexbox 布局，使内容水平排列 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: flex-start; /* 水平从左侧对齐 */
}

.error_panel .alert {
    width: 92px;
    height: 93px;
    background: url(../image/alert.png) center center no-repeat;
    margin-right: 20px;
position:relative;
}
.error_panel .alert::after{content:"";position:absolute;display:block;bottom:-20px;left:-20px;height:20px;width:130px;background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 63%,rgba(0,0,0,0) 100%);background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 63%,rgba(0,0,0,0) 100%);background:radial-gradient(ellipse at center,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 63%,rgba(0,0,0,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a000000',endColorstr='#00000000',GradientType=1)}
.error_panel .title {
    font-size: 28px;
    color: #3f3f3f;
    letter-spacing: 0.1em;
}

.error_panel .info {
    font-size: 16px;
    color: #3f3f3f;
    letter-spacing: 0.1em;
    margin-top: 14px;
}

.notice-icon {
    width: 92px;
    height: 93px;
    margin-right: 20px;
}

.noteice-content {
    position: relative;
    border: 2px solid #b1b200;
    padding: 30px 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.noteice-content::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #b1b200 transparent transparent;
}

.noteice-content::after {
    content: "";
    position: absolute;
    top: 21.5px;
    left: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #fff transparent transparent;
}
