/*  全局样式===================================================================================================  */

html {
    scroll-behavior: smooth;
}
body {
    background: #f3f4f6;
    margin: 0;
    padding: 0;
}

div {
    box-sizing: border-box;
}

ul,li {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
}

input:focus {
    outline: none;
}

label {
    cursor: pointer;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Magneto';
    src: url('./MAGNETOB.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.icon-tf {
    transform: rotate(0deg)!important;
}

.icon-tf1 {
    transform: rotate(180deg)!important;
}

.autoHeight {
    height: auto!important;
}

.cac_top{
    width: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 50px;
}

.cac_top1 {
    width: 0;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -8px;
}

.typed-cursor {opacity: 0!important;}

.Arrow_left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background: #fff;
    position: absolute;
    z-index: 9;
    left: -18px;
    top: 162px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all .3s;
}

.Arrow_left .icon-arrowup {
    font-weight: normal;
    transform: rotate(-90deg);
}

.Arrow_left:hover {
    background: #fde125;
    color: #fff;
}

.Arrow_right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background: #fff;
    position: absolute;
    z-index: 9;
    right: -18px;
    top: 162px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all .3s;
}

.Arrow_right .icon-arrowup {
    font-weight: normal;
    transform: rotate(90deg);
}

.Arrow_right:hover {
    background: #fde125;
    color: #fff;
}

/*    复选框=========================================================================================== */

.toggle-item {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    border:  1px solid #dcdfe6;
    border-radius: 2px;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    background-color: #fff;
    z-index: 1;
    transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);
}

.toggle-trigger {
    display: none;
}

.toggle-trigger + :not(checked) + .toggle-item {
    background-color: #fff;
    border-color: #dcdfe6;
}

.toggle-trigger:checked + .toggle-item {
    background-color: #296de7;
    border-color: #296de7;
}

.toggle-trigger:checked + .toggle-item::after {
    box-sizing: border-box;
    content: "";
    border: 1px solid #fff;
    border-left: 0;
    border-top: 0;
    height: 7px;
    left: 4px;
    position: absolute;
    top: 1px;
    transform: rotate(45deg) scaleY(0);
    width: 4px;
    transition: transform .15s ease-in .05s;
    transform-origin: center;
    transform: rotate(45deg) scaleY(1);
}

.label-style {
    vertical-align: middle;
    font-size: 14px;
    margin-left: 6px;
    display: inline-block;
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*  滚动条样式====================================================================================== */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #f7f7f7;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .05);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .05);
    border-radius: 10px;
    background-color: #f7f7f7;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    background-color: #ddd;
}

/*  pol & pod list ====================================================================================== */

.Index_search_list {
    margin: 0;
    max-height: 316px;
    background: #fff;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: absolute;
    overflow-y: auto;
    max-height: 452px;
    z-index: 1004;
}

.Index_search_list li {
    list-style: none;
    font-size: 13px;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #f3f4f6;
    padding: 0 10px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

.Index_search_list li:hover {
    background: #fffadd;
    padding-left: 20px;
    color: #ff6800;
}

.Index_search_list1 {
    margin: 0;
    background: #fff;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: absolute;
    width: 500px !important;
    z-index: 1004;
}

.Index_search_list1 li {
    border-bottom: 1px solid #f3f4f6;
    border-left: 2px solid #fff;
    transition: all .3s;
    display: flex;
}

.Index_search_list1 li h1 {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
}

.Index_search_list1 li span {
    display: flex;
    flex-wrap: wrap;
}

.Index_search_list1 li h2 {
    font-size: 13px;
    line-height: 36px;
    padding: 0 10px;
    color: #333;
    cursor: pointer;
}

.Index_search_list1 li:hover {
    padding-left: 10px;
    border-left: 2px solid #ff6800;
}

.Index_search_list1 li:hover h1 {
    color: #ff6800;
}

.Index_search_list1 h2:hover {
    background: #fffadd;
    color: #ff6800;
}

.Index_search_collect {
    margin: 0;
    background: #fff;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: absolute;
    display: flex;
    z-index: 1004;
}

.Index_search_collect_area {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    width: 94px;
}
.Index_search_collect_area li {
    box-sizing: border-box;
    width: 94px;
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    border-left: 2px solid #fff;
    border-right: 1px solid #eee;
    padding: 0 10px;
    color: #333;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

.Index_search_collect_area li:first-child {
    border-top: 1px solid #f3f4f6;
}

.Index_search_collect_area li:hover {
    background: #f3f4f6;
    color: #ff6800;
    border-left: 2px solid #ff6800;
}

.Index_search_collect_area_on {
    background: #f3f4f6;
    color: #ff6800!important;
    border-left: 2px solid #ff6800!important;
}

.Index_search_collect_content {
    width: 570px;
    height: 300px;
    overflow-y: scroll;
}

.Index_search_collect_content .continent-service_999 a{
    display: inline-block;
    width: 100%;
}

.Index_search_collect_content ul {
    margin: 0;
    padding: 0 12px;
    list-style: none;
    box-sizing: border-box;
}

.Index_search_collect_content ul li {
    font-size: 12px;
    color: #333;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

.Index_search_collect_content .search-ul-port li:hover {
    background: #fffadd;
    color: #ff6800;
    padding-left: 22px;
}

.Index_search_collect_content .search-ul-port li:hover a {
    color: #ff6800;
}

.Index_search_collect_content .pod-service-title {
    color: #999999;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 4px;
}

.Index_search_collect_content .pod-service-title-on{
    color: #ff6800;
}

.Index_search_collect_content .pod-service-title:hover {
    color: #ff6800;
}

.Index_search_collect_content ul.search-ul-service{
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 6px;
}

.Index_search_collect_content ul.search-ul-service li {
    width: 546px!important;
}

/*    header & login & footer  ===================================================================================== */

.header_box {
    width: 100%;
    height: 80px;
    background: #fde125;
    display: flex;
    align-items: center;
}

.header_box_mid {
    width: 1200px;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.header_box_mid img {
    width: 160px;
    height: 50px;
}

.header_city {
    margin-left: 10px;
    height: 100%;
    padding-top: 40px;
}

.header_city div {
    height: 21px;
    border-radius: 4px;
    background: #002d59;
    color: #fff;
    padding: 0 4px 0 7px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header_city .icon-city {
    font-size: 13px;
}

.header_city h6 {
    height: 11px;
    line-height: 12px;
    font-size: 12px;
    font-weight: normal;
    padding: 0 5px;
    border-right: 1px solid #999;
    white-space: nowrap;
}

.header_city .icon-show {
    font-size: 12px;
    margin-left: 3px;
}

.header_city ul {
    list-style: none;
    background: #002d59;
    border-radius: 4px;
    margin: 2px 0 0;
    padding: 2px 8px;
    position: relative;
    z-index: 1004;
}

.header_city li {
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 4px 0;
    border-bottom: 1px solid #999;
    cursor: pointer;
}

.header_city li:last-child {
    border: none;
}

.header_navi {
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_navi1 {
    position: relative;
    box-sizing: border-box;
    width: 100px;
    height: 34px;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    border: 1px solid #fcf3b0;
    color: #333;
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
}

.header_navi2, .header_navi1:hover {
    box-sizing: border-box;
    width: 100px;
    height: 34px;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    border: 1px solid #fcf3b0;
    background: #006ce4!important;
    color: #fff!important;
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;
}

.header_navi .icon-xcx {
    margin-right: 4px;
}

.header_navi .icon-plus {
    margin: 1px 0 0 2px;
    font-size: 15px;
}

.header_navi1 .icon-plus {
    color: #d0a163;
}

.header_navi2 .icon-plus, .header_navi1:hover .icon-plus {
    color: #fff!important;
}

.header_navi_new::after {
    content: "";
    background-image: url(/static/images/new.gif);
    position: absolute;
    width: 108px;
    height: 46px;
    left: 0px;
    bottom: 0px;
}

.nav-drop-down-wrapper {
    position: relative;
    cursor: pointer;
}

.nav-drop-down {
    display: none;
    padding-top: 48px;
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header_navi3:hover {
    animation: jump 0.3s ease-in-out;
    position: relative;
    z-index: 11;
}

.nav-drop-down-wrapper:hover .nav-drop-down, .nav-drop-down:hover {
    display: block;
    opacity: 0;
    animation: show 0.4s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes jump {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0px);
    }
}

@keyframes show {
0% {
    transform: translate(-50%, -5px);
    opacity: 0;
}
100% {
    transform: translate(-50%, 0px);
    opacity: 1;
}
}

.showxcx {
    display: none;
    width: 180px;
    height: 220px;
    z-index: 1000;
    position: absolute;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    top: 50px;
    left: -40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.showxcx img {
    width: 160px;
    height: 160px;
}

.showxcx em {
    display: block;
    text-align: center;
    font-style: normal;
    margin: 10px 0 12px;
    color: #333;
}

.header_navi5:hover > .showxcx {
    display: block;
}

.header_login {
    width: 100px;
    height: 34px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    background: #fcf3b0;
    color: #333;
    cursor: pointer;
}

.header_login h5 {
    font-size: 12px;
    font-weight: normal;
}

.header_login h5:hover {
    color: #ff6800;
}

.header_login h6 {
    font-weight: normal;
    padding-bottom: 1px;
}

.header_logined {
    min-width: 100px;
    height: 34px;
    font-size: 12px;
    display: flex;
    align-items: center;
    border-radius: 17px;
    background: #fcf3b0;
    color: #333;
    cursor: pointer;
    position: relative;
}

.header_logined img {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin: 0 3px;
    border-radius: 16px;
    overflow: hidden;
}

.header_logined h5 {
    max-width: 100px;
    font-size: 12px;
    font-weight: normal;
    box-sizing: border-box;
    margin: 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_logined_vip {
    display: inline-block;
    width: 58px;
    height: 24px;
    margin: 0 5px 0 0;
    background-image: url('/static/images/vip.png');
}

.header_logined_plus {
    display: inline-block;
    width: 75px;
    height: 24px;
    margin: 0 5px 0 0;
    background-image: url('/static/images/plus.png');
}

.showinfo_box {
    display: none;
    padding-top: 51px;  
    z-index: 1000;
    position: absolute;
    top: 0px;
    left: -160px;
}

.showinfo {
    display: flex;
    flex-wrap: wrap;
    width: 280px;
    height: 180px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    background: url("../images/showinfo_bg.jpg");
    cursor: auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.showinfo .cac_top1 {
    border-bottom: 10px solid #fdf6ed;
    top: 41px;
    margin-left: 60px;
}

.showinfo img {
    width: 48px!important;
    height: 48px!important;
    min-width: 48px!important;
    border-radius: 24px!important;
}

.showinfo span {
    display: flex;
    flex-wrap: wrap;
    width: 200px;
    height: 48px;
    position: relative;
}

.showinfo h1 {
    font-size: 14px;
    font-weight: normal;
    color: #8f6826;
    max-width: 140px;
    min-width: 62px;
    position: relative;
    padding-right: 20px;
    height: 24px;
    line-height: 28px;
    padding-left: 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showinfo .icon-edit, .showinfo .icon-save {
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.showinfo .icon-close {
    font-size: 18px;
    font-weight: normal;
    color: #cea25c;
    cursor: pointer;
}

.showinfo .icon-close:hover {
    color: #8f6826;
}

.showinfo h1 input{
    background: none;
    border: none;
    border-bottom: 1px solid #8f6826;
    width: 100px;
    color: #333;
}

.showinfo h2 {
    font-size: 12px;
    font-weight: normal;
    color: #ae9373;
    width: 140px;
    height: 24px;
    line-height: 20px;
    padding-left: 10px;
    box-sizing: border-box;
}

.showinfo button {
    font-size: 12px;
    padding: 0 6px;
    border: none;
    background: linear-gradient(180deg, #dbc7a7, #cc9b4e);
    color: #fff;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;

}

.showinfo button:hover {
    background: linear-gradient(180deg, #cc9b4e, #dbc7a7);
}

.showinfo div {
    width: 100%;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    height: 100px;
    margin-top: 10px;
    background: linear-gradient(45deg, #dbc7a7, #cc9b4e);
}

.showinfo h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 120px;
    height: 24px;
    line-height: 24px;
    text-align: right;
    padding-right: 4px;
    box-sizing: border-box;
}

.showinfo h4 {
    font-size: 14px;
    color: #fff;
    width: 120px;
    height: 24px;
    line-height: 26px;
    font-weight: normal;
    padding-left: 6px;
    box-sizing: border-box;
}

.showinfo em {
    font-size: 12px;
    color: #fff;
    width: 100%;
    font-style: normal;
    height: 14px;
    line-height: 12px;
    text-align: center;
}

.showinfo a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdf6ed;
    border-radius: 16px;
    font-size: 12px;
    padding-bottom: 2px;
    color: #8f6826;
    transition: all .3s;
    cursor: pointer;
}

.showinfo a:hover {
    background: #85451d;
    color: #fff;
}

.header_logined:hover > .showinfo_box {
    display: block;
}

.showinfo_box:hover {
    display: block;
}

.pop_up {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.login_box {
    position: fixed;
    top: 50vh;
    margin-top: -200px;
    left: 50%;
    margin-left: -180px;
    width: 360px;
    height: 410px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.login_box h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.login_box img {
    width: 300px;
    height: 300px;
}

.login_box span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_box i {
    font-size: 14px;
    width: 19px;
    height: 16px;
    margin-right: 4px;
    border-radius: 8px;
    background: #08c764;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_box h5 {
    font-size: 12px;
    font-weight: normal;
    color: #999;
}

.login_box a {
    font-size: 12px;
    font-weight: normal;
    color: #ffba0b;
    cursor: pointer;
}

.login_box a:hover {
    color: #006ce4;
    text-decoration: underline;
}

.login_box_band {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.login_box_band h2 {
    font-size: 14px;
    font-weight: normal;
    color: #999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.login_box_band b {
    font-size: 14px;
    font-weight: normal;
    color: #ff6800;
}

.login_box_input1 {
    width: 200px;
    height: 48px;
    padding: 0 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-right: none!important;
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
    border-radius: 4px;
    box-sizing: border-box;
}


.login_box_input1::placeholder {
    font-size: 14px;
    color: #ccc;
}

.login_box_input1_new {
    width: 300px;
    height: 48px;
    padding: 0 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login_box_input1_new::placeholder {
    font-size: 14px;
    color: #ccc;
}

.login_box_band button {
    width: 100px;
    background: #006ce4;
    box-sizing: border-box;
    border: none;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.login_box_band button:hover {
    background: #0088ff;
}

.login_box_code {
    display: flex;
    position: relative;
    width: 100%;
    height: 48px;
}

.login_box_code div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.login_box_code span {
    width: 44px;
    height: 48px;
    border: 1px solid #eee;
    display: inline-flex;
    box-sizing: border-box;
    border-radius: 4px;
}

.login_box_code p {
    position: absolute;
    width: 328px;
    height: 48px;
    margin: 0;
    top: 0;
    left: 0;
    overflow: hidden;
}

.login_box_input2 {
    float: left;
    width: 360px;
    height: 48px;
    padding: 0;
    border: none;
    background: none;
    font-size: 24px;
    color: #666;
    letter-spacing: 38px;
    padding-left: 14px;
}

.login_box h3 {
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    background: #ffba0b;
    height: 36px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}

.login_box h3:hover {
    background: #ff6800;
}

.Vip_subscribe {
    width: 880px;
    height: 388px;
    position: absolute;
    top: 50vh;
    margin-top: -220px;
    left: 50%;
    margin-left: -400px;
    background-color: #fff7da;
    background-image: url(../images/subscribe_bg.jpg);
    background-repeat: no-repeat;
    background-position-x: right;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
}

.Vip_userinfo {
    width: 100%;
    height: 68px;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
}

.Vip_userinfo img {
    width: 48px;
    height: 48px;
    border-radius: 24px;
}

.Vip_userinfo span {
    display: flex;
    flex-wrap: wrap;
    width: 200px;
    height: 48px;
    flex-grow: 2;
}

.Vip_userinfo h1 {
    font-size: 14px;
    color: #8f6826;
    height: 24px;
    line-height: 28px;
    padding: 0 10px;
    box-sizing: border-box;
}

.Vip_userinfo h2 {
    font-size: 12px;
    font-weight: normal;
    color: #ae9373;
    height: 24px;
    line-height: 20px;
    padding-left: 10px;
    box-sizing: border-box;
    width: 100%;
}

.Vip_userinfo .icon-close {
    font-size: 24px;
    color: #dfceb9;
    padding: 12px 0;
    cursor: pointer;
    transition: all .3s;
}

.Vip_userinfo .icon-close:hover {
    color: #8f6826;
}

.Vip_class {
    width: 660px;
    height: 320px;
}

.Vip_class_title {
    width: 660px;
    height: 84px;
    background: url("../images/subscribe_title1.png");
    display: flex;
    align-items: center;
}

.Vip_class_title h1 {
    font-size: 18px;
    color: #8f6826;
    width: 200px;
    padding: 35px 10px 20px 35px;
    box-sizing: border-box;
}

.Vip_class_title h2 {
    font-size: 14px;
    color: #ae9373;
    font-weight: normal;
    padding: 48px 0px 20px 18px;
}

.Vip_class_item {
    margin:  0 20px 16px 16px;
    padding: 10px;
    width: 624px;
    height: 220px;
    list-style: none;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.Vip_class_item li {
    display: flex;
    flex-wrap: wrap;
    width: 146px;
    height: 200px;
    background: #f7f7f7;
    cursor: pointer;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1px solid #f7f7f7;
    overflow: hidden;
    transition: all .3s;
}

.Vip_class_item li:hover {
    border: 1px solid #f4a629;
    background: #f0cc993d;
}

.Vip_class_item li:last-child {
    border: 1px solid #000;
    background-image: url('/static/images/plus_bg.jpg')!important;
}

.Vip_class_item li:last-child h1 {
    color: #fff;
}

.Vip_class_item li:last-child h2 {
    color: #d2af77;
}

.Vip_class_item_selected {
    border: 1px solid #f4a629!important;
    background: #f0cc993d!important;
    position: relative;
}

.Vip_class_item_selected::before {
    content: "";
    color: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    background: #f4a629;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 0;  
}

.Vip_class_item_selected::after {
    content: "";
    width: 5px;
    height: 10px;
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.Vip_class_item li h1 {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    text-align: center;
    width: 100%;
    height: 60px;
    line-height: 80px;
}

.Vip_class_item li h2 {
    font-size: 32px;
    font-weight: bold;
    color: #8c560b;
    width: 60%;
    text-align: right;
    height: 36px;
}

.Vip_class_item li h3 {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    text-decoration: line-through;
    width: 40%;
    height: 36px;
    line-height: 56px;
    padding-left: 10px;
    box-sizing: border-box;
}

.Vip_class_item li h4 {
    width: 100%;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    color: #999;
    height: 104px;
    line-height: 56px;
}

.Vip_class_item li h5 {
    width: 100%;
    height: 32px;
    line-height: 46px;
    text-align: center;
}

.Vip_class_item li h6 {
    background: linear-gradient(255deg, #feb75b, #ffd77a);
    color: #663c00;
    font-size: 12px;
    font-weight: normal;
    padding: 3px 6px;
    position: absolute;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 8px;
}

.Vip_class_item li img {
    width: 140px;
    height: 140px;
    margin: 14px;
}

.Vip_payment {
    width: 220px;
    height: 320px;
    padding: 0 16px 16px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.Vip_payment h1 {
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: normal;
    color: #8c560b;
    height: 64px;
    line-height: 56px;
}

.Vip_payment ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 34px;
}

.Vip_payment ul li {
    font-size: 16px;
    color: #333;
    height: 32px;
    border-bottom: 2px solid #eee;
    width: 100px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}

.Vip_payment ul li:hover {
    border-bottom: 2px solid #f4a629;
    color: #8c560b;
}

.Vip_payment_selected {
    border-bottom: 2px solid #f4a629!important;
    color: #8c560b!important;
}

.Vip_payment span {
    display: inline-block;
    width: 100%;
    text-align: center;
    height: 206px;
    position: relative;
}

.Vip_payment img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 1px solid #f4a629;
    box-sizing: border-box;
    margin-top: 16px;
}

#alipay-qrcode{
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 1px solid #f4a629;
    box-sizing: border-box;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

#alipay-iframe{
    width: 130px;
    height: 130px;
    border: unset;
    overflow: hidden; /* 隐藏滚动条 */
    scrollbar-width: none; /* 对于Firefox */
    -ms-overflow-style: none;
}

.Vip_payment h2 {
    width: 100%;
    height: 30px;
    font-size: 12px;
    color: #333;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Vip_payment .icon-wepay {
    font-size: 14px;
    margin-right: 6px;
    color: #43c93e;
}

.Vip_payment .icon-alipay {
    font-size: 18px;
    margin: 1px 6px 0 0;
    color: #02a9f1;
}

.Vip_payment h3 {
    width: 158px;
    height: 158px;
    border-radius: 10px;
    background: #ffffffdd;
    position: absolute;
    top: 17px;
    left: 23px;
}

.Vip_payment button {
    background-image: linear-gradient(90deg, #ffe48c, #ffcb8c);
    color: #663800;
    border: none;
    width: 120px;
    height: 30px;
    border-radius: 15px;
    margin-top: 65px;
    cursor: pointer;
    transition: all .3s;
}

.Vip_payment button:hover {
    filter: brightness(110%);
}

/*  footer  ==================================*/

.footer_box_bg {
    width: 100%;
    background: #333;
}

.footer_box {
    width: 1200px;
    margin: 0 auto;
    height: 202px;
    padding: 40px 0;
    display: flex;
}

.footer_list {
    display: flex;
    flex-wrap: wrap;
}

.footer_list h1 {
    font-size: 13px;
    font-weight: bold;
    width: 100%;
    color: #999;
    line-height: 24px;
    display: flex;
    align-items: flex-end;
}

.footer_list h2, .footer_list h3 {
    width: 100%;
    font-size: 13px;
    font-weight: normal;
    color: #999;
    height: 24px;
    display: flex;
    align-items: flex-end;
}

.footer_list h2 a {
    color: #999;
    text-decoration: none;
}

.footer_list h2 a:hover {
    color: #0088ff;
    text-decoration: underline;
}

.footer_list h3 {
    cursor: pointer;
    position: relative;
}

.footer_list h3:hover {
    color: #ffa50a;
}

.footer_list em {
    z-index: 500;
    display: none;
    position: absolute;
    width: 130px;
    height: 130px;
    top: -135px;
    padding: 5px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.footer_list em img {
    width: 120px;
    height: 120px;
}

.footer_list em .cac_top {
    left: 55px;
}

.footer_list h3:hover > em {
    display: block;
}

.footer_list span {
    font-size: 12px;
    color: #999;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: flex-end;
}

.footer_list a {
    color: #0088ff;
}

.footer_list img {
    width: 160px;
    height: 50px;
}
.footer_list span img {
    width: 15px;
    height: 15px;
    margin: 0 5px
}

/*   广告轮播图 =================================================================================== */
.Route_func_ad img, .Index_op_ad img {
    cursor: pointer
}
.Ad_content {
    position: absolute;
    top: 0;
    padding: 10px;
    width: 100%;
    /*height: 100%;*/
    background-image: url('../images/ad_mark1.png');
    background-repeat: repeat-x;
    display: flex;
}

.Ad_content h1 {
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.Ad_content h4 {
    position: relative;
    min-width: 36px;
    height: 36px;
    text-decoration: none;
    border-radius: 10px;
    background: #003b95;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

.Ad_content a {
    min-width: 36px;
    height: 36px;
    text-decoration: none;
    border-radius: 10px;
    background: #003b95;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

.Ad_content a:hover {
    background: #ffba0b;
}

.Ad_content h4:hover {
    background: #08c764;
}

.Ad_content h4 .icon-wechat1 {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
}

.Ad_content a .icon-dotdot {
    font-size: 22px;
    color: #fff;
}

.Ad_content a .icon-close1 {
    font-size: 20px;
    color: #fff;
}

.Ad_content h4:hover > em {
    display: block;
}

.Ad_content h4 em {
    display: none;
    position: absolute;
    width: 130px;
    height: 130px;
    top: 50px;
    left: -48px;
    padding: 5px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.Ad_content h4 em .cac_top1 {
    margin-left: -10px;
}

.Ad_content h4 em img {
    width: 120px!important;
    height: 120px!important;
}

.Ad_content div {
    margin-left: 6px;
    flex-grow: 2;
    display: flex;
    height: 36px;
    flex-wrap: wrap;
}

.Ad_content h5 {
    max-width: 190px;
    display: inline-block;
    margin-right: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.Union_Agency_basic b {
    border-radius: 2px;
    height: 16px;
    padding: 0 5px;
    line-height: 18px;
    font-family: 'Magneto';
    font-size: 14px;
    color: #fff;
    background: linear-gradient(90deg, #566a93, #333d56);
}

.Union_Agency_advanced b {
    border-radius: 2px;
    height: 16px;
    padding: 0 5px;
    line-height: 18px;
    font-family: 'Magneto';
    font-size: 14px;
    color: #fff;
    background: linear-gradient(90deg, #8d5b45, #49281f);
}

.Union_Agency_prime b {
    border-radius: 2px;
    height: 16px;
    padding: 0 5px;
    line-height: 18px;
    font-family: 'Magneto';
    font-size: 14px;
    color: #fff;
    background: linear-gradient(90deg, #d8a868, #6b4a28);
}

.Ad_content h6 {
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    line-height: 18px;
    width: 100%;
}

.Ad_content img {
    width: 36px!important;
    height: 36px!important;
}

.Route_ad_tab_position {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 56px;
    left: 12px;
    display: flex;
}

.Route_ad_tab_position li {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-right: 8px;
    background: rgba(255,255,255,.5);
    transition: all .3s;
    cursor: pointer;
}

.Route_ad_tab_position li:hover {
    width: 48px!important;
    background: rgba(255,255,255,1)!important;
}

.Ad_content_tab_on {
    width: 48px!important;
    background: rgba(255,255,255,1)!important;
}

.Route_func_ad {
    width: 784px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.Shipping-index-right-slider-banner{
    height: 640px;
}
.Route_func_ad .Route-func-slider-banner{
    height: 320px;
}

.Route_func_ad img {
    width: 784px;
    height: 320px;
}

.Route_ad_position {
    position: relative!important;
    top: -324px;
}
.Shipping-index-right-position{
    position: relative!important;
    top: -605px;
}
.Route_ad_tab_position_important {
    top: unset!important;
    bottom: 10px!important;
    left: unset!important;
    right: 4px!important;
}

.Index_op_ad {
    width: 440px;
    height: 600px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: all .3s;
    z-index: 599;
}

.Index_op_ad img {
    width: 440px;
    height: 600px;
}

.SA_ad_position {
    position: absolute;
    top: 180px;
    right: 10px;
}

#recharge-pop,#user-info-pop{
    display: none;
}

.Iframe_pod {
    margin-top: -16px;
    margin-left: -312px;
}

/*  颜色及动效=============================================================================================== */

.red {
    color: #ff6800!important;
}

.green {
    color: #008234!important;
}

@keyframes i-shake {
    0% {
      transform: scale(1);
    }
    50% {
        transform: scale(1.2);
      }
    100% {
        transform: scale(1);
    }
}

@keyframes i-round {
    0% {
      transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
      }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ad_a_tag_block{
    display: block;
}