﻿a {
    text-decoration: none;
}
.header {
	background-color: #FFFFFF;
	height: auto;
	width: 100%;
	font-size: 16px;
}
.fixed-consult-box {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 280px;
    background: linear-gradient(180deg, #ff5c1a 0%, #ffd6b2 100%);
    border-radius: 0 32px 0 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 16px 0 24px 0;
    text-align: center;
    font-family: "微软雅黑", Arial, sans-serif;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .fixed-consult-box.hidden {
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .fixed-consult-box .consult-header {
        font-size: 24px;
        color: #fff;
        font-weight: bold;
        margin-top: 16px;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .fixed-consult-box .highlight {
        color: #ffe600;
        font-size: 28px;
        font-weight: bold;
    }

    .fixed-consult-box .consult-desc {
        font-size: 14px;
        color: #fff;
        margin-bottom: 16px;
    }

        .fixed-consult-box .consult-desc .num {
            color: #ffe600;
            font-weight: bold;
            font-size: 16px;
        }

    .fixed-consult-box .consult-qr {
        background: #fff;
        border-radius: 18px;
        padding: 5px;
        margin: 0 auto 18px auto;
        width: 150px;
        box-shadow: 0 0 8px rgba(0,0,0,0.06);
    }

        .fixed-consult-box .consult-qr img {
            width: 150px;
            height: 150px;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
        }

    .fixed-consult-box .consult-footer {
        background: #ff6d2d;
        color: #fff;
        font-size: 14px;
        border-radius: 24px;
        padding: 10px 0;
        margin: 0 10px;
        margin-top: 8px;
        font-weight: bold;
        letter-spacing: 1px;
        animation: scaleUpDown 1s infinite;
        cursor: pointer;
    }

@keyframes scaleUpDown {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
/* 关闭按钮在浮窗右上角 */
.fixed-consult-close-btn {
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex; /* 关键属性 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    transform-origin: center; /* 确保旋转中心为元素中心 */
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

    .fixed-consult-close-btn:hover {
        transform: rotate(90deg);
    }

.fixed-consult-open-btn {
    position: fixed;
    left: 0;
    bottom: 60px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #ff5c1a;
    border-radius: 0 24px 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    border: 2px solid #ff5c1a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .fixed-consult-open-btn.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

.fixed-consult-open-container {
    position: fixed;
    left: 0;
    bottom: 60px;
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    pointer-events: none; /* 容器本身不响应事件，子元素可响应 */
}

.fixed-consult-open-btn {
    pointer-events: auto; /* 恢复按钮可点击 */
}

.fixed-consult-open-text {
    margin-top: 8px;
    white-space: nowrap;
    line-height: 1.2;
}

.fixed-consult-open-text {
    position: fixed;
    left: 0;
    bottom: 40px; /* 距离底部10px，可根据需要调整 */
    width: 48px;
    text-align: center;
    font-size: 15px;
    color: #ff5c1a;
    font-weight: bold;
    z-index: 10001;
    pointer-events: none; /* 避免遮挡按钮点击 */
}

.trial-popup-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-popup {
    display: flex;
    background: #fff;
    border-radius: 6px 6px 98px 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
    min-width: 720px;
    min-height: 400px;
}

.trial-popup-wrapper {
    position: relative;
    /* 保证子元素绝对定位基于 wrapper */
}

.trial-popup-close {
    position: absolute;
    right: -32px; /* 让按钮超出 trial-popup */
    top: -48px;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trial-popup-close:hover {
        background: rgba(255,255,255,0.15); /* 背景微亮 */
        box-shadow: 0 2px 8px rgba(0,0,0,0.18); /* 添加阴影 */
        transform: scale(1.08); /* 微微放大 */
        transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .trial-popup-close::before,
    .trial-popup-close::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }

    .trial-popup-close::before {
        transform: rotate(45deg);
    }

    .trial-popup-close::after {
        transform: rotate(-45deg);
    }

.trial-popup-left {
    width: 260px;
    background: #fff;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    justify-content: center; /* 新增：垂直居中 */
}

.trial-popup-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.trial-popup-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
    text-align: center;
}

.trial-popup-desc {
    position: relative;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

    .trial-popup-desc::before,
    .trial-popup-desc::after {
        content: '';
        position: absolute;
        left: 10%;
        right: 10%;
        height: 1px;
        width: 80%;
        background: linear-gradient(to right, rgba(250, 151, 3, 0), #fa9703 40%, #fa9703 60%, rgba(250, 151, 3, 0));
        pointer-events: none;
    }

    .trial-popup-desc::before {
        top: 0;
    }

    .trial-popup-desc::after {
        bottom: 0;
    }

.trial-popup-num {
    color: #fa9703;
    font-weight: bold;
}

.trial-popup-qr {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trial-popup-btns {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.trial-popup-btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #fa9703;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.trial-popup-btn-orange {
    color: #fff;
    background-image: url('/images/btn-bg.png');
    background-size: cover;
    /* 背景图铺满按钮 */
    background-repeat: no-repeat;
    /* 不重复 */
    background-position: center;
    /* 居中显示 */
}

.trial-popup-right {
    flex: 1;
    background: linear-gradient(120deg, #ffb347 0%, #ff6600 100%);
    padding: 48px 32px 10px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.trial-popup-right-wx-bg {
    background: #fff;
    border-radius: 0 0 32px 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.trial-popup-right.trial-popup-right-wx-bg {
    max-width: 500px;
    background: none !important;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

    .trial-popup-right.trial-popup-right-wx-bg .right-main-img {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
        margin: 0;
    }

        .trial-popup-right.trial-popup-right-wx-bg .right-main-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            margin: 0;
            border-radius: 0;
            background: none;
            box-shadow: none;
            padding: 0;
        }

.trial-popup-right-title {
    position: relative;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 500;
}

    .trial-popup-right-title::before {
        top: 0;
        height: 1px;
        /* 上边框粗 */
    }

    .trial-popup-right-title::after {
        bottom: 0;
        height: 1px;
        /* 下边框细 */
    }

    .trial-popup-right-title::before,
    .trial-popup-right-title::after {
        content: '';
        position: absolute;
        left: 10%;
        right: 10%;
        width: 80%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 40%, #fff 60%, rgba(255, 255, 255, 0));
        pointer-events: none;
    }

    .trial-popup-right-title::before {
        top: 0;
    }

    .trial-popup-right-title::after {
        bottom: 0;
    }

.trial-popup-right-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trial-popup-right-highlight {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 18px;
    text-shadow: 1px 2px 8px rgba(255, 255, 255, 0.18);
    margin-left: 45px;
}

#magnet-menu {
    position: fixed;
    right: 0;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top-left-radius: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #fff;
    /* 确保有背景色 */
}

    #magnet-menu .magnet-item:first-child {
        border-top-left-radius: 36px;
        padding-top: 18px;
    }

.magnet-item {
    background: transparent;
    /* 让父级背景色透出 */
    position: relative;
    width: 60px;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d4d4d4;
    background: #fff;
    transition: background 0.2s;
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px 10px;
}

    .magnet-item .magnet-label {
        font-size: 12px;
        color: #ff6600;
    }

.noboder {
    border-bottom: none;
}

.magnet-bg:hover .magnet-label {
    color: #ff6600 !important;
}

.magnet-item:not(.magnet-bg):hover {
    background: #ff6600 !important;
}

    .magnet-item:not(.magnet-bg):hover .magnet-label {
        color: #fff !important;
    }

.magnet-item:last-child {
    border-bottom: none;
}

.magnet-bg {
    background: #ff6600;
}

    .magnet-bg .magnet-label {
        color: #fff;
    }

.magnet-bg-hover {
    background: #fff !important;
    color: #ff6600 !important;
}

.magnet-icon {
    width: 36px;
    height: auto;
    transition: all 0.2s;
}

.magnet-pop {
    display: none;
    position: absolute;
    right: 90px;
    /* 距离右侧一定距离，可根据实际调整 */
    left: auto !important;
    /* 覆盖原有left */
    top: 90%;
    /* 往下偏移，可根据实际调整 */
    border-radius: 28px;
    /* 圆角 */
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    min-width: 120px;
    text-align: center;
    z-index: 10000;
}

    .magnet-pop::after {
        content: "";
        position: absolute;
        right: -12px;
        top: 30%;
        /* 箭头往上，可根据实际调整 */
        transform: translateY(-50%);
        border-width: 8px 0 8px 12px;
        border-style: solid;
        border-color: transparent transparent transparent #fff;
        filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.08));
    }

.magnet-qr img {
    width: 120px;
    height: 120px;
}

.magnet-phone-num {
    font-size: 18px;
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
}

.magnet-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    padding: 8px 10px;
}

    .magnet-top:hover {
        background: #ff6600;
    }

        .magnet-top:hover .magnet-label {
            color: #fff;
        }

    .magnet-top .magnet-label {
        color: #ff6600;
        font-size: 12px;
        margin-top: 2px;
        text-align: center;
    } 
    .area

{
    width: 1200px;
    margin: 0 auto;
}

.avocado {
    padding: 10px 0px;
    display: flex;
}

    .avocado .avoimg {
        width: 20%;
    }

        .avocado .avoimg .avoimgs {
            width: 165px;
            height: auto;
			margin-left: 10px;
        }

    .avocado .avozonj {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style-type: none;
        flex-wrap: nowrap;
    }

        .avocado .avozonj li a {
            text-decoration: none;
            color: black;
            font-weight: 400;
        }

            .avocado .avozonj li a.active {
                color: #339B96;
                border-bottom: 2px solid #339B96;
                font-weight: 500;
            }

        .avocado .avozonj li {
            padding: 0px 20px;
            font-size: 16px;
            white-space: nowrap;
        }

            .avocado .avozonj li:hover {
                color: #339B96 !important;
            }

            .avocado .avozonj li a:hover {
                color: #339B96 !important;
            }

    .avocado .avoring {
        width: 50%;
        display: flex;
        justify-content: end;
        align-items: center;
        color: #999;
    }

        .avocado .avoring .avoring-left {
            display: flex;
            align-items: center;
            padding-right: 20px;
			background-image: url("../img/PC_right_icon.png");
			background-repeat: no-repeat;
			background-size: 151px 24px;
			width: 151px;
			height: 24px;
        }

        .avocado .avoring .ringimg {
            width: 23px;
            height: 23px;
            padding-right: 10px;
        }

.foter {
    background: #021D18;
    padding: 50px;
	width: 100%;
	height: auto;
}

.xflex {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

    .xflex .center {
        width: 40%;
        display: flex;
        justify-content: space-between;
        color: #4A5D5C;
    }

        .xflex .center ul {
            margin: 0;
            list-style: none;
        }
		.xflex .center ul li {
            margin: 0;
            display: block;
			width: 100%;
        }

            .xflex .center ul li:first-child {
                padding: 0;
            }

            .xflex .center ul li {
                padding: 5px 0px;
                font-size: 13px;
                cursor: pointer;
            }

                .xflex .center ul li a {
                    color: #ffffff;
                }

                    .xflex .center ul li a:hover {
                        color: #07aba2;
                    }

                .xflex .center ul li span {
                    font-size: 17px;
                    color: #05edc5;
                }

    .xflex .right .r-title {
        font-size: 12px;
        color: #f2f2f2;
    }

    .xflex .right .r-desc {
        font-size: 18px;
        color: white;
        padding: 5px 0px;
    }

    .xflex .right .r-time {
        padding: 5px 0px;
        font-size: 15px;
        color: #ebf5f4;
    }

    .xflex .left .l-logo {
        padding-bottom: 10px;
    }

    .xflex .left .l-xflex {
        display: flex;
    }

        .xflex .left .l-xflex div:first-child {
            padding-left: 0;
        }

        .xflex .left .l-xflex div {
            /*padding: 5px;*/
        }

    .xflex .left .l-desc {
        color: white;
        font-size: 12px;
    }

.public {
    padding: 0px 5px;
}

.copyright {
    color: #dbe5e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding-top: 40px;
}

.botxt {
    color: #dbe5e4;
    font-size: 14px;
    padding-top: 10px;
}

.copyright .left {
    width: 60%;
}

.copyright .right .rig {
    display: flex;
    align-items: center;
}

.record {
    padding-right: 20px;
}

.copyright .left .lef {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright a {
    color: #ffffff;
}

.copyright .right .rig .r-r-rigs {
    display: flex;
    align-items: center;
}
.logo-bg {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    width: 80px;
    height: 80px;
    transition: box-shadow 0.2s;
}

.logo-qr-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
}

    .logo-qr-wrap:hover .logo-bg {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

.logo-qr-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    max-width: 60px;
    height: auto;
    cursor: pointer;
    object-fit: contain;
    display: block;
    margin: 0;
}

.logo-qr-pop {
    display: none;
    position: absolute;
    bottom: 110%;
    /* 显示在logo上方 */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 10px;
    z-index: 10;
    text-align: center;
}

.logo-qr-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: block;
}

.logo-qr-arrow {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-qr-wrap:hover .logo-qr-pop {
    display: block;
}

@media screen and (max-width: 768px) {
    #magnet-menu {
        display:none;
    }
	   .area {
			width: 100%;
			margin: 0 auto;
		}
	.xflex {
       width: 100%;
    }
	.fixed-consult-box {
		display:none;
	}
	 .avocado .avozonj {
		 display: none;
		 overflow: hidden;
    }
	 .xflex .center {
        display: none;
		 overflow: hidden;
    }
	 .xflex .right {
        display: none;
		 overflow: hidden;
    }
	 
	.avocado .avoimg {
        width: 50%;
    }

        .avocado .avoimg .avoimgs {
            width: 120px;
            height: auto;
        }

	.avocado .avoring {
        width: 50%;
    }
	.avocado .avoring .avoring-left {
			background-image: url("../img/APP_right_icon.png");
			background-repeat: repeat-y;
		background-position: right;
			background-size: 107px 26px;
			width: 107px;
			height: 26px;
			margin-top: -10px;
		margin-right: 10px;
        }
	
	/*底部二维码图标*/
	.foter {
    	width: 100%;
		display: block;
		height: auto;
		padding: 0;
}
	 .xflex .left {
        width: 100%;
		 margin-left: 6%;
    }
	.xflex .left .l-logo {
        padding-bottom: 10px;
    }

    .xflex .left .l-xflex {
        display: flex;
    }

        .xflex .left .l-xflex div:first-child {
            padding-left: 0;
        }

        .xflex .left .l-xflex div {
            /*padding: 5px;*/
        }

    .xflex .left .l-desc {
        color: white;
        font-size: 11px;
    }
	.copyright {
    	 display: none;
		 overflow: hidden;
}
	.botxt_span {
		width: 100%;
		height: auto;
		display: flex;
		margin: 10px auto;
		vertical-align: middle;
		justify-content: center;
		color: #FFFFFF;
	}
	.logo-qr-wrap {
   		 margin-right: 8px;
		margin-left: 8px;
}
	.botxt {
    padding-bottom: 10px;
}
.xflex .left .l-logo {
        padding-bottom: 10px;
		width: 100%;
		margin: 0 auto;
    }	
	.logo-bg {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    width: 60px;
    height: 60px;
    transition: box-shadow 0.2s;
}
	
	
	
}