:root {
    --header-height: 80px; /* 优化后导航高度，更紧凑 */
}

* {
    margin: 0;
    padding: 0;
}
body{
    background-color: #f3f5f7;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
a:hover{
    color: #007BFF;
}
/* 头部开始 - 响应式优化版 */
.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 大屏幕头部样式 */
@media (min-width: 1100px) {
    .top {
        --header-height: 80px; /* 保持统一高度 */
        padding: 0 50px;
    }
}

.top-son {
    display: flex;
    width: 100%;
    max-width: 1150px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 100%;
    max-width: 60px;
    border-radius: 10%;
    margin-left: 30%;
}

/* 桌面导航 - 精致优化版 */
.nav {
    display: none;
    flex-grow: 1;
    margin-left: 30px;
}

@media (min-width: 768px) {
    .nav {
        display: block;
    }
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    align-items: center;
    gap: 8px; /* 均衡间距 */
}

.nav ul li {
    margin-right: 0;
    position: relative;
}

.nav ul li a {
    font-size: 15px; /* 适配高度的字号 */
    color: #444;
    padding: 8px 18px; /* 紧凑点击区域 */
    white-space: nowrap;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* hover效果 */
.nav ul li a:hover:not(.active) {
    color: #007BFF;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.08);
}

/* 当前页激活状态 */
.nav ul li a.active {
    color: #007BFF;
    font-weight: 600;
    background-color: #f0f7ff;
}

.nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #007BFF;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav ul li a.active:hover::after {
    width: 40px;
}

.nav ul li a:active:not(.active) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.05);
}

/* 搜索框优化（解决缩小后过窄和遮挡） */
.search-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    margin-left: 15px;
    min-width: 120px; /* 防止过窄 */
}

.search {
    display: block; /* 默认显示，不再隐藏 */
    position: relative;
    width: 100%;
    max-width: 250px;
    min-width: 100px; /* 小屏幕最小宽度，确保可用 */
}

/* 提前显示搜索框，避免拥挤 */
@media (min-width: 768px) {
    .search {
        min-width: 80px;
    }
    .search input {
        height: 36px; /* 略矮一点，适配移动端导航高度 */
        font-size: 13px;
        padding-left: 12px;
        padding-right: 35px;
    }
    .search button {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 992px) {
    .search {
        max-width: 280px; /* 大屏幕加宽 */
    }
}

.search input {
    width: 100%;
    height: 40px;
    border: 1px solid #007BFF;
    padding-left: 15px;
    padding-right: 40px; /* 预留按钮空间 */
    outline: none;
    border-radius: 8px;
    box-sizing: border-box; /* 防止padding撑大 */
}

.search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    background-color: #007BFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search button img {
    width: 16px;
    height: 16px;
}



/* 用户区域（解决遮挡问题） */
.user-area {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px; /* 减小间距 */
    z-index: 10; /* 确保显示在上方 */
}

/* 登录按钮样式 */
.login-btn {
    background-color: #007BFF;
    color: white;
    font-size: 14px;
    padding: 6px 14px; /* 紧凑尺寸 */
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-weight: 500;
}

.login-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.login-btn:active {
    box-shadow: 0 1px 3px rgba(0, 123, 255, 0.15);
}

.tou {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
}

.tou > a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image: url('/static/images/wx2-icon.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
}

.top p {
    font-size: 14px;
    margin: 0 5px;
    color: #a9b4ed;
}

.top p:hover {
    color: #23b6f9;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, red, orange);
        transition: all 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .top {
        --header-height: 60px;
        padding: 0px 60px 0px 10px;
    }

    .logo img {
        margin-left: 0%;
    }
}

/* 移动端导航 */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
}

@media (max-width: 767px) {
    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav li {
        padding: 0;
        margin: 4px 10px;
        border-radius: 8px;
        background-color: #f0f0f0;
        transition: background 0.3s;
    }

    .mobile-nav li a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        color: #333;
        font-weight: 500;
        border-bottom: none;
        transition: color 0.2s ease;
    }

    .mobile-nav li a:hover,
    .mobile-nav li a.active {
        color: #007BFF;
        background-color: #f5f8ff;
    }

    .mobile-nav li:active {
        background: #e8f4ff;
    }

    .mobile-nav a {
        -webkit-tap-highlight-color: transparent;
    }
}

/* 头部结束 */
/* banner开始 */
.banner {
    height: auto;
    width: 100%;
    background-color: #17B2EFFF;
    padding-top: var(--header-height);
    overflow: hidden;
}

.banner-center {
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    background: url(../images/banner2.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-left {
    width: 20%;
    min-width: 200px;
    height: 420px;
    background-color: rgba(19, 1, 75, .3);
}

.banner-left ul {
    padding-top: 20px;
}

.banner-left ul li {
    margin-left: 20px;
}

.banner-left ul li a {
    display: block;
    height: 45px;
    font-size: 14px;
    color: #fff;
}

.banner-left ul li a span {
    float: right;
    margin-right: 20px;
}

.banner-left ul li a:hover {
    color: #00a4ff;
}

.banner-right {
    height: 290px;
    width: 180px;
    margin-top: 50px;
    background-color: white;
}

.banner-right>.right-top {
    height: 50px;
    background-color: #9bceea;
}

.banner-right>.right-top h3 {
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.banner-right>.right-bottom {
    padding: 0 20px;
}

.right-bottom ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.right-bottom ul li h4 {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.right-bottom ul li p {
    text-align: center;
    font-size: 14px;
    color: #a5a5a5;
}

.right-bottom a {
    display: block;
    width: 100px;
    height: 40px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 7px;
    margin-left: 20px;
    line-height: 40px;
    text-align: center;
    color: #00a4ff;
    border: 1px solid #00a4ff;
}

@media (max-width: 768px) {
    .banner-center {
        background: url(../images/banner2.png) no-repeat center center;
        background-size: 120% auto;
        height: 170px;
    }

    .banner-left, .banner-right {
        display: none;
    }
}
/* banner结束 */

/* 页面h3样式 */
h3 {
    color: #333;
}

/* 课程名开始 */
.course{
    width: 1200px;
    height: 60px;
    margin: 0 auto;
    margin-top: 10px;
    background-color: #fff;
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
    border-radius: 8px;
}

.course ul{
    float: left;
}

.course  h3{
    float: left;
    padding: 0 35px;
    line-height: 60px;
    color: #00a4ff;
}

.course ul li{
    float: left;
    line-height: 60px;
}

.course ul li a {
    font-size: 16px;
    color: black;
    padding: 0 35px;
    border-left: 1px solid grey;
}

.course a{
    padding-left:200px;
    font-size: 14px;
    line-height: 60px;
    color: #00a4ff;
}
/* 课程名结束 */

/* 精品课程开始 */
.jingpin {
    width: 1200px;
    margin: 0 auto;
}

.jingpin-top {
    height: 75px;
}

.jingpin-top h3 {
    float: left;
    font-size: 20px;
    line-height: 75px;
}

.jingpin-top a {
    float: right;
    font-size: 16px;
    color: #a9b4ed;
    line-height: 75px;
    margin-right: 30px;
}

.jingpin-top a:hover {
    color: #23b6f9;
}

@media (max-width: 1200px) {
    .jingpin {
        width: 90%;
    }

    .jingpin-top {
        height: auto;
        padding: 15px 0;
    }
}

.nengli {
    height: auto;
}

.nengli ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nengli ul li {
    float: left;
    width: 223px;
    height: 270px;
    margin-right: 15px;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
}

.nengli ul li:hover {
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
}

.nengli ul li img {
    width: 100%;
    border-radius: 8px;
}

.nengli ul li img.main-icon {
    width: 100%;
    border-radius: 8px;
    height: 160px;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.nengli ul li img.main-icon:hover {
    transform: scale(1.05);
}

.nengli ul li h4 {
    font-size: 14px;
    color: #050505;
    font-weight: 400;
    margin: 20px 20px 20px 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.nengli ul li p {
    position: absolute;
    padding-left: 17px;
    font-size: 16px;
    font-weight: 700;
    color: #ff7c2d;
    bottom: 15px;
    left: 0;
}

.nengli ul li span {
    position: absolute;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #01aaed;
    bottom: 15px;
    right: 0;
}

.nengli ul li .new {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 30px;
    background-color: #ff7c2d;
    color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
}

.nengli ul li .liline {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background: linear-gradient(to right, #ffcccc, #ffd699);
    width: 97%;
}

@media (min-width: 1225px) {
    .nengli ul {
        width: 1225px;
    }
    .nengli ul li {
        width: 223px;
        margin-right: 15px;
    }
    .nengli ul li:nth-child(5n) {
        margin-right: 0;
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .nengli ul {
        width: 100%;
    }
    .nengli ul li {
        width: calc(50% - 15px);
        margin-right: 15px;
    }
    .nengli ul li:nth-child(2n) {
        margin-right: 0;
    }

    .nengli ul li img.main-icon {
        height: 120px;
    }

    .nengli ul li {
        height: 220px;
    }

    .nengli ul li h4 {
        margin: 15px 5px 5px 5px;
    }
}

.biancheng{
    height:80px;
}

.biancheng h3{
    float: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 80px;
}

.biancheng ul{
    float: left;
    margin-left: 340px;
}

.biancheng ul li{
    float: left;
    line-height: 80px;
    margin-right: 70px;
}

.biancheng ul li a{
    font-size: 16px;
    color: #bbbdbe;
}

.biancheng ul li a:hover{
    color: #23b6f9;
}

.biancheng a{
    float: right;
    font-size: 16px;
    color: #a9b4ed;
    line-height: 75px;
    margin-right: 30px;
}

.biancheng a:hover{
    color: #23b6f9;
}
/* 精品推荐结束 */

/* php开始 */
.php {
    height: auto;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.php > .php-left {
    float: left;
    height: auto;
    width: 100%;
    max-width: 230px;
    margin-bottom: 15px;
}

.php-left img {
    border-radius: 8px;
    width: 100%;
    height: 390px;
    max-height: 390px;
}

.php-right {
    float: right;
    height: auto;
    width: 100%;
    max-width: 955px;
    margin-left: 15px;
}

.php-right img {
    border-radius: 8px;
    width: 98%;
    height: auto;
    max-height: 100px;
}

.php-right.right-top {
    height: auto;
    width: 100%;
}

.right-bottom-xila ul {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.right-bottom-xila ul li {
    float: left;
    width: 100%;
    max-width: 223px;
    height: 270px;
    margin-top: 17px;
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
}

.right-bottom-xila ul li:hover {
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
}

.right-bottom-xila ul li img {
    width: 100%;
    border-radius: 8px;
    height: auto;
    max-height: 160px;
}

.right-bottom-xila ul li h4 {
    font-size: 14px;
    color: #050505;
    font-weight: 400;
    margin: 20px 20px 20px 25px;
}

.right-bottom-xila ul li p {
    padding-left: 25px;
    font-size: 12px;
    color: #999999;
}

.right-bottom-xila ul li span {
    font-weight: 700;
    color: #ff7c2d;
}

@media (max-width: 767px) {
    .php > .php-left {
        display: none;
    }
    .php-right {
        width: 100%;
        margin-left: 0;
    }
    .right-bottom-xila ul li {
        width: calc(50% - 15px);
        height:230px;
    }
    .right-bottom-xila ul li:nth-child(2n) {
        margin-right: 0;
    }

    .right-bottom-xila ul li img {
        height: 130px;
    }
}

@media (max-width: 1199px) {
    .php > .php-left {
        display: none;
    }
    .php-right {
        width: 100%;
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .right-bottom-xila ul li {
        width: 223px;
    }
    .right-bottom-xila ul li:nth-child(5n) {
        margin-right: 0;
    }
}

.ai{
    width: 1215px;
    height: 270px;
}

.ai ul li{
    float: left;
    width: 223px;
    height: 270px;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 8px;
}

.ai ul li img{
    width: 100%;
    height:160px;
    border-radius: 8px;
}

.ai ul li h4{
    font-size: 14px;
    color: #050505;
    font-weight: 400;
    margin: 20px 20px 20px 25px;
}

.ai ul li p{
    padding-left: 25px;
    font-size: 12px;
    color: #999999;
}

.ai ul li span{
    font-weight: 700;
    color: #ff7c2d;
}
/* php结束 */

/* 底部开始 */
.foot {
    width: 100%;
    height: auto;
    margin-top: 40px;
    background-color: #fff;
    padding: 30px 0;
}

.footer {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.foot-left {
    flex: 70%;
    min-width: 300px;
    height: auto;
    margin: 30px 0;
    color: #666666;
}

.foot-right {
    flex: 30%;
    min-width: 300px;
    height: auto;
    margin: 30px 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.links-container {
    display: flex;
    flex-direction: column;
}

.links-container h6 {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.links-container h6 span {
    margin-right: 20px;
}

.foot-left h6 {
    text-align: center;
}

.foot-right img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.foot-left h4 {
    margin-bottom: 15px;
}

.foot-left div {
    max-width: 680px;
    height: 1px;
    background-color: gray;
    transform: scaleY(0.5);
    margin: 20px 0;
}

@media (max-width: 1100px) {
    .foot-left, .foot-right {
        flex: 100%;
        text-align: center;
    }

    .links-container h6 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .links-container h6 span {
        margin: 10px;
    }

    .foot-right {
        justify-content: center;
    }
}
/* 底部结束 */

/* 提示框 */
.tooltip-content {
    display: none;
    position: absolute;
    top: 90%;
    left: 52%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* 苹果触屏适配 */
.top .mobile-nav li {
    margin: 4px 10px;
    border-radius: 8px;
    background-color: #f0f0f0;
    transition: background 0.3s, -webkit-background 0.3s;
    touch-action: manipulation;
}

.top .mobile-nav li:hover {
    background: #00feff;
}

.top .mobile-nav li:active {
    background: #00feff;
}

.top .mobile-nav a {
    padding: 5px 5px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    -webkit-tap-highlight-color: transparent;
}

/* 返回顶部按钮 */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: #007BFF;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-size: 25px;
    font-weight: 900;
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor, 0 0.5px 0 currentColor, 0 -0.5px 0 currentColor;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: none;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* 小屏幕特殊适配 */
@media (max-width: 767px) {
    .search-container {
        margin-left: 5px;
        min-width: 100px;
    }
    .search input {
        font-size: 13px;
    }
    .user-area {
        margin-left: 5px;
    }
    .login-btn {
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .search {
        min-width: 90px;
    }
    .search input {
        padding-left: 10px;
        padding-right: 35px;
    }
    .search button {
        width: 28px;
        height: 28px;
    }
}



/*下面是登录的*/
/* 登录模态框样式 */
.layui-form-item {
    margin-bottom: 12px; /* 减少间距，缩短表单高度 */
    display: flex;
    align-items: center;
}

.layui-form-item .layui-icon {
    margin-right: 10px;
}

/* 切换按钮样式 */
.toggle-link {
    color: #007BFF;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.toggle-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 下拉菜单样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 10%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

/* 基础表单切换动画 - 所有表单共用基础过渡 */
.login-form, .register-form, .weixin-login-form {
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 100%;
}

/* 登录表单样式 - 独立设置 */
.login-form {
    min-height: 300px; /* 登录表单高度 */
}

/* 注册表单样式 - 独立设置 */
.register-form {
    min-height: 300px; /* 注册表单高度 */
}

/* 微信登录表单样式 - 新增独立样式 */
.weixin-login-form {
    min-height: 300px; /* 微信登录表单独立高度（适配二维码+验证码） */
}

/* 登录表单隐藏状态 */
.login-form.hidden {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* 注册表单隐藏状态 */
.register-form.register-hidden {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

/* 微信登录表单隐藏状态 - 新增独立隐藏样式 */
.weixin-login-form.register-hidden {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

/* 容器需要相对定位 */
.admin-login-background {
    position: relative;
    overflow: hidden;
    transition: min-height 0.3s ease; /* 高度切换时的平滑过渡 */
}

/* 登录表单容器高度 */
.admin-login-background.login-active {
    min-height: 300px;
}

/* 注册表单容器高度 */
.admin-login-background.register-active {
    min-height: 300px;
}

/* 微信登录表单容器高度 - 新增独立容器高度 */
.admin-login-background.weixin-active {
    min-height: 300px; /* 适配微信登录表单高度，预留上下间距 */
}

/* 按钮区域布局优化 */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.form-actions a {
    color: #666;
    text-decoration: none;
}

.form-actions a:hover {
    color: #007BFF;
    text-decoration: underline;
}

.center-action {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* 微信登录特有样式 - 新增独立样式 */
.weixin-login-form .layui-form-item {
    justify-content: center; /* 微信登录表单项居中对齐 */
    margin-bottom: 10px; /* 微信登录表单项间距 */
}

.weixin-login-form .logo-title h2 {
    margin-bottom: 10px; /* 微信登录标题下方间距 */
    color: #333; /* 微信登录标题颜色 */
}

.weixin-login-form .verify-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 10px auto; /* 验证码容器居中+上下间距 */
}


