.swiper-form-content {
    position: relative;
    min-width: 1200px;
}

.swiper-form-content .swiper-container .swiper-common-style {
    position: relative;
    width: 100%;
    height: 790px;
    /* 基于padding-top来设定高度 */
    overflow: hidden;

}
.swiper-form-content .swiper-container .swiper-common-style>img,
.swiper-form-content .swiper-container .swiper-common-style>a>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 居中图片 */
    max-width: none;
    /* 确保图片不会根据父容器调整大小 */
    max-height: 100%;
    /* 图片最大高度为容器的高度 */
    width: auto;
    /* 根据高度自动调整宽度以保持比例 */
    height: auto;
    /* 自动调整高度 */
}

.swiper-form-content .swiper-container .swiper-pagination {
    bottom: 38px;
}

.swiper-form-content .swiper-container .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background-color: rgba(187, 191, 196, .6);
    opacity: 1;
    border-radius: 2px;
}

.swiper-form-content .swiper-container .swiper-pagination-bullet-active {
    background-color: #fff;
    /* 激活状态下颜色 */
}

.swiper-form-content .swiper-container .swiper-common-style .swiper-title {
    position: absolute;
    width: 1200px;
    top: 197px;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-form-content .swiper-container .swiper-common-style .swiper-video-btn {
    position: absolute;
    bottom: 211px;
    left: 50%;
    transform: translateX(-248%);
    z-index: 10;
}

.swiper-form-content .swiper-container .swiper-common-style .swiper-video-btn img {
    margin: 0 auto;
}

.swiper-form-content .swiper-container .swiper-common-style .swiper-video-btn img:first-child {
    margin-bottom: 42px;
    cursor: pointer;
}

.swiper-form-content .home-form-content {
    position: absolute;
    z-index: 10;
    top: 185px;
    width: 1200px;
    height: 0;
    display: flex;
    justify-content: flex-end;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-form-content .home-form-content .home-form {
    padding: 24px;
    background: #fff;
    width: 342px;
    flex-shrink: 0;
    fill: radial-gradient(149.3% 161.29% at -4.54% -6.04%, rgba(255, 255, 255, 0.83) 0%, rgba(255, 255, 255, 0.92) 11.33%, #FFF 34.86%, rgba(255, 255, 255, 0.94) 60.6%, #FFF 79.63%, rgba(255, 255, 255, 0.74) 100%);
    stroke-width: 1px;
    stroke: #FFF;
    border-radius: 8px;
}

/*表单logo*/
.swiper-form-content .home-form-content img.form-logo {
    display: block;
    margin: 0 auto 25px;
    width: 100%;
    height: 112px;
}

/*用户登录*/
.swiper-form-content .home-form-content .user-login {
    height: 420px;
}

/*首页登录*/
.swiper-form-content .home-form-content form input:not([type="checkbox"]) {
    flex: 1;
    height: 14px;
    border: none;
    outline: none;
}

input:-webkit-autofill {
    -webkit-text-fill-color: inherit !important;
    /* 改变字体颜色 */
    -webkit-box-shadow: 0 0 0px 1000px transform inset;
    /* 使用阴影覆盖背景色 */
    transition: background-color 5000s ease-in-out 0s;
    /* 防止背景色回闪 */
}

/* 对于非WebKit浏览器，如Firefox，可以尝试以下代码 */
input:-moz-autofill {
    filter: none !important;
}

.swiper-form-content .home-form-content form input[type="text"],
.swiper-form-content .home-form-content form input[type="password"] {
    background: none !important;
}

.swiper-form-content .home-form-content form input[type="text"]:focus,
.swiper-form-content .home-form-content form input[type="password"]:focus {
    background-color: transparent !important;
}

.swiper-form-content .home-form-content form button.form-submit-btn {
    border: none;
    outline: none;
    cursor: pointer;
}

.swiper-form-content .home-form-content form .form-submit-btn:not(.get-phone-code-btn) {
    width: 100%;
    height: 48px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    line-height: 48px;
    border-radius: 4px;
    letter-spacing: 4px;
    cursor: pointer;
    background: var(--light-Primary--, linear-gradient(275deg, #00943B 1.23%, #059D40 11.52%, #10B44C 100%));
}

.swiper-form-content .home-form-content form .form-submit-btn:hover {
    background: #01893C;
}

.swiper-form-content .home-form-content form .form-submit-btn:active {
    background: #017F37;
}

.swiper-form-content .home-form-content form .form-submit-btn.disabled {
    cursor: no-drop;
    opacity: 0.3;
    background: var(--light-Primary3-active, #017F37);

}

.swiper-form-content .home-form-content form .form-item-box {
    position: relative;
}

.swiper-form-content .home-form-content form .form-item {
    position: relative;
    display: flex;
    margin-bottom: 16px;
    height: 48px;
    padding: 0px 12px;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--light--, rgba(77, 97, 106, 0.32));
    background: #fff;
}

.swiper-form-content .home-form-content form .form-item:hover {
    background: rgba(52, 219, 94, 0.04);
}

.swiper-form-content .home-form-content form .form-item label {
    margin-right: 12px;
    width: 16px;
    height: 16px;
}

.swiper-form-content .home-form-content form .form-item label.form-phone {
    background: url('../images/icon/icon-user.svg') no-repeat;
}

.swiper-form-content .home-form-content form .form-item label.form-password {
    background: url('../images/icon/icon-password.svg') no-repeat;
}

.swiper-form-content .home-form-content form .form-item i.check-input-type {
    position: absolute;
    background-image: url('../images/icon/icon-close-eye.svg');
    background-repeat: no-repeat;
    background-color: #fff;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.swiper-form-content .home-form-content form .form-item:hover i.check-input-type {
    background-color: #f2fcf3;
}

.swiper-form-content .home-form-content form .form-item i.check-input-type.open {
    background-image: url('../images/icon/icon-open-eye.svg');
}

.swiper-form-content .home-form-content form .form-item.err {
    border-color: #ff4d4f;
}

.swiper-form-content .home-form-content .err-tip {
    position: absolute;
    color: #ff4d4f;
    font-size: 12px;
    bottom: -16px;
    left: 0;
}

.swiper-form-content .home-form-content form .form-submit-login {
    margin-bottom: 16px;
}

/*用户重置*/
.swiper-form-content .home-form-content .user-reset {
    height: 530px;
}

.swiper-form-content .home-form-content #home-form-resetPass .tip {
    padding-left: 20px;
    background: url('../images/icon/icon-reset.svg') no-repeat left center / 16px;
    font-size: 16px;
    color: #01ad4b;
    font-weight: 700;
    margin: 17px 0 4px;
}

.swiper-form-content .home-form-content #home-form-resetPass .form-reset-footer {
    text-align: center;
    padding: 16px 0 35px;
    font-size: 14px;
    color: #0a111499;
}

.swiper-form-content .home-form-content #home-form-resetPass .back-login {
    color: #01893c;
    cursor: pointer;
}

/*免费试用*/
.home-form-content .home-free-trial {
    height: 420px;
    display: none;
}

.home-form-content .home-free-trial .back-login {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #01AD4B;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    cursor: pointer;
}

.home-form-content .home-free-trial .back-login img {
    margin-right: 2px;
}

.home-form-content .home-free-trial img.free-trial-QrCode-img {
    display: block;
    width: 254px;
    margin: 34px auto 16px;
}

.home-form-content .home-free-trial p {
    text-align: center;
    color: rgba(10, 17, 20, 0.85);
    font-size: 14px;
    letter-spacing: 1.68px;
}

/*密码重置*/
form#home-form-resetPass {
    display: none;
}

form#home-form-resetPass .form-item {
    height: 40px !important;
}

form#home-form-resetPass .form-get-phone-code {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form#home-form-resetPass .form-get-phone-code .form-item {
    margin-bottom: 0;
}

form#home-form-resetPass .get-phone-code-btn {
    font-size: 16px;
    height: 38px;
    width: 110px;
    background: #01ad4b;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
}

form#home-form-resetPass .get-phone-code-btn:hover {
    background: #01893c;
}

/*登录 底部 操作*/
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-bottom .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--light-1, rgba(10, 17, 20, 0.60));
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.form-bottom .left p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 4px;
}

.form-bottom .left a {
    color: var(--light-Primary5-, #4A8D67);
    font-family: "Microsoft YaHei UI";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.form-bottom .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--light-1, rgba(10, 17, 20, 0.60));
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    cursor: pointer;
}

.form-bottom .right p:first-child {
    margin-right: 8px;
}

.form-bottom .right p:hover {
    color: #01ad4b;
}

input[type="checkbox"] {
    width: 14px;
    height: 14px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 14px;
    position: relative;
    border-radius: 4px;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: -0.5px;
    left: -1px;
    background: #fff;
    width: 14px;
    height: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

input[type="checkbox"]:checked::before {
    content: "✔";
    background-color: #01ad4b;
    position: absolute;
    top: -0.5px;
    left: -1px;
    width: 100%;
    border: 1px solid #01ad4b;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}

/*视频弹窗*/
.header-video-show-popUp {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #000;
    padding: 0;
}

.header-video-show-popUp .popu-video {
    position: absolute;
    width: 80%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-video-show-popUp .popu-video video {
    width: 100%;
    height: auto;
}

.header-video-show-popUp button.close-video-popup {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 2.2%;
    top: 2.2%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFF;
}

@media screen and (max-width: 1200px) {
    .swiper-form-content .home-form-content {
        left: 0;
        transform: translateX(0);
    }
}

/*趋势菜单*/
.trend-module-content {
    min-width: 1200px;
    padding-bottom: 240px;
    width: 100%;
    background: url('../images/home/trend-module-bg.png') no-repeat #fff;
    background-size: 100% 100%;
}

.trend-module-main {
    padding-top: 80px;
    width: 1200px;
    margin: 0 auto;
}
.trend-module-main>.trend-module-title p{
    text-align: center;
}
.trend-module-main>.trend-module-title p:first-child {
    margin-bottom: 36px;
    color: #00A659;
    text-align: center;
    font-family: "Microsoft YaHei UI";
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.trend-module-main>.trend-module-title p:last-child {
    color: #00A659;
    font-family: "Microsoft YaHei UI";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 38.4px;
}
.trend-module-main>.trend-module-title p:last-child span.tip{
    color: #1B2337;
}
/*趋势新题 - 省份轮播*/
.trend-module-main .trend-menu-swiper-content {
    position: relative;
    padding: 44px 0 56px;
    width: 856px;
    margin: 0 auto;
}

.trend-module-main .trend-menu-swiper-main {
    padding: 4px 55px;
    border-radius: 66px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    background: rgba(247, 248, 250, 0.40);
    box-shadow: 0px 8px 16px 0px rgba(10, 17, 20, 0.04);
}

.trend-module-main .trend-menu-swiper .swiper-slide {
    color: rgba(10, 17, 20, 0.85);
    font-family: "Microsoft YaHei UI";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
    height: 52px;
    text-align: center;
    cursor: pointer;
}

.trend-module-main .trend-menu-swiper .swiper-slide:hover {
    background: #fff;
    border-radius: 99px;
}

.trend-module-main .trend-menu-swiper .swiper-slide.active {
    border-radius: 99px;
    background: #00A659;
    color: #fff
}

/*swiper左右切换按钮*/
.trend-module-main .trend-menu-swiper-main .swiper-button-next:after,
.trend-module-main .trend-menu-swiper-main .swiper-button-prev:after {
    content: none;
}

.trend-module-main .trend-menu-swiper-main .swiper-button-next,
.trend-module-main .trend-menu-swiper-main .swiper-button-prev {
    top: 53.5%;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.trend-module-main .trend-menu-swiper-main .swiper-button-next {
    right: 22px;
    background-image: url('../images/icon/swiper-jt-right.svg');
}

.trend-module-main .trend-menu-swiper-main .swiper-button-prev {
    left: 22px;
    background-image: url('../images/icon/swiper-jt-left.svg');
}

/*省份-趋势新题-菜单*/
.trend-menu-list-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 32px;
    display: none;
}

.trend-menu-list-box.active {
    display: flex;
}

.trend-menu-list-box .trend-menu-list-item {
    width: 392px;
    margin-right: 12px;
    margin-bottom: 16px;
    height: 80px;
    padding: 18px 20px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #FFF;
    cursor: pointer;
    box-shadow: 1px 3px 32px 0px rgba(0, 0, 0, 0.08), 6px 16px 250px 0px rgba(50, 198, 72, 0.12);
    transition: all 0.2s ease;
}

.trend-menu-list-box .trend-menu-list-item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: var(--light-, rgba(10, 17, 20, 0.85));

}

.trend-menu-list-box .trend-menu-list-item:nth-child(3n+3) {
    margin-right: 0;
}

.trend-menu-list-box .trend-menu-list-item p.trend-menu-item-tip {
    width: 18px;
    height: 18px;
    background-image: url('../images/green-star.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.trend-menu-list-box .trend-menu-list-item .title {
    font-family: "Source Han Sans CN";
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.trend-menu-list-box .trend-menu-list-item .title a {
    color: var(--light-, rgba(10, 17, 20, 0.85));
}

.trend-menu-list-box .trend-menu-list-item img:last-child {
    position: relative;
    top: 2px;
    width: 52px;
    height: auto;
}

.trend-menu-list-box .trend-menu-list-item:hover {
    background: #00A659;
    color: #fff;
}

.trend-menu-list-box .trend-menu-list-item:hover a {
    color: #fff;
}

.trend-menu-list-box .trend-menu-list-item:hover p.trend-menu-item-tip {
    background-image: url('../images/white-star.svg');
}

/*咨询列表*/
.home-consultation-list-content {
    padding: 45px 0 33px;
    width: 100%;
    min-width: 1200px;
    background: #F6F6F6;
}

.home-consultation-list-content .consultation-content-title {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-consultation-list-content .consultation-content-title h1 {
    color: rgba(10, 17, 20, 0.75);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px;
}

.home-consultation-list-content .consultation-content-title a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(10, 17, 20, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.home-consultation-list-content .consultation-content-title a i {
    width: 12px;
    height: 12px;
    background-image: url('../images/icon/icon-jt-right.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.home-consultation-list-content .consultation-content-title a:hover {
    color: #01AD4B;
}

.home-consultation-list-content .consultation-content-title a:hover i {
    background-image: url('../images/icon/icon-jt-right-green.svg');
}

.home-consultation-list-content .consultation-list {
    width: 1200px;
    margin: 0 auto;
}

.home-consultation-list-content .consultation-list .consultation-list-item {
    display: none;
}

.home-consultation-list-content .consultation-list .consultation-list-item:nth-child(1),
.home-consultation-list-content .consultation-list .consultation-list-item:nth-child(2) {
    display: block;
}

.home-consultation-list-content .consultation-list .consultation-list-item:nth-child(2) {
    border-bottom: none;
}

.home-consultation-list-content .consultation-list .consultation-list-item.showBorder {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.20) !important;
}

/*加载更多*/
.load-more {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more i {
    margin-right: 8px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('../images/icon/icon-refresh.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.load-more span {
    color: rgba(10, 17, 20, 0.60);
    font-family: "Microsoft YaHei UI";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.load-more:hover i {
    background-image: url('../images/icon/icon-refresh-green.svg');
}

.load-more:hover span {
    color: #01AD4B;
}

/*轮播图 大屏*/
@media screen and (min-width: 1920px) {
    .swiper-form-content .swiper-container .swiper-common-style>img,
    .swiper-form-content .swiper-container .swiper-common-style>a>img {
        top: 59%;
        left: 43%;
        max-width: none;
        max-height: none;
        width: 117%;
    }

    .swiper-form-content .swiper-container .swiper-common-style .swiper-video-btn img:first-child {
        margin-bottom: 24px;
    }

    .swiper-form-content .swiper-container .swiper-common-style .swiper-video-btn {
        bottom: 196px;
    }
}