
.wrap {

}

.common-header {
    /*height: 120px;*/
    line-height: 120px;
    text-align: center;
}

.common-header .main {
    display: block;
    overflow: hidden;
    padding: 15px 0 15px 0;
}

.common-header .d1 {
    overflow: hidden;
    padding: 0 15px 0 15px;
}

.common-header .logo {
    float: left;
    height: 50px;
}

.common-header .login {
    float: right;
    margin-left: 30px;
    height: 50px;
    line-height: 50px;
    padding-left: 25px;
    padding-right: 25px;
    background-image: linear-gradient(to right, #0AB2E6, #1FDFB2);
    border-radius: 50px;
    color: white;
    cursor: pointer;
}

.common-header .login a {
    color: white;
}

.common-header .table-box {
    overflow: auto;
    height: 50px;
    margin-top: 15px;
}


.common-header .table-box::-webkit-scrollbar {
    width: 0; /* 隐藏垂直滚动条 */
    height: 0; /* 隐藏水平滚动条 */
    display: none;
}

.common-header .table-box::-webkit-scrollbar-thumb {
    background-color: transparent; /* 设置滚动条颜色为透明 */
}

.common-header .table-box::-webkit-scrollbar-track {
    background-color: transparent; /* 隐藏滚动条轨道背景 */
}

.common-header .table-box::-webkit-scrollbar-thumb {
    background-color: transparent; /* 隐藏滚动条滑块背景 */
}

.common-header .table {
    width: 460px;
    height: 50px;
}

.common-header .table li {
    float: left;
    margin-left: 20px;
    font-size: 16px;
    display: block;
    color: #311F09;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
}

.common-header .table li a{
    color: #311F09;
}

.common-header.index .table li a{
    color: white;
}

.common-header .table li.on {
    background: linear-gradient(to left, #2AF598, #009EFD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


