﻿.container-header {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}




/**********导航栏***********************************************************************/

.menu {
    width: 1200px;
    margin: 0;
    padding: 0;
    display: block;
}

.header-top {
    height: 100px;
    overflow: hidden;
    min-width: 1200px;
}
    .header-top .headlogo {
        width: 260px;
        height: 100px;
        line-height: 100px;
        text-align: center;
/*        border: 1px solid red;
*/    }
    .header-top .headlogo img{
        width:260px;
        height:90px;
    }
    .header-top .headsearch {
        width: 650px;
        height: 100px;
        line-height: 100px;
        text-align: center;
/*        border: 1px solid red;
*/    }
    .header-top .headlogin {
        width: 280px;
        height: 100px;
        text-align: center;
/*        border: 1px solid red;
*/    }



.header-menu {
    width: 100%;
    height: 63px; /*background-image:url(menu_bg.jpg);*/
    min-width: 1200px;
    margin: 0 auto;
}

.mainwrapper {
    width: 1200px;
    margin: 0 auto;
    clear: both;
    float: none;
}

#header-nav {
    background-image: url(/Content/Images/Home/menu_bg.jpg);
    border-radius: 5px;
    background-repeat: repeat-x;
    height: 63px;
    width: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

    #header-nav ul {
        width: 1200px;
    }

        #header-nav ul li {
            float: left;
            margin-right: 5px;
            display: inline-block;
            _display: inline;
        }

            #header-nav ul li a {
                display: block;
                height: 63px;
                font-family: 'Microsoft YaHei';
                font-size: 18px;
                line-height: 63px;
                color: white;
                text-decoration: none;
                padding-left: 15px;
                float: left;

            }

                #header-nav ul li a span {
                    padding-right: 15px;
                    white-space: nowrap;
                    height: 63px;
                    display: block;
                    float: left;
                    cursor: pointer;
                }

                #header-nav ul li.current a, #header-nav ul li a:hover { /*background-image:url(decoration.png);background-repeat:no-repeat;background-position:left -60px;*/
                    background-color: #198ac2; /*border-radius:5px 5px 0 0; */
                }

                    #header-nav ul li.current a span, #header-nav ul li a:hover span { /*background-image:url(decoration.png);background-repeat:no-repeat;background-position:left -60px;*/
                        background-color: #198ac2; /*border-radius:5px 5px 0 0;*/
                    }


/*********头部搜索框************************************************************************/
.searchRegion {
    width: 500px;
    height: 100px;
    line-height: 100px;
    margin-left: 3px;
    padding: 0px 0px;
}
.searchBox {
    border: 1px solid #1468ff;
    width: 400px;
    margin-top: 40px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 10px 40px rgba(20,104,255,0.1); /*ie8阴影*/
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999', Direction=0, Strength=6);
}
.search_text {
    width: 290px;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    color: #333;
    border: 0;
    font-size: 14px;
    box-sizing: border-box;
}
.search_sub {
    width: 110px;
    height: 40px;
    line-height: 40px;
    background: #1468ff url(/Content/Images/Home/icon_sousuo.png) no-repeat left;
    padding-left: 30px;
    border: 0;
    float: right;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
}

/********用户登录*************************************************************************/

.button-container {
    margin-top:45px;
}

.btn {
    /* 基础按钮样式 */
    display: inline-block; /* 允许设置宽高和内边距 */
    background-color: white; /* 背景色 */
    color: white; /* 文字颜色 */
    text-decoration: none; /* 移除下划线 */
    border-radius: 50px; /* 圆角 */
    border: 1px solid #1468ff; /* 边框 */
    text-align: center;
    /* 交互效果 */
    cursor: pointer; /* 鼠标手型 */
    width:90px;
    height:33px;
    line-height:33px;
    letter-spacing:5px;
}

    /* 鼠标悬停效果 */
    .btn:hover {
    }

    /* 点击效果 */
    .btn:active {
    }


/**********二维码模态框***********************************************************************/

/* 遮罩层样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* 弹框样式 */
.modal {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /*            max-width: 90%;
    */
    text-align: center;
    transform: scale(1);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s;
}

    .close-btn:hover {
        color: #e74c3c;
    }

/* 图片样式 */
.modal-image {
    width: 258px;
    height: 258px;
    object-fit: cover;
    border-radius: 5px;
    margin: 0px 0px;
}

.modal h2 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.modal p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}


/*********************************************************************************/
