/* 现代化修改/删除信息页面样式 - 与登录注册页面设计风格一致 */
/* 配色规范：#0f52bb 蓝色主色调，#f4f7f9 背景色，现代化毛玻璃效果 */

/* 引入Font Awesome图标库 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* 页面整体布局优化 */
body {
    background: linear-gradient(135deg, #f4f7f9 0%, #e8f2f8 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #333;
    line-height: 1.6
}

/* 主容器现代化 */
.body1000 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

#main.wrapper {
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    animation: fadeInUp 0.6s ease-out
}

/* 现代化搜索区域 */
.stepon2 {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    margin: 0 0 40px 0;
    position: relative;
    overflow: hidden
}

.stepon2::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
}

/*.stepon2:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 20px 60px rgba(15, 82, 187, 0.15)*/
/*}*/

.stepon2:hover::before {
    opacity: 0.1
}

.stepon2 li {
    margin: 15px 0;
    font-size: 16px;
    color: #555;
    font-weight: 500
}

.stepon2 li:first-child {
    margin-bottom: 25px
}

/* 现代化输入框设计 */
.typeinput {
    width: 450px;
    height: 50px;
    border: 2px solid rgba(15, 82, 187, 0.2);
    border-radius: 12px 0 0 12px;
    padding: 0 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(15, 82, 187, 0.05);
    font-family: inherit;
    color: #333;
    border-right: none;
    vertical-align: top
}

.typeinput:focus {
    outline: none;
    border-color: #bf1313;
    box-shadow: 0 0 0 3px rgba(15, 82, 187, 0.1), 0 8px 30px rgba(15, 82, 187, 0.15);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1)
}

.typeinput::placeholder {
    color: #999;
    font-size: 15px
}

/* 现代化提交按钮 */
.typebtn {
    width: 120px;
    height: 54px;
    background: linear-gradient(135deg, #bf1313 0%, #bf1313 100%);
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 82, 187, 0.25);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    margin-left: -2px;
    vertical-align: top
}

.typebtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease
}

.typebtn:hover::before {
    left: 100%
}

.typebtn:hover {
    background: linear-gradient(135deg, #bf1313 0%, #bf1313 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15, 82, 187, 0.35)
}

.typebtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(15, 82, 187, 0.25)
}

/* 现代化标题设计 */
h2.balance-h2 {
    background: linear-gradient(135deg, #bf1313 0%, #bf1313 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 25px;
    margin: 30px 0 20px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(15, 82, 187, 0.25);
    position: relative;
    overflow: hidden;
    text-align: left
}

h2.balance-h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease
}

h2.balance-h2:hover::before {
    left: 100%
}

/* 现代化内容区域 */
.stepon {
    text-align: left;
    padding: 30px;
    border-radius: 15px;
    margin: 0 0 30px 0;
    line-height: 1.8;
}

/*.stepon:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 15px 45px rgba(15, 82, 187, 0.12);*/
/*    background: rgba(255, 255, 255, 0.95)*/
/*}*/

.stepon a {
    color: #bf1313;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 8px 0
}

.stepon a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #bf1313 0%, #bf1313 100%);
    transition: width 0.3s ease
}

.stepon a:hover {
    color: #bf1313;
    transform: translateX(3px)
}

.stepon a:hover::after {
    width: 100%
}

.stepon font {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    display: block
}

/* 表单容器优化 */
form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 580px;
    margin: 0 auto
}

/* 响应式设计 */
@media (max-width: 768px) {
    .body1000 {
        padding: 0 15px
    }
    
    #main.wrapper {
        padding: 30px 20px;
        margin: 20px 0
    }
    
    .stepon2 {
        padding: 40px 20px
    }
    
    .typeinput {
        width: 250px;
        height: 45px;
        font-size: 15px;
        border-radius: 12px;
        border-right: 2px solid rgba(15, 82, 187, 0.2);
        margin-bottom: 15px
    }
    
    .typebtn {
        width: 100px;
        height: 45px;
        border-radius: 12px;
        margin-left: 0;
        font-size: 15px
    }
    
    form {
        flex-direction: column;
        gap: 15px
    }
    
    h2.balance-h2 {
        padding: 15px 20px;
        font-size: 16px
    }
    
    .stepon {
        padding: 25px 20px
    }
    
    .stepon a {
        font-size: 15px
    }
}

@media (max-width: 480px) {
    .typeinput {
        width: 100%;
        max-width: 280px
    }
    
    .typebtn {
        width: 90px;
        font-size: 14px
    }
    
    .stepon2 {
        padding: 30px 15px
    }
    
    .stepon2 li {
        font-size: 14px
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* 清除浮动 */
.clear,
.clearfix,
.cfix {
    clear: both
}

.clearfix::after,
.cfix::after {
    content: "";
    display: table;
    clear: both
}

/* 间距调整 */
.clear15 {
    clear: both;
    margin-bottom: 15px
}

/* 边框线优化 */
.borderline {
    border: none
}