.clockwise {
        animation: clockwise 1s forwards;
    }

    @keyframes clockwise {
        from {
            transform: rotate(0deg)
        }

        to {
            transform: rotate(360deg);
        }
    }

    .anticlockwise {
        animation: anticlockwise 1s forwards;
    }

    @keyframes anticlockwise {
        from {
            transform: rotate(360deg)
        }

        to {
            transform: rotate(0deg);
        }
    }

    .content {
        background-color: #f6f6f6;
        width: 100%;
        position: absolute;
        top:40px;

    }

    .content .munu-bar {
        width: 100%;
        background-color: #106FFF !important;
    }

    .content .layui-nav {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
        background-color: #106FFF !important;
    }

    .layui-nav li:first-child a {
        padding-left: 0 !important;
    }

    .content .main-content {
        width: 1200px;
        margin: 0 auto;
    }


    .img {
        height: 160px;
        background-size: 100% 100%;
        transition: all 0.6s;
        cursor: pointer;
    }

    .img:hover {
        transform: scale(1.05);
    }

    .layui-nav .layui-nav-item a {
        line-height: 60px;
    }

    .layui-container {
        width: 1200px !important;
        padding: 0 !important;
    }
    .hwjf-container{
        display: flex;
        justify-content: space-between;
        margin-top: 20px !important;
        padding-bottom: 55px !important;
    }
    .sidebar {
        width: 183px;
        height: 240px;
        background-color: #fff;
        color: white;
        box-sizing: border-box;
        margin-right: 20px;
    }

    .sidebar h2 {
        margin-bottom: 20px;
        background-color: #106FFF;
        font-size: 14px;
        line-height: 60px;
        text-align: center;
    }

    .sidebar ul {
        list-style: none;
    }

    .sidebar ul li {
        margin-bottom: 10px;
        color: #41474B;

    }

    .sidebar ul li a {
        text-decoration: none;
        display: block;
        padding: 10px;
        border-radius: 5px;
        color: #41474B;
    }

    .sidebar ul li a.active {
        background-color: white;
        color: #007bff;
    }

    .main-content h1 {
        margin-bottom: 20px;
        font-weight: bold;
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 24px;
        /* height: 44px; */
        display: flex;
        background-color: #fff;

    }

    .form-group label {
        display: block;
    }

    .form-group .label-name{
        min-width: 170px;
        text-align: right;
        margin-right: 20px;
        color: #000000FF;
        line-height: 44px;
    }

    .checkd-btn{
        margin-right: 5px;
    }

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

    .radio-group label {
        margin-right: 15px;
        line-height: 44px;
    }

    .btn {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        display: block;
        width: 299px;
        height: 40px;
        margin-left: 190px;
        font-size: 14px;
        margin-bottom: 50px;
    }

    .tab-menu {
        list-style: none;
    }

    .tab-item {
        padding: 10px 15px;
        cursor: pointer;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .tab-item.active {
        color: #007bff;
        border-left: 3px solid #007bff;
    }

    /* 申请流程 */
    .tab-content {
        display: none;
    }

    .remark{
        color: #00000099;
        font-size: 14px;
    }

    .tab-content.active {
        display: block;
        width: 997px;
    }

    .tab-content h1{
        margin: 0;
        padding: 22px 20px;
        border-bottom: 1px solid #00000014;
        background-color: #fff;

    }

    .tab-content .sqlc-bg{
        background: url("/assets/images/property/aboard/sqlc.png");
        width: 740px;
        height: 740px;
        margin: 0 130px;
        background-size: 100%;
        position: relative;
    }

    .submit-btn{
        position: absolute;
        top: 20px;
        left: 299px;
        background-color: #106FFFFF;
        padding: 18px 39px;
        /* line-height: 40px; */
        text-align: center;
        border-radius: 8px;
    }

    .submit-btn a{
        color: #fff;
        font-size: 16px;
    }

    .submit-btn a:hover{
        color:rgba(255,255,255,0.8);
    }

    .input-box{
        width: 632px;
        height: 44px;
        border-radius: 4px;
        border-color: #0000000A;
        padding: 12px 20px;
    }

    .upload-box {
        border: 1px dashed #ccc;
        border-radius: 5px;
        padding: 20px;
        width: 80px;
        height: 80px;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box;
        margin-right: 24px;
    }

    .sqlc-upload:hover{
        cursor: pointer;
    }

    .upload-box input {
        display: none;
    }

    .sqlc-upload{
        width: 20px;
        height: 20px;
        background-position: center;
        background-size: cover;
        margin-bottom: 4px;
    }

    .notice-box {
        margin-top: 10px;
        color: red;
        height: 112px;
    }

    .other-input{
        line-height: 24px;
    }

    .loading {
        display: none;
        text-align: center;
        padding: 30px;
        color: #666;
    }

    .error-message {
        color: #ff3300;
        margin-top: 10px;
        display: none;
    }

    /* 弹窗和遮罩层样式 */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .modal {
        background-color: #fff;
        width: 90%;
        max-width: 600px;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .modal-overlay.active {
        display: flex;
    }
    
    .modal-overlay.active .modal {
        transform: translateY(0);
        opacity: 1;
    }
    
    .modal-header {
        background-color: #f5f5f5;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .modal-title {
        font-size: 16px;
        font-weight: bold;
        color: #000000FF;
    }
    
    .close-modal {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #666;
        transition: color 0.2s;
    }
    
    .close-modal:hover {
        color: #333;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .explanation-text{
        font-size: 20px;
        color: #000000FF;
        margin-bottom: 16px;
        font-weight: bold;
    }
    
    .result-item {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .result-label {
        display: inline-block;
        font-size: 14px;
        color: #999999FF;
    }

    .info-text{
        color: info-text;
        font-size: 14px;
    }

    .modal-footer{
        display: flex;
        justify-content: flex-end;
        height: 40px;
    }

    .modal-footer .to-home{
        padding: 0px 16px;
        font-weight: 400;
        font-size: 14px;
        color: rgba(0,0,0,0.87);
        border-radius: 4px 4px 4px 4px;
        border: 1px solid #D9D9D9;
        box-sizing: border-box;
        line-height: 40px;
    }

    .to-home:hover{
        cursor: pointer;
    }