.media-one {
    height: 400px;
    background-image: url("../images/media_head_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-one-a {
    width: 800px;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: -50px;
}

.media-one-a-a {
    display: flex;
    align-items: center;
    padding-left: 15px;
    cursor: pointer;
    position: relative;
    height: 52px;
}

.media-one-a-a-a {
    width: 80px;
    text-align: center;
}

.media-one-a-a-a, .media-one-a-a-b {
    color: #0053EE;
}

.media-one-a-a-b {
    font-size: 20px;
}

.media-one-a-a-c {
    position: absolute;
    left: 0;
    top: 52px;
    border-radius: 5px;
    background-color: #ffffff;
    width: 100%;
    display: none;
    font-weight: bold;
    color: #666666;
    z-index: 10;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.media-one-a-a-c > li {
    height: 48px;
    line-height: 48px;
    text-align: center;
    transition: 0.6s;
    list-style: none;
}

.media-one-a-a:hover .media-one-a-a-c {
    display: block;
    animation-name: navanim;
    -webkit-animation-name: navanim;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    overflow: hidden;
}

@keyframes navanim {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.media-one-a-a-c > li.head-l-ul-active, .media-one-a-a-c > li:hover {
    background-color: #EBECFA;
    color: #4270CD;
    transition: 0.6s;
}

.media-one-a-b {
    flex: 1;
}

.media-one-a-b-a {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 0 15px;
    border: none;
    outline: none;
}

.media-one-a-c {
    width: 74px;
    height: 50px;
    background: linear-gradient(90deg, #FBD376 0%, #FEBB16 100%);
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.media-one-a-c-a {
    display: block;
    width: 32px;
    height: 32px;
}

.media-type-item {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 20px;
}

.media-type-item-a {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.media-type-item-a-a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.media-type-item-a-active .media-type-item-a-a {
    background-color: #0053EE;
}

.media-type-item-a-a-a {
    width: 24px;
    display: block;
}

.media-type-item-a-b {
    margin-left: 4px;
    font-size: 22px;
    color: #333333;
}

.media-type-item-a-active .media-type-item-a-b {
    color: #0053EE;
}

.media-stats {
    position: relative;
}

.media-stats-a {
    padding-top: 50px;
    box-sizing: border-box;
}

.media-stats-a-a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-stats-a-a-a {
    width: 164px;
    vertical-align: center;
    text-align: center;
}

.media-stats-a-a-b {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.media-stats-a-a-b-a {
    margin: 4px 10px 0 0;
    box-sizing: border-box;
    padding: 6px 10px;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
}

.media-stats-a-a-b-a:last-child {
    margin-right: 0;
}

.media-stats-a-a-b-active, .media-stats-a-a-b-a:hover {
    background-color: #0053EE;
    border-radius: 4px;
    color: #FFFFFF;
}

.media-stats-a-a-it {
    box-sizing: border-box;
    padding: 10px 0;
}

.media-stats-a-a-b-n {
    display: flex;
    align-items: center;
    flex: 1;
}

.media-stats-a-a-b-n-a {
    height: 24px;
    display: flex;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
}

.media-stats-a-a-b-n-a:last-child {
    margin-right: 0;
}

.media-stats-a-a-b-n-a-a {
    width: 20px;
    margin-right: 2px;
}

.media-stats-a-a-b-n-a-b {
    margin-right: 6px;
}

.media-stats-a-a-b-n-a-c {
    font-size: 18px;
}

.media-stats-a-a-b-n-a-d {
    position: absolute;
    left: 0;
    top: 24px;
    border-radius: 5px;
    background-color: #ffffff;
    min-width: 100%;
    width: max-content;
    display: none;
    color: #555555;
    z-index: 10;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.media-stats-a-a-b-n-a-d > li {
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: 0.6s;
    list-style: none;
    padding: 0 15px;
}

.media-stats-a-a-b-n-a:hover .media-stats-a-a-b-n-a-d {
    display: block;
    animation-name: navanim;
    -webkit-animation-name: navanim;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    overflow: hidden;
}

.media-stats-a-a-b-n-a-d > li.media-stats-a-a-b-n-a-d-active, .media-stats-a-a-b-n-a-d > li:hover {
    background-color: #EBECFA;
    color: #4270CD;
    transition: 0.6s;
}

.media-stats-a-a-b-y {
    display: flex;
    align-items: center;
    flex: 1;
}

.media-stats-a-a-b-y-aa {
    display: flex;
    align-items: center;
    line-height: 28px;
    height: 28px;
    background-color: rgba(0, 83, 238, 0.1);
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 10px;
    margin-right: 10px;
    font-size: 16px;
}

.media-stats-a-a-b-y-aa:last-child {
    margin-right: 0;
}

.media-stats-a-a-b-y-a {
    color: #0053EE;
}

.media-stats-a-a-b-y-a-a {
    margin-left: 2px;
    font-size: 14px;
    cursor: pointer;
}

.media-stats-a-a-b-y-ac {
    color: #FEBB16;
    cursor: pointer;
}

.media-sort {
    background-color: #F6F6F6;
}

.media-sort-a {
    height: 74px;
    display: flex;
    align-items: center;
}

.media-sort-a-a {
    display: flex;
    margin-right: 40px;
    cursor: pointer;
}

.media-sort-a-a:last-child {
    margin-right: 0;
}

.media-sort-a-a-a {
    box-sizing: border-box;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 16px;
    color: #0053EE;
    border: 1px solid #0053EE;
    text-align: center;
    line-height: 34px;
}

.media-sort-a-active .media-sort-a-a-a {
    color: #FEBB16;
    border: 1px solid #FEBB16;
}

.media-sort-a-a-b {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
}

.media-sort-a-a-b > i {
    cursor: pointer;
}

.media-sort-a-a-b-a {
    transform: rotate(180deg);
    margin-bottom: 2px;
}

.sort-icon-active {
    color: #e67318;
}

.media-sort-a-a-b-b {
    margin-top: 2px;
}

/*列表-start*/
.list-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.list-item ul {
    margin: 0;
    padding: 0;
}

.list-item li {
    list-style: none;
}

.list-data {
    display: flex;
    justify-items: center;
    padding: 30px;
    border-bottom: 1px solid #efefef;
}

.list-data:hover {
    background-color: #efefef;
}

.list-data-ul {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
}

.list-data-li > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.list-data-li > div > div:last-child {
    flex: 1;
    align-content: center;
    text-align: center;
}

.list-data-title {
    font-size: 12px;
    color: #6e6e6e;
    height: 16px;
    text-align: center;
}

.list-data-shopping-cart-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border: 1px solid #e67318;
    border-radius: 10px;
    color: #e67318;
    cursor: pointer;
    position: relative;
}

.list-data-shopping-cart-item:hover, .list-data-shopping-cart-item-active {
    background-color: #e67318;
    color: #ffffff;
}

.list-data-shopping-cart-item > i, .list-data-collect-item > i {
    margin-right: 5px;
}

.list-data-shopping-cart-item-price {
    position: absolute;
    right: 0;
    background-color: #ffffff;
    width: 212px;
    top: 38px;
    color: #333333;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 5px 10px #cccccc;
    border: 1px solid #ededed;
    z-index: 1;
    display: none;
}

.list-data-shopping-cart-item-price-t {
    position: absolute;
    top: -6px;
    width: 100%;
    left: 0;
    height: 5px;
}

.list-data-shopping-cart-item:hover .list-data-shopping-cart-item-price, .list-data-shopping-cart-item-price:hover {
    display: block;
}

.list-data-shopping-cart-item-price-l {
    display: flex;
    width: 100%;
    justify-items: center;
    background-color: #efefef;
    border-radius: 6px;
    padding: 0 10px;
    margin-top: 10px;
    box-sizing: border-box;
}

.list-data-shopping-cart-item-price-l:first-child {
    margin-top: 0;
}

.list-data-shopping-cart-item-price-l:hover {
    background-color: rgba(230, 115, 24, 0.2);
}

.list-data-shopping-cart-item-price-k, .list-data-shopping-cart-item-price-v {
    line-height: 32px;
    text-align: left;
}

.list-data-shopping-cart-item-price-k {
    width: 90px;
}

.list-data-shopping-cart-item-price-v {
    width: 70px;
    color: #e67318;
    display: flex;
    justify-items: center;
    font-size: 16px;
}

.list-data-collect {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 110px;
    margin-top: 6px;
}

.list-data-collect-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.page-item {
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.el-pagination button {
    margin-right: 10px;
}

.list-data-value a, .list-data-value a:hover, .list-data-value a:active, .list-data-value a:link {
    text-decoration: none;
    color: #3287fe;
}

.list-data-value > img {
    height: 22px;
}

.el-tooltip__popper.is-light {
    border: 1px solid #ffffff;
    box-shadow: 0 0 10px #ccc;
}

.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow {
    border-top-color: #ffffff;
}

.ellipsis {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-data-shopping {
    margin-left: 10px;
}

.list-data-collect-item:hover, .shoucang_yes {
    color: #e67318;
}

.el-dialog {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*height:600px;*/
    max-height: calc(100% - 30px);
    max-width: calc(100% - 30px);
}

.el-dialog .el-dialog__body {
    flex: 1;
    overflow: auto;
    padding: 20px 20px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.add-btn, .look-btn {
    display: inline-flex;
    height: 40px;
    line-height: 40px;
    justify-content: center;
    border: 1px solid #e67318;
    background-color: #e67318;
    border-radius: 4px;
    width: 100px;
    color: #ffffff;
    cursor: pointer;
}

.quxiao-btn, .login-btn {
    display: inline-flex;
    height: 40px;
    line-height: 40px;
    justify-content: center;
    border: 1px solid #e67318;
    border-radius: 4px;
    width: 100px;
    cursor: pointer;
    text-decoration: none !important;
}

.login-btn {
    background-color: #e67318;
    color: #ffffff;
    margin-left: 15px;
}

.look-btn {
    margin-left: 15px;
    text-decoration: none;
}

.look-btn:hover, .look-btn:active, .look-btn:link {
    text-decoration: none;
}

.list-data-value .look-price {
    color: #e67318 !important;
}

.el-dialog__footer {
    text-align: center;
}

.list-data-value.price-list-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -16px;
}

.price-list-item {
    display: flex;
    margin: 4px 0;
}

.price-list-item-label {
    display: inline-block;
    min-width: 65px;
    text-align: left;
}

.price-list-item-value {
    display: flex;
    align-items: baseline;
    text-align: left;
}

.line-through .price-list-item:first-child .price-list-item-value {
    text-decoration: line-through;
}

.list-data-shopping-item {
    margin-top: -16px;
}

/*列表-end*/
/*列表空数据--start*/
.server {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}

.server .link {
    width: 485px;
    display: inline-block;
    text-align: left;
}

.server .handle {
    font-size: 18px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.nomedia .server .handle a:first-child {
    border: 1px solid #ffb15e;
    background-color: #ffb15e;
    margin-left: 25px;
}

.nomedia .server .handle span {
    font-size: 14px;
    margin: 0 3px;
}

.nomedia .server .handle a:last-child {
    border: 1px solid var(--theme-corlor);
    color: var(--theme-corlor);
}

.nomedia .server .tip {
    margin-top: 10px;
    font-size: 12px;
    color: #666666;
}

.server .handle a:first-child {
    border: 1px solid #ffb15e;
    background-color: #ffb15e;
    margin-left: 25px;
}

.server .handle a {
    font-size: 14px;
    color: #fff;
    border-radius: 10px;
    width: 120px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
}

.server .handle a:last-child {
    border: 1px solid var(--theme-corlor);
    color: var(--theme-corlor);
}

.handle a {
    text-decoration: none !important;
}

.server .handle span {
    font-size: 14px;
    margin: 0 3px;
}

.server .tip {
    margin-top: 10px;
    font-size: 12px;
    color: #666666;
}

.icon-tixing {
    font-size: 36px;
    color: #e67318;
    margin-bottom: 20px;
}

.head_item_type_two .head_item {
    height: 632px;
}

.head_item_type_two .login_item {
    justify-content: center;
    height: 550px;
    margin-top: 0;
    align-items: unset;
}

.head_item_type_two .head_main_item {
    height: 580px;
}

.head_item_type_two .login_item_left {
    margin-top: 51px;
}

.head_item_type_two > .main-item {
    margin-top: -347px;
}

/*列表空数据--end*/