/*----------------左侧菜单----------------*/
.menu-box {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 173px;
    height: 100%;
    z-index: 999;
    background-color: #fff;

    padding-top: 45px;
    padding-left: 28px;
    box-sizing: border-box;
    box-shadow: 0px 3px 26px 0px rgba(204,204,204,0.43);
    overflow-y: auto; /* 允许垂直滚动 */
}

/* 隐藏Chrome, Safari, Opera, Edge的滚动条 */
.menu-box::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.menu-icon{
    width: 20px;
    height: 19px;
    margin-right: 10px;
}

.menu-text {
    margin-top: 6px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    display: flex;
    padding: 7px;
}

.menu-block {
    border-top: 1px solid #EDEDED;
}

.menu-title{
    margin-top: 22px;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
}

/*----------------标题行----------------*/
.header {
    width: 100%;
    height: 76px;
    background: #FFFFFF;
    padding-top: 11px;
    padding-bottom: 14px;
    box-sizing: border-box;
}

.header-main {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo {
    width: 97px;
    height: 50px;
    margin-right: 16px;
}

.header-title {
    height: 20px;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}
.header-right {
    display: flex;
    align-items: center;

    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

/*----------------尾部----------------*/
.footer {
    height: 301px;
    background: #F7F5F2;
    width: 100%;
}

.footer-main {
    width: 1300px;
    margin: 0 auto;
    padding-top: 23.5px;

    display: flex;
    justify-content: space-between;
}

.footer-title{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 44px;
    margin-top: 34.5px;
}

.footer-tel{
    font-weight: 400;
    font-size: 36px;
    color: #333333;
    line-height: 44px;
    background: linear-gradient(0deg, #FFA205 0%, #FF7201 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 27.5px;
}

.footer-address{
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    width: 441px;
    height: 58px;
}

.footer-right {
    margin-top: 27px;
    display: flex;
}

.qrcode-img {
    width: 105px;
    height: 105px;
}

.qrcode-text {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 44px;
    text-align: center;
}

/*分割线*/
.divider{
    width: 80%;
    margin: 0 auto;
    height: 1px;
    background: #E4E4E4;
    margin-top: 59.5px;
}

.filing{
    height: 16px;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 44px;

    text-align: center;
}