    /* 全局 */
    
    * {
        margin: 0;
        padding: 0;
    }

html {
    background: #ebebeb;
    height: 100%;
}

body {
    font-size: 14px;
    font-family: Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    height: 100%;
    background-color: #ebebeb !important;
}
    
    footer {
        color: #fff;
        text-align: center;
        height: 150px;
        width: 100%;
        background-color: #202020;
        margin-top: 5px;
        padding: 45px 0;
        position: relative;
        bottom: 0;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    a:hover {
        color: rgb(180, 147, 112);
        transition: linear 0.15s;
    }
    
    .global-header * {
        box-sizing: border-box;
    }
    
    .m-top-nav {
        display: flex;
    }
    
    input {
        border-radius: 6px;
        border: 1px solid rgba(229, 229, 229, 1);
        transition: ease-out 0.2s;
    }
    
    .btn {
        /* 按钮基础样式 */
        border-radius: 3px;
        border: none;
    }
    
    button:focus {
        outline: none;
    }
    
    ul {
        list-style: none;
    }
    
    .section {
        position: relative;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }
    
    .section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .list-item {
        border-bottom: 1px solid #eee;
        display: block;
        padding: 20px 0;
        position: relative;
        line-height: 1;
    }
    
    .list-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .clearfix {
        display: block;
    }
    
    .clearfix:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
    
    .active {
        color: rgb(180, 147, 112);
    }
    /* 顶部导航栏 */
    
    #top-navigation {
        background: #1F1F1F;
        width: 100%;
        height: 60px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
    }
    
    #top-navi__content {
        /* 顶部导航栏内容 */
        padding: 10px 20px;
        height: 60px;
        line-height: 30px;
        display: flex;
        align-items: flex-start;
        margin: 0 auto;
        position: relative;
        color: #fff;
        word-break: normal;
        justify-content: space-between;
        align-items: center;
    }
    
    #top-navi__content a {
        color: #fff;
    }
    
    #logo {
        /* logo图标 */
        height: 32px;
    }
    
    #top-nav-items {
        display: flex;
        flex-shrink: 0;
    }
    
    #top-nav-items ul {
        height: 36px;
        display: flex;
        align-items: center;
        margin: 0;
    }
    
    #top-nav-items ul li {
        margin-right: 15px;
    }
    /* 顶部栏搜索 */
    
    .top-nav-searchbox {
        width: 500px;
        margin-right: 20px;
    }
    
    .top-nav-search {
        position: relative;
        width: 100%;
    }
    
    #top-nav-search-form {
        width: 100%;
        background: #eee;
        border-radius: 3px;
    }
    
    #top-nav-search-form input {
        height: 30px;
        width: 100%;
        padding: 0 10px;
        border-radius: 3px 0 0 3px;
        border: none;
        color: black;
        background: transparent;
        transition: 0.2s ease-out;
        overflow: hidden;
    }
    
    .top-nav-search-submit {
        background: #D7D7D7;
        width: 40px;
        height: 30px;
        border-radius: 3px;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        outline: none;
    }
    
    .top-nav-search-submit img {
        height: 20px;
        margin: auto;
    }
    /* 新的 */
    
    .small-search {
        display: none;
    }
    
    .search-box {
        -webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
        transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
        width: 40px;
        height: 30px;
        border: none;
        cursor: pointer;
        background: #ebebeb;
    }
    
    .search-box+label .search-icon {
        color: black;
    }
    
    .search-box:hover {
        color: white;
        background: #c8c8c8;
        box-shadow: 0 0 0 5px #3d4752;
    }
    
    .search-box:hover+label .search-icon {
        color: white;
    }
    
    .search-box:focus {
        -webkit-transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
        transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
        border: none;
        outline: none;
        box-shadow: none;
        padding-left: 15px;
        cursor: text;
        width: 200px;
        border-radius: auto;
        background: #ebebeb;
        color: black;
    }
    
    .search-box:focus+label .search-icon {
        color: black;
    }
    
    .search-box:not(:focus) {
        text-indent: -5000px;
    }
    
    #search-submit {
        position: relative;
        left: -5000px;
    }
    
    .search-icon {
        position: relative;
        left: -33px;
        color: white;
        cursor: pointer;
    }
    /* 顶部右上角登陆上传功能区 */
    
    .top-nav-usercentre {
        display: flex;
        flex-shrink: 0;
        align-items: center;
    }
    
    .top-nav-usercentre div {
        margin-right: 10px;
        display: flex;
    }
    
    .top-nav-usercentre .btn {
        background: #ffb71b;
        width: 100px;
        height: 36px;
        text-align: center;
    }
    /* wrap宽度限定 */
    
    .wrapper {
        width: 1280px;
        margin: 0 auto;
        position: relative;
    }
    /* 弹窗层 */
    
    .popWindow {
        background: #00000060;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
    }

        .popWindow .main {
            margin: auto;
            /*margin-top: 10%;*/
            width: 720px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
        }
    
    .popWindow-header {
        font-weight: bold;
        border-bottom: 1px #eee solid;
        line-height: 42px;
        padding: 0 20px;
        position: relative;
    }
    
    .popWindow-header>* {
        display: inline-block;
    }
    
    .popWindow-header .popWindowClose {
        float: right;
        color: #aaa;
    }
    
    .popWindow-header .popWindowClose span:hover {
        cursor: pointer;
        color: #000;
    }
    
    .popWindow-body {
        padding: 10px 25px;
        position: relative;
    }
    
    .sheetDetailCheckout {
        width: 100%;
        position: relative;
        margin: 20px auto
    }
    
    .sheetDetailCheckout>* {
        display: inline-block
    }
    
    .sheetDetailCheckout .cover-img img {
        width: 136px;
    }
    
    .sheetDetailCheckout .sheet-title {
        font-size: 24px;
        height: 100%;
        margin-left: 15px;
    }
    
    .sheetDetailCheckout .sheet-title .label {
        padding: 0;
    }
    
    .sheetDetailCheckout .price {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    .sheetDetailCheckout .price-big {
        color: #000;
        font-size: 24px;
        margin-left: 5px;
        font-weight: 100;
    }

.popWindows .QRCodeContainer {
    border-top: 1px #ddd dashed;
    border-bottom: 1px #ddd dashed;
    padding: 5px;
    
}

        .popWindows .QRCodeContainer .shouldPayAmount {
            font-size: 18px;
            color: #333333;
            /*text-align: center;*/
        }
    
    .shouldPayAmount span {
        font-size: 20px;
        color: #bb9023;
    }

.popWindows .QRCode {
    margin: 0 auto;
    /*
        text-align: center;
            */
}
    
    .popWindows .footer {
        background: #f6f6ef;
        padding: 10px 50px;
        font-size:12px;
        color:#999999;
    }
    
    .popWindows .footer ul {
        margin: 0;
    }
    
    .popWindows .footer ul li {
        list-style: disc;
    }
    /* VIP购买 */
    
    .popWindows .VIPOptions {
        text-align: center;
        margin: 10px auto 10px;
    }
    
    .popWindows .VIPOptions>div {
        text-align: center;
        display: inline-block;
        position: relative;
        margin-right: 30px;
    }
    
    .popWindows .VIPOptions .selected .option-box {
        border: 4px #ff1f2e solid;
        box-shadow: 0 0 5px 1px #00000020;
    }
    
    .popWindows .VIPOptions>div:last-child {
        margin-right: 0;
    }
    
    .popWindows .VIPOptions .suggested {
        width: 75px;
        color: #fff;
        background-color: #ff1f2e;
        font-size: 13px;
        transform: rotate(-45deg);
        position: absolute;
        left: -20px;
        top: 30px;
        box-shadow: 0 0 5px 0.1px #00000040;
    }
    
    .popWindows .VIPOptions .option-box {
        width: 200px;
        border-radius: 5px;
        border: 1px #bbb solid;
        overflow: hidden;
        padding: 15px 0;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
    
    .popWindows .VIPOptions .selected .option-box .tick {
        background-color: #ff1f2e;
        line-height: 20px;
        position: absolute;
        padding: 0 15px;
        right: -10px;
        bottom: 0;
        transform: rotate(-45deg);
        color: #fff;
    }
    
    .popWindows .VIPOptions .selected .option-box .tick span {
        font-size: 16px;
        transform: rotate(45deg);
    }
    
    .popWindows .VIPOptions .option-box>span {
        display: block;
    }
    /* 弹窗登录 */
    
    .popWindow.userLoginPage .main {
        width: 500px;
    }
    
    .popWindow.userLoginPage .popWindow-body {
        padding: 0
    }
    /* ====== */
    
    .VIPOptions .discount-banner {
        background: #ff1f2e;
        color: #fff;
        width: 100px;
        margin: 0 auto;
        border-radius: 8px 8px 0 0;
    }
    
    .discount-banner .highlight {
        color: #ffe900;
    }
    
    .option-box .large {
        font-size: 30px;
        color: #f66c4b;
    }
    
    .popWindows .vip-rights h2 {
        text-align: center;
        margin-bottom:10px;
    }
    
    .popWindows .vip-rights table {
        margin: 0 auto;
    }
    
    .popWindows .vip-rights tr {
        line-height: 50px;
    }
    
    .popWindows .vip-rights td {
        font-size: 18px;
        margin-right: 30px;
    }
    
    .popWindows .vip-rights td:last-child {
        margin-right: 0px;
        margin-left: 120px;
    }
    
    .popWindows .vip-rights img:first-child {
        margin-left: 0;
    }
    
    .popWindows .vip-rights img {
        height: 36px;
        width: 35px;
        margin: 0 10px 0 80px;
        vertical-align: middle;
    }

.tabBoxSwitchU2 .tab-active {
    display: inline-block;
    height: 36px;
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    cursor: pointer;
    width: 120px;
    text-align: center;
    background-color: #EAE0D4;
}

.tabBoxSwitchU2 li {
    display: inline-block;
    height: 36px;
    font-size: 16px;
    font-weight:600;
    line-height: 36px;
    cursor: pointer;
    width: 120px;
    text-align:center;
    background-color:none;
}



.tabcont {
    display:none;
}

.activet {
    display: block;
}


@media screen and (max-width: 1400px) {
    .wrapper {
            width: 1000px;
        }
    }
    
    @media screen and (max-width:960px) {
        .large-search {
            display: none;
        }
        .small-search {
            display: inline-block;
        }
    }
    
    @media screen and (max-width:900px) {
        #top-nav-items li:nth-child(n+2) {
            display: none;
        }
        .cc-logo-content {
            width: 22px;
            overflow: hidden;
        }
        .top-nav-usercentre .btn {
            width: unset;
        }
    }