.container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    zoom: 1;
    background-image: url('../images/bg.jpg');
    /* background-color: #ff3340; */
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size:cover;
    background-size: cover;
    background-position: center 0;
}

.banner-link-2 {
    position: relative;
    width: 280px;
    height: 150px;
    /* border: 1px dashed #999999; */
    
    /* margin: 20px 0 0 50px; */
    padding-top: 20px;
    cursor: pointer;
    z-index: 2;
}

.banner-link-3 {
    position: relative;
    width: 350px;
    height: 150px;
    /* border: 1px dashed #999999; */
    /* margin: 20px 0 0 50px; */
    padding-top: 20px;
    cursor: pointer;
    z-index: 2;
}

.detail {
    position: relative;
    left: 0;
    top: 0;
    width: 90%;
    height: 90%;
    z-index: 1;
    zoom: 1;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size:contain;
    background-size: contain;
    background-position: center 0;
    /* background-position: left; */
    background-image: url('../images/home.png');
}

.contract-us {
    position: absolute;
    top: 250px;
    right: 280px;
    width: 500px;
    height: 500px;
    /* border: 1px dashed #999999; */
    z-index: 2;
    cursor: pointer;
}

/* 备案信息 */
.footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    color: #999999;
    font-size: 12px;
    padding-bottom: 10px;
    z-index: 10;

    .ba-link {
        color: #999999;
        font-size: 12px;
        text-decoration: none;
    }
}

/* ================== 提示信息 start ================== */
.alert {
    display: none;
    position: fixed;
    text-align: center;
    top: 0;
    left: 50%;
    min-width: 200px;
    min-height: 20px;
    margin-left: -100px;
    z-index: 100;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-top: 5px;
}

.alert-info {
    color: #000000;
    font-size: 14px;
    background-color: #E6F1FF;
    border-color: #2089FF;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-warning {
    color: #8a6d3d;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
/* ================== 提示信息 end ================== */

/* ================== 弹窗 start ================== */
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
    opacity: 1;

    transition: all 1s 1s;
}

.modal-content {
    position: relative;
    width: 580px;
    height: 500px;
    /* margin: auto; */
    /* text-align: center; */
    
    background-color: #FFFFFF;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size:contain;
    background-size: contain;
    /* background-position: center 0; */
    background-image: url('../images/modal-bg.png');

    font-size: 16px;
    border-radius: 4px;
    opacity: 0.92;
}

.modal-header {
    /* width: 100%; */
    height: 30px;
    padding-top: 5px;
    border-bottom: 1px solid #F0F0F0;
    margin: 0 10px;
}

.modal-header .modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    padding-left: 10px;
}

.modal-header .modal-close {
    /* font-size: 16px; */
    color: #ff3340;
    /* padding: 4px 8px 0 0; */
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.modal-body {
    margin: 10px;
}

.modal-body > ul {
    width: 100%;
}

.modal-body > ul > li {
    padding: 12px 0;
}

.modal-body > ul > li > label {
    display: inline-block;
    width: 100px;
    color: #555555;
}

.modal-body > ul > li > input {
    width: 75%;
    min-width: 200px;
    height: 25px;
    padding: 3px;
    opacity: 0.5;
    border: 1px dashed #F0F0F0;
    border-radius: 4px;
}

.modal-body > ul > li > textarea {
    width: 75%;
    min-width: 200px;
    padding: 3px;
    opacity: 0.5;
    border: 1px dashed #F0F0F0;
    border-radius: 4px;
}

.modal-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 10px 0;
    font-size: 16px;
    /* border: 1px dashed #F0F0F0; */
}

.modal-footer > .btn-submit {
    width: 100px;
    height: 38px;
    
    color: #FFFFFF;
    background-color: #ff3340;
    border-radius: 4px;
    border: 1px solid #ff3340;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.modal-footer > .btn-cancel {
    width: 100px;
    height: 38px;
    
    color: #ff3340;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #ff3340;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    cursor: pointer;
}
/* ================== 弹窗 end ================== */
