﻿input[type="text"], 
input[type="number"],
input[type="date"]
input[type="password"] 
{
    border: 1px solid #ccc;
}

fieldset
{
    border: 1px solid #AE7541;
    background: #fff;
}

fieldset legend {
	color:#AE7541;
	font-weight:bold;
	padding:2px 5px 2px 5px;
}

fieldset label {	
	text-align:right;
	padding:4px;
}

fieldset div {
	clear:left;
	margin-bottom:2px;
}

.topLogo
{
    /*background-image: url('images/login_logo.jpg');
    background-repeat: no-repeat;
    background-color:White;*/
    background: url('images/logo_gold.png') center center no-repeat;
    background-size: contain;
    height:95px; 
    margin-top:60px;
}

#logo {
    display: block;
    float: left;
    background-image: url('images/image_redirect.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 320px;
    width: 700px;
}

#content {
    float: left;
    padding-left: 20px;
    min-height: 400px;
}

.validation-summary-errors {
    max-width: 250px;
}

.field-validation-error{
    display:block;
}

.error-box {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    z-index: 1000;
    background: #f8d7da;
    border-left: 4px solid #e74c3c;
    color: #721c24;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    opacity: 0;
}

    .error-box.show {
        transform: translateX(0);
        opacity: 1;
    }

.error-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    background: #e74c3c;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.error-content {
    flex-grow: 1;
    text-align: left;
}

.error-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.error-text {
    margin-bottom: 10px;
}

.error-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #721c24;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .error-close:hover {
        color: #000;
    }

/* 使用CSS创建关闭图标 */
.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

    .close-icon:before, .close-icon:after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #721c24;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .close-icon:before {
        transform: rotate(45deg);
    }

    .close-icon:after {
        transform: rotate(-45deg);
    }

.error-close:hover .close-icon:before,
.error-close:hover .close-icon:after {
    background-color: #000;
}

/* 进度条 */
.progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    width: 100%;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 100%;
    background: rgba(231, 76, 60, 0.7);
    border-radius: 2px;
    transition: width linear;
}