body {
    margin: 0;
    padding: 0;
    font-family: pingfang SC, 微软雅黑, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif;
    font-size: 14px;
    color: #333;
    min-width: 1366px;
}

.full-width {
    width: 100%;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.font-bold {
    font-weight: 600;
}

.z {
    float: left;
}

.y {
    float: right;
}

/**
* ================================================ 开始 input原生样式
*/
input,
textarea,
input::placeholder,
textarea::placeholder {
    font-family: inherit;
    color: #333;
}

input::placeholder,
textarea::placeholder {
    color: #c0c4cc;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0 6px 2px 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
}

input[type="checkbox"]:checked {
    background: #ffc300;
    border: 1px solid #ffc300;
}

input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    position: relative;
    width: 4px;
    height: 8px;
    left: 5px;
    top: 2px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    background: none;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0 2px 2px 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 50%;
    position: relative;
}

input[type="radio"]:checked {
    background: #fff;
    border: 1px solid #ffc300;
}

input[type="radio"]:checked::before {
    content: "";
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #ffc300;
}

/**
* ================================================ 结束 input原生样式
*/

/**
* ================================================ 开始 flex布局
*/
.flex {
    display: flex;
}

.flex-g {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.flex-g.center {
    justify-content: center;
    justify-items: center;
}

.flex-g.between {
    justify-content: space-between;
}

.flex-g.around {
    justify-content: space-around;
}

.flex-g.start {
    align-items: flex-start;
}

.flex-g.end {
    justify-content: flex-end;
}

.flex-stretch-g {
    width: 0 !important;
    flex-grow: 1;
}

/**
* ================================================ 结束 flex布局
*/

/**
* ================================================ 开始 按钮
*/
.btn-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    padding: 8px 12px;
    min-width: 82px;
    line-height: 18px;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.btn-g.big{
    padding: 12px 32px;
}

.btn-g:hover {
    border-color: #FFA600;
    color: #FFA600;
}

.btn-g + .btn-g {
    margin-left: 12px;
}

.btn-g.warning {
    border-color: #FFDA23;
    background: linear-gradient(180deg, #FFDA23 0%, #FFC400 100%);
    color: #333;
}

.btn-g.grey {
    border-color: #999999;
    background: #999999;
    color: #fff;
    cursor: no-drop;
}

.btn-g.error {
    border-color: #e53535;
    background: #e53535;
    color: #fff;
}

.btn-g.white {
    border-color: #fff;
    background: #fff;
    color: #333;
}

.btn-g.white.plain {
    border-color: #fff;
    background: transparent;
    color: #333;
}

.btn-g.disabled {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: none;
}

/**
* ================================================ 结束 按钮
*/

/**
* ================================================ 开始 颜色
*/
.color-333 {
    color: #333 !important;
}

.color-666 {
    color: #666 !important;
}

.color-999 {
    color: #999 !important;
}

.color-blue {
    color: #409eff !important;
}

.color-success {
    color: #67c23a !important;
}

.color-warning {
    color: #FFA600 !important;
}

.color-error {
    color: #f24242 !important;
}

.color-disabled {
    color: #a0cfff !important;
}

/**
* ================================================ 结束 颜色
*/

/**
* ================================================ 开始 外边距
*/

.mt-4 {
    margin-top: 4px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px;
}

.ml-4 {
    margin-left: 4px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-12 {
    margin-left: 12px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-24 {
    margin-left: 24px;
}

.mr-4 {
    margin-right: 4px;
}

.mr-8 {
    margin-right: 8px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-16 {
    margin-right: 16px;
}

.mr-24 {
    margin-right: 24px;
}

/**
* ================================================ 结束 外边距
*/

/**
* ================================================ 开始 内边距
*/

.pt-4 {
    padding-top: 4px !important;
}

.pt-8 {
    padding-top: 8px;
}

.pt-12 {
    padding-top: 12px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-24 {
    padding-top: 24px;
}

.pb-4 {
    padding-bottom: 4px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pl-4 {
    padding-left: 4px;
}

.pl-8 {
    padding-left: 8px;
}

.pl-12 {
    padding-left: 12px;
}

.pl-16 {
    padding-left: 16px;
}

.pl-24 {
    padding-left: 24px;
}

.pr-4 {
    padding-right: 4px;
}

.pr-8 {
    padding-right: 8px;
}

.pr-12 {
    padding-right: 12px;
}

.pr-16 {
    padding-right: 16px;
}

.pr-24 {
    padding-right: 24px;
}

/**
* ================================================ 结束 内边距
*/

/**
* ================================================ 开始 字体大小
*/
.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-28 {
    font-size: 28px;
}

.font-32 {
    font-size: 32px;
}

/**
* ================================================ 结束 字体大小
*/


/**
* ================================================ 开始 表格
*/

.table-g {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    background: #fff;
}

.table-g th {
    background: #ffe884;
    color: #333;
    font-weight: normal;
    text-align: left;
    padding: 16px 6px 16px 10px;
    border-style: solid;
    border-color: #ffe884;
    border-width: 0;
}

.table-g th:first-child {
    border-left-width: 1px;
}

.table-g th:last-child {
    border-right-width: 1px;
}

.table-g td {
    padding: 12px 6px 12px 10px;
    border-style: solid;
    border-color: #eee;
    border-width: 0 0 1px 0;
}

.table-g td:first-child {
    border-left-width: 1px;
}

.table-g td:last-child {
    border-right-width: 1px;
}

.table-g tbody tr:nth-of-type(even) {
    background: #fafbfc;
}

/**
* ================================================ 结束 表格
*/

/**
* ================================================ 开始 页面模块
*/

.module-g {
    padding: 60px 0;
}

.dark-bg {
    background: #fafbfc;
}

.module-title-g {
    font-size: 32px;
    color: #333;
    display: block;
    text-align: center;
}

.module-desc-g {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 28px;
    padding-top: 16px;
}

.box-g {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    position: relative;
    line-height: 1.6em;
}

/**
* ================================================ 结束 页面模块
*/

/**
* ================================================ 开始 tag标签
*/
.tag {
    border: 1px solid #ddd;
    color: #333;
    border-radius: 3px;
    padding: 0 4px;
    display: inline-flex;
    line-height: 18px;
    font-size: 12px;
    font-weight: normal;
    min-width: 16px;
    justify-content: center;
}

.tag.tag-error {
    border: 1px solid #ED4242;
    color: #ED4242 !important;
}

.tag.tag-success {
    border: 1px solid #67c23a;
    color: #67c23a !important;
}

.tag.tag-warning {
    border: 1px solid #E6A550;
    color: #E6A550 !important;
}

.tag.tag-blue {
    border: 1px solid #2468F2;
    color: #2468F2 !important;
}


.tag.tag-info {
    border: 1px solid #666;
    color: #666 !important;
}

.tag.tag-disabled {
    border: 1px solid #999;
    color: #999 !important;
}

.tag.tag-chunk {
    background: #fff;
}

.tag.tag-chunk.tag-error {
    background: #ED4242;
    color: #fff !important;
}

.tag.tag-chunk.tag-success {
    background: #67c23a;
    color: #fff !important;
}

.tag.tag-chunk.tag-success.tag-min {
    padding: 2px 6px 2px 3px;
    background: #2fcc79;
    border-radius: 14px;
    border: none;
}

.tag.tag-chunk.tag-warning {
    background: #e6b721;
    color: #fff !important;
}

.tag.tag-chunk.tag-blue {
    background: #2468F2;
    color: #fff !important;
}

.tag.tag-chunk.tag-info {
    background: #666;
    color: #fff !important;
}

.tag.tag-chunk.tag-disabled {
    background: #999;
    color: #fff !important;
}

.tag-1{
    border-radius: 3px;
    padding: 8px 24px;
    line-height: 40px;
    background: #FFF3F0;
    color: #FF5733;
}

.tag-2{
    border-radius: 3px;
    padding: 8px 24px;
    line-height: 40px;
    background: #F3FFED;
    color: #5FB333;
}

.tag-3{
    border-radius: 3px;
    padding: 8px 24px;
    line-height: 40px;
    background: #EDF3FF;
    color: #3773F5;
}

.tag-4{
    border-radius: 3px;
    padding: 8px 24px;
    line-height: 40px;
    background: #FFFAF0;
    color: #FFA600;
}

/**
* ================================================ 结束 tag标签
*/

/**
* ================================================ 开始 head
*/
.head_box {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    z-index: 999;
    /*background: rgba(0, 0, 0, 0.1);*/
    background: #fff;
}

.head {
    width: 100%;
    height: 60px;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.head:hover, .head.headerBg2 {
    background: #fff;
}

.header:hover .menuList > ul > li > a, .header.headerBg2 .menuList > ul > li > a {
    color: #333;
}

.head a.logo {
    background: url("../img/index/logo2.png") no-repeat center;
    background-size: 100%;
    width: 122px;
    height: 60px;
    margin: 0 30px 0 20px;
    float: left;
}

.head:hover a.logo, .head.headerBg2 a.logo {
    background: url("../img/index/logo2.png") no-repeat center;
    background-size: 100%;
}

.head_nav {
    display: flex;
}

.head_nav_list {
    display: flex;
}

.head_nav_item:hover .head_nav_dropdown {
    display: block;
}

.head_nav_item > a {
    line-height: 60px;
    font-size: 14px;
    padding: 0 20px;
    color: #333;
    position: relative;
}

.head_nav_item.on > a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #FFC300;
}

.head_nav_item > a > i {
    display: none;
    font-size: 16px;
    transition: 0.2s all;
    position: absolute;
    bottom: 0;
    left: 38%;
    line-height: 14px;
    font-weight: bold;
}

.head_nav_item > a:hover {
    color: #FFA600;
}

.head_nav_item > a:hover > i {
    display: block;
}

.head_nav_dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: #fff;
    text-align: left;
    box-shadow: 0px 0px 8px 0px rgba(0, 63, 186, 0.12);
}

.head_nav_dropdown:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #fff;
}

.head_nav_dropdown .w1200 {
    position: relative;
    z-index: 1;
    background: #fff;
}

.head_nav_dropdown_side {
    width: 220px;
    background: url("../img/index/index31.png") no-repeat right bottom;
    padding-bottom: 100px;
}

.head_nav_dropdown_side h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    padding: 28px 0 16px;
}

.head_nav_dropdown_side p {
    font-size: 14px;
    color: #666;
    width: 190px;
    line-height: 24px;
}

.head_nav_dropdown_cont {
    width: 980px;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.head_nav_dropdown_item {
    width: 256px;
    height: 78px;
    border-radius: 8px;
    background: #fff;
    line-height: 1.6em;
    padding: 16px;
    color: #999;
    font-size: 14px;
    margin-left: 24px;
    box-sizing: border-box;
}

.head_nav_dropdown_img > .head_nav_dropdown_item {
    width: 315px;
    height: 100%;
}

.head_nav_dropdown_item.on, .head_nav_dropdown_item:hover {
    background: #FFFDF5;
}

.head_nav_dropdown_item.on, .head_nav_dropdown_item:hover p:nth-child(1) {
    color: #FFA600;
}

.head_nav_dropdown_item p:nth-child(1) {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding-bottom: 4px;
}

.head_nav_dropdown_item h5 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 4px;
}

.head_nav_dropdown_item > a {
    display: block;
    color: #333;
    line-height: 32px;
}

.head_nav_dropdown_goods {
    border-radius: 8px;
    line-height: 32px;
    padding: 0 16px 16px;
    margin-left: 24px;
}

.head_nav_dropdown_goods > h5 {
    font-size: 16px;
    color: #333;
    padding-bottom: 4px;
    font-weight: bold;
}

.head_nav_dropdown_goods > a {
    display: block;
    font-size: 14px;
    color: #333;
}

.head_nav_dropdown_goods > a:hover {
    color: #FFA600;
}

.head_nav_dropdown_goods > a .tag {
    position: relative;
    margin-left: 8px;
    top: -1px;
}

.head_nav_dropdown_goods h5 .iconjiantou{
    transform: rotate(135deg);
    display: inline-block;
    margin-left: 4px;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: -1px;
}

.head_nav_dropdown_goods h5 a:hover{
    color: #FFA600;
}

.head_nav_dropdown_goods h5 a:hover .iconjiantou{
    transform: rotate(180deg);
    color: #FFA600;
}

.head_right {
    display: flex;
}

.head_right_item {
    position: relative;
}

.head_right_vip > a {
    background: url(../img/index/index32.png) no-repeat center;
    cursor: pointer;
    width: 100px;
    height: 60px;
    position: relative;
}

.head_right_vip:hover .head_right_vip_dropdown {
    display: block;
}

.head_right_vip_dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    width: 450px;
    background: url(../img/index/index34.png) no-repeat top right;
    box-shadow: 0px 0px 8px 0px rgba(0, 63, 186, 0.12);
    padding: 20px;
    border-radius: 8px;
    line-height: 24px;
    font-size: 14px;
    box-sizing: border-box;
}

.head_right_vip_dropdown .btn-g {
    padding: 11px 65px;
    box-sizing: border-box;
}

.head_right_vip_item {
    margin: 0 auto 10px;
    width: 410px;
    height: 68px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 20px 0 68px;
    position: relative;
    box-sizing: border-box;
}

.head_right_vip_item i {
    font-size: 36px;
    position: absolute;
    left: 20px;
    top: 22px;
}

.head_right_vip_item a {
    width: 88px;
    height: 32px;
    line-height: 32px;
    border-radius: 102px;
    background: linear-gradient(270deg, #FFCF88 0%, #ffebc6 100%, #FFE4AD 100%);
    font-size: 14px;
    color: rgba(137, 69, 8, 1);
    text-align: center;
    float: right;
    position: relative;
    top: -15px;
}

.head_right_activity {
    background: url("../img/index/index33.png") no-repeat center;
    background-size: 100%;
    width: 104px;
    height: 28px;
    line-height: 25px;
    color: #fff !important;
    padding-left: 29px;
    font-size: 13px;
    position: relative;
    top: 1px;
}

.head_right_item .head_right_loginBtn {
    color: #333;
    font-size: 14px;
    margin: 0 24px 0 32px;
}

.head_right_item .head_right_regBtn {
    color: #333;
    width: 120px;
    height: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 218, 35, 1) 0%, rgba(255, 195, 0, 1) 100%);
}

.head-right {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin: 0 24px;
}

.head-right .iconsanjiao-l {
    padding-left: 4px;
}

.iconzhuanrenduijie {
    width: 35px;
    height: 35px;
    position: relative;
    top: 12px;
}

.vip_status {
    position: absolute;
    right: 26px;
    top: 3px;
    color: #f7b400;
    z-index: 3;
    cursor: pointer;
}

.head-right-item03 {
    line-height: 30px !important;
}

.head-right-item03 p:nth-child(1) {
    color: #999;
}

.head-right-item03 p:nth-child(2) {
    color: #2e3033;
}

.head-right-item03 p:nth-child(2) font {
    font-size: 20px;
}

.head-right-item04 {
    padding: 6px 16px !important;
    overflow: hidden;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.head-right-item04 p {
    line-height: 24px;
}

.head-right-item04 p span {
    font-size: 18px;
    color: #2e3033;
}

.head-right-item04:hover p span {
    color: #f7b400;
}

.vipLevelCont {
    line-height: 24px !important;
    padding: 2px 15px 6px !important;
}

.vipLevel {
    width: 42px;
    text-align: center;
    border-radius: 4px;
    line-height: 24px;
    font-size: 12px;
    margin-right: 8px;
}

.vipLevel1 {
    background: linear-gradient(90deg, rgba(39, 35, 33, 1) 0%, rgba(75, 69, 66, 1) 100%);
    color: #FFDCC1;
}

.vipLevel2 {
    background: linear-gradient(90deg, #F3BB6D 0%, #FCD49D 100%, #FCD49D 100%);
    color: #754E19;
}

.vipLevel3 {
    background: #dfdfdf;
    color: #999;
}

.head-right-item2 {
    border-top: 1px solid #EBEEF5;
    border-bottom: 1px solid #EBEEF5;
    margin-top: 6px;
    padding: 6px 0;
}

.head-right-item2 svg {
    width: 18px;
    height: 18px;
    position: relative;
    top: 3px;
}

.head-right .head-right-item {
    background: #ffffff;
    display: none;
    top: 56px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transform: translate(-50%, 0);
    left: 50%;
    position: absolute;
    text-align: left;
    box-sizing: border-box;
    width: 190px;
    z-index: 9;
    font-size: 14px;
    color: #59411e;
    padding: 6px 0px;
}

.head-right .head-right-item::after {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
    width: 0;
    height: 0;
    content: '';
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    line-height: 22px;
}

.head-right .head-right-item.head-right-user {
    width: 260px;
    padding-bottom: 0;
    left: auto;
    right: -10px;
    transform: translate(0);
}

.head-right .head-right-item.head-right-user::after {
    left: auto;
    right: 11px;
}

.head-right .head-right-item a {
    color: #5c6066;
    display: block;
    line-height: 42px;
    padding: 0 15px;
    font-size: 14px;
    margin: 0 !important;
}

.head-right .head-right-item a .autonym {
    border: 1px solid #d64747;
    color: #d64747;
    border-radius: 3px;
    font-size: 12px;
    padding: 1px 5px;
    margin-left: 5px;
}

.head-right .head-right-item a .autonym.on {
    border: 1px solid #67c23a;
    color: #67c23a;
}

.head-right .head-right-item a .autonym.audit {
    border: 1px solid #999;
    color: #999;
}

.head-right .head-right-item a span.y {
    color: #f7b400;
    font-size: 14px;
}

.head-right:hover .head-right-item {
    display: block;
}

.head-right .head-right-item a:hover {
    color: #f7b400;
}

.head-right .head-right-item a.loginOut {
    border-radius: 0 0 5px 5px;
    background: #f5f5fa;
}

/**
* ================================================ 结束 head
*/


/**
* ================================================ 开始 footer
*/
.footer {
    width: 100%;
    background-color: #191a1d;
    color: #BBBFC4;
}

.footerMin {
    position: fixed;
    bottom: 0;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.footer_top_item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #DEE0E3;
    padding: 50px 0 16px;
}

.footer_top_item a {
    font-size: 14px;
    color: #BBBFC4;
    line-height: 40px;
    display: block;
}

.footer a:hover {
    color: #f6b300;
}

.footer_top_item a.btn {
    font-size: 14px;
    color: #BBBFC4 !important;
    background: none;
    width: 146px;
    line-height: 36px;
    border-radius: 18px;
    border: 1px solid #4C5461 !important;
    display: flex;
    justify-content: center;
    position: relative;
}

.footer_top_item a.btn i {
    font-size: 18px;
    margin-right: 8px;
}

.contact_wechat_box {
    position: absolute;
    background: #fff;
    padding: 2px 10px 10px 10px;
    border-radius: 8px;
    top: 100%;
    left: 20px;
    z-index: 9;
    display: none;
}

.footer_top_item a.btn:hover .contact_wechat_box {
    display: block;
}

.footer_top_item img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

.footer_links {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #343B45;
    border-bottom: 1px solid #343B45;
    padding: 24px 0;
    margin: 32px 0 0px;
    line-height: 28px;
}

.footer_links_cont {
    width: 1112px;
    display: flex;
    flex-wrap: wrap;
}

.footer_links_cont a {
    color: #BBBFC4;
    position: relative;
    padding-right: 12px;
    margin-right: 12px;
}

.footer_links_cont a:before {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background: #BBBFC4;
    position: absolute;
    right: 0;
    top: 7px;
}

.footer_bottom {
    line-height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer_bottom a {
    color: #8F959E;
}

/**
* ================================================ 结束 footer
*/

/**
* ================================================ 开始 右侧飘窗
*/
.contact_right {
    position: fixed;
    flex-wrap: wrap;
    top: 50%;
    right: 0;
    width: 75px;
    z-index: 992;
    display: flex;
    justify-content: right;
    margin: 0px 16px 0 0;
}

.contact_right01 {
    position: relative;
    width: 75px;
    padding-left: 10px;
}

.contact_right01h {
    width: 65px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 0px 4px 0 rgb(0 0 0 / 20%);
    background: linear-gradient(120deg, #ffde7b, #ffcd3a);
    color: #333;
}

.contact_right01h p {
    line-height: 12px;
    padding-top: 2px;
}

.contact_right01h:hover {
    background: linear-gradient(120deg, #ffdb70, #f8c224);
}

.contact_right01h i {
    display: block;
    color: #333;
    width: 32px;
    height: 26px;
    font-size: 24px;
    margin: 0 auto;
    text-align: center;
}

.contact_right01a {
    display: none;
    position: absolute;
    right: 75px;
    bottom: 0;
    color: #333;
    font-size: 14px;
    width: 200px;
    background: #fff;
    text-align: left;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 6%);
    border: 1px solid #f0f1f2;
    border-radius: 4px;
    cursor: default;
}

.contact_right01:hover .contact_right01a, .contact_right03:hover .contact_right01a {
    display: block;
}

.contact_right01b {
    border-bottom: 1px solid #f0f1f1;
    display: flex;
    align-items: center;
    margin: 0px 14px;
    padding: 12px 0;
}

.contact_right01b:last-child {
    border-bottom: none;
}

.contact_right01c {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    margin-right: 4px;
    font-size: 20px !important;
}

.iconfenzhijiedian:before {
    position: relative;
    top: -2px;
}

.contact_right01d {
    line-height: 1.6em;
}

.contact_right01d b {
    display: block;
}

.contact_right01d a {
    display: flex;
    align-items: center;
    width: 170px;
    justify-content: space-between;
}

.contact_right01d a .iconsanjiao-l {
    position: absolute;
    right: 10px;
    font-size: 18px;
}

.contact_right01d a {
    color: #333;
}

.contact_right01d a:hover, .contact_right01d a:hover .contact_right01c {
    color: #FFA600;
}

.contact_right02 {
    position: relative;
    display: none;
    text-align: center;
    line-height: 54px;
    width: 65px;
    height: 56px;
    background: linear-gradient(120deg, #ffffff, #eef2fa);
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0px 4px 0 rgb(0 0 0 / 20%);
}

.contact_right02:hover {
    background: linear-gradient(120deg, #ffdb70, #f8c224);
}

.contact_right02 i {
    font-size: 36px;
}

.contact_wechat {
    background: url("../img/index/wechat01.png") no-repeat center;
    background-size: 100%;
    width: 90px;
    height: 90px;
    margin-top: 8px;
}

#kefu-dom {
    background: url("../img/index/index29.png") no-repeat center top;
    background-size: 100%;
    box-shadow: none;
    height: 78px;
    align-content: end;
}

#kefu-dom p {
    text-align: center;
    background: linear-gradient(120deg, #ffde7b, #ffcd3a);
    border-radius: 4px;
    line-height: 26px;
    width: 65px;
    position: relative;
}

/**
* ================================================ 结束 右侧飘窗
*/