/* 重置与全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.mt10 {
    margin-top: 10px;
}

.head {
    height: auto;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
}

.tag {
    float: left;
    font-size: 1.4rem;
    font-weight: 700;
    padding-left: 0;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    border-radius: 3px;
}

.more {
    float: right;
    padding-right: 0;
}

.more a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(108, 92, 231, 0.1);
}

.more a:hover {
    background: rgba(108, 92, 231, 0.2);
    transform: translateY(-2px);
}

.clear {
    clear: both;
}

/* 搜索容器 - 3D效果 */
.searchcontainer {
    height: auto;
    overflow: hidden;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s ease;
}

.searchcontainer:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.searchcontainer .sidead {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(145deg, #6c5ce7, #00cec9);
    border: none;
    padding: 20px;
    border-radius: 15px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.searchcontainer .search {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-left: 0;
    background: none;
    position: relative;
}

/* 搜索模块 */
.selectmodule {
    height: auto;
    overflow: hidden;
    line-height: normal;
    padding-left: 0;
    background: none;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.selectmodule span {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    text-align: center;
    height: auto;
    float: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 30px;
    background: rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.selectmodule span.ck {
    color: white;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.selectcont {
    width: 100%;
    padding: 0;
    float: none;
}

.selectcont .selectcontin {
    position: relative;
    width: 100%;
    z-index: 1000;
}

#showselect {
    height: auto;
    overflow: hidden;
    line-height: normal;
    padding: 15px;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

#showselect:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.selectcontin .unselect {
    background: none;
}

.selectcontin .onclick {
    background: none;
}

#listselecta {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
}

#listselecta a {
    display: block;
    height: auto;
    overflow: hidden;
    line-height: normal;
    padding: 12px 15px;
    font-size: 1rem;
    background: none;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

#listselecta a.ck {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

#listselecta a:hover {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.searchcontainer .keyword {
    float: none;
    height: auto;
    padding-top: 0;
    width: 100%;
    background: none;
    margin-bottom: 20px;
}

.searchcontainer .keyword input {
    border: 2px solid #eef2f7;
    background: white;
    height: 50px;
    line-height: 50px;
    width: 100%;
    padding-left: 20px;
    font-size: 1rem;
    color: #666;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.searchcontainer .keyword input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.searchcontainer .search_sub {
    float: none;
    padding: 0;
    width: 100%;
}

.searchcontainer .search_sub input {
    border: none;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    width: 100%;
}

.searchcontainer .search_sub input:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
}

/* 横幅广告 */
.arrowbanner {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 主容器 */
.MainContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.MainContainer .sidel {
    width: 100%;
    float: none;
}

.MainContainer .mainr {
    width: 100%;
    float: none;
}

/* 会员活动 */
.memberaction {
    margin-bottom: 30px;
}

.memberaction .head {
    height: auto;
    overflow: hidden;
    line-height: normal;
    background: none;
    padding: 20px 0;
}

.memberaction .head .tag {
    background: none;
    padding-left: 0;
}

.memberaction .cont {
    border: none;
    padding: 20px;
    height: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.memberaction .cont div {
    width: calc(50% - 10px);
    height: auto;
    padding: 20px;
    float: none;
    background: linear-gradient(145deg, #f5f7fa, #e4e8f0);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.memberaction .cont div.ck1 {
    background: linear-gradient(145deg, #6c5ce7, #00cec9);
    color: white;
}

.memberaction .cont div.ck2 {
    background: linear-gradient(145deg, #6c5ce7, #00cec9);
    color: white;
}

.memberaction .cont div a {
    display: block;
    padding: 0;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.memberaction .cont div a:hover {
    text-decoration: none;
}

.memberaction .cont div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.2);
}

.changeinfo {
    margin-top: 30px;
    border: none;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.changeinfo .head {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    height: auto;
    color: white;
    padding: 20px;
}

.changeinfo .cont {
    padding: 20px;
}

.changeinfo .cont .h {
    height: auto;
    overflow: hidden;
    line-height: normal;
    background: none;
    padding-left: 0;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.changeinfo .cont .h div {
    width: auto;
    height: auto;
    text-align: center;
    background: rgba(108, 92, 231, 0.1);
    float: none;
    color: #666;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.changeinfo .cont .h div.choose {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.changeinfo .cont .list {
    height: auto;
    overflow: hidden;
    line-height: normal;
    padding: 10px 0;
    color: #777;
}

.changeinfo .cont .list a {
    padding-left: 0;
    color: #6c5ce7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.changeinfo .cont .list a:hover {
    color: #00cec9;
    text-decoration: underline;
}

/* 内容表格 */
.contenttable {
    border: none;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.contenttable .moreinf {
    border-left: none;
    width: 100%;
}

.contenttable .housenews {
    padding: 20px;
}

.contenttable .housenews .head {
    padding: 0 0 20px 0;
    border-bottom: 2px solid #f1f2f6;
}

.contenttable .housenews .head .tag {
    padding-left: 0;
}

.contenttable .housenews .cont {
    padding: 20px 0;
}

.contenttable .housenews .cont div {
    height: auto;
    overflow: hidden;
    padding: 15px 0 15px 30px;
    line-height: normal;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm1-11.5a1 1 0 0 0-2 0V12a1 1 0 0 0 .293.707l2.828 2.829a1 1 0 0 0 1.414-1.414L13 11.5z' fill='rgba(108,92,231,1)'/%3E%3C/svg%3E") left center no-repeat;
    background-size: 20px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #f1f2f6;
}

.contenttable .housenews .cont div span {
    display: block;
}

.contenttable .housenews .cont div a {
    float: none;
    font-size: 1rem;
}

.contenttable .housenews .cont div a.f {
    color: #6c5ce7;
    padding-right: 10px;
    font-weight: 600;
}

.contenttable .housenews .cont div a.t {
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contenttable .housenews .cont div a.t:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

.contenttable .housenews .cont div em {
    float: right;
    font-style: normal;
    color: #888;
    padding-right: 0;
}

.contenttable .housenews .cont div.list1 {
    height: auto;
    border-bottom: none;
    background: none;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 15px;
}

.contenttable .housenews .cont div.list1 a.f,
.contenttable .housenews .cont div.list1 em {
    display: inline;
}

.contenttable .housenews .cont div.list1 a.t {
    width: auto;
    text-align: left;
    font-weight: 700;
    color: #6c5ce7;
    line-height: normal;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.contenttable .housenews .cont div.list1 span {
    display: block;
    text-indent: 0;
    line-height: 1.6;
    color: #666;
}

.contenttable .housenews .cont div.list5 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contenttable .moreinf .slidecont {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px 0;
    margin: auto;
}

.contenttable .moreinf .head {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    padding: 20px;
    color: white;
}

.contenttable .moreinf .cont {
    padding: 20px;
    line-height: normal;
}

.contenttable .moreinf .cont .list {
    height: auto;
    overflow: hidden;
    padding: 10px 0 10px 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm1-11.5a1 1 0 0 0-2 0V12a1 1 0 0 0 .293.707l2.828 2.829a1 1 0 0 0 1.414-1.414L13 11.5z' fill='rgba(108,92,231,1)'/%3E%3C/svg%3E") left center no-repeat;
    background-size: 20px;
}

.contenttable .moreinf .cont .list a {
    float: none;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contenttable .moreinf .cont .list a:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

.contenttable .moreinf .cont .list span {
    float: right;
    color: #888;
}

/* 热门房产 */
.hothouse {
    margin-bottom: 30px;
}

.hothouse .head {
    height: auto;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    padding: 20px;
    color: white;
    border-radius: 20px 20px 0 0;
}

.hothouse .head .tag {
    background: none;
    padding-left: 0;
    color: white;
}

.hothouse .cont {
    border: none;
    background: white;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.hothouse .cont .c {
    padding: 0;
    background: none;
    line-height: normal;
    height: auto;
    overflow: visible;
}

.hothouse .cont .list {
    height: auto;
    overflow: hidden;
    padding: 15px;
    border-bottom: 1px solid #f1f2f6;
    transition: all 0.3s ease;
}

.hothouse .cont .list:hover {
    background: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
    transform: translateX(5px);
}

.hothouse .cont .list a,
.hothouse .cont .list span {
    display: block;
    float: none;
    margin-bottom: 5px;
}

.hothouse .cont .list a {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6c5ce7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hothouse .cont .list a:hover {
    color: #00cec9;
    text-decoration: underline;
}

.hothouse .cont .list span.city {
    width: 100%;
    color: #666;
}

.hothouse .cont .list span.price {
    width: 100%;
    color: #2c3e50;
    font-weight: 600;
}

.hothouse .cont .list span.price em {
    color: #ff7675;
    font-style: normal;
}

.sidecont {
    border: none;
    height: auto;
    overflow: hidden;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidecont .head {
    height: auto;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    padding: 20px;
    color: white;
}

.sidecont .head .tag {
    margin-left: 0;
    background: none;
    padding-left: 0;
    line-height: normal;
}

.sidecont .head .tag span {
    display: inline;
    background: none;
    padding-right: 0;
    color: white;
}

.sidecont .head .more {
    height: auto;
}

.sidecont .head .more a {
    padding-left: 0;
    background: none;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidecont .head .more a.post {
    background: none;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.sidecont .head .more a:hover {
    text-decoration: underline;
}

.sidecont .cont {
    height: auto;
    padding: 20px;
}

.sidecont .cont .listpic {
    width: 100%;
    height: auto;
    background: none;
    float: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidecont .cont .listpic:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sidecont .cont .listpic div {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: normal;
    margin: 0;
    padding: 15px;
    background: white;
}

.sidecont .cont .listpic div a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.sidecont .cont .listpic div.img {
    margin-top: 0;
    height: auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.sidecont .cont .listpic div.img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.3), rgba(0, 206, 201, 0.3));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.sidecont .cont .listpic:hover div.img:before {
    opacity: 1;
}

.sidecont .cont .listpic div.price {
    font-size: 1.2rem;
    color: #ff7675;
    font-weight: 700;
}

.sidecont1 .head .tag {
    background: none;
}

.sidecont1 .head .tag span {
    background: none;
}

.sidecont1 .cont .listpic {
    background: none;
}

/* 关于房产 */
.abouthouse {
    border: none;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.abouthouse .head {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    padding: 20px;
    color: white;
}

.abouthouse .cont {
    padding: 20px;
}

.abouthouse .cont table {
    border-bottom: none;
    margin-bottom: 20px;
    width: 100%;
}

.abouthouse .cont table .img {
    width: 100%;
    padding: 0 0 15px 0;
}

.abouthouse .cont table .img div {
    width: 100%;
    border: none;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.abouthouse .cont table .img div a {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.abouthouse .cont table .img div a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.3), rgba(0, 206, 201, 0.3));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.abouthouse .cont table .img div a:hover:before {
    opacity: 1;
}

.abouthouse .cont table .word {
    line-height: normal;
    color: #666;
    padding-top: 0;
}

.abouthouse .cont table .word h3 {
    height: auto;
    font-size: 1.2rem;
    overflow: hidden;
    margin-bottom: 10px;
    color: #2c3e50;
}

.abouthouse .cont table .word div a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.abouthouse .cont table .word div a:hover {
    color: #00cec9;
    text-decoration: underline;
}

.abouthouse .cont .list {
    height: auto;
    line-height: normal;
    padding: 10px 0 10px 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm1-11.5a1 1 0 0 0-2 0V12a1 1 0 0 0 .293.707l2.828 2.829a1 1 0 0 0 1.414-1.414L13 11.5z' fill='rgba(108,92,231,1)'/%3E%3C/svg%3E") left center no-repeat;
    background-size: 20px;
}

.abouthouse .cont .list a {
    float: none;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.abouthouse .cont .list a:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

.abouthouse .cont .list span {
    float: right;
    color: #888;
}

.tzhousecont {
    height: auto;
}

.tzhousecont .cont {
    padding: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tzhousecont .cont .listtz {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
    float: none;
}

.tzhousecont .cont .listtz dl {
    border: none;
    height: auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tzhousecont .cont .listtz dl:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tzhousecont .cont .listtz dl dt {
    float: none;
    width: 100%;
    padding-top: 0;
    margin-bottom: 15px;
}

.tzhousecont .cont .listtz dl dt div {
    width: 100%;
    border: none;
    height: 200px;
    overflow: hidden;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tzhousecont .cont .listtz dl dd {
    float: none;
    width: 100%;
    padding-top: 0;
    line-height: normal;
    color: #666;
}

.tzhousecont .cont .listtz dl dd h3,
.tzhousecont .cont .listtz dl dd div {
    height: auto;
    font-size: 1rem;
    overflow: hidden;
    padding: 0;
    margin-bottom: 10px;
}

.tzhousecont .cont .listtz dl dd h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

/* 顶部房产 */
.tophouse,
.mencont {
    border: none;
    height: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.tophouse .head,
.mencont .head {
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    padding: 20px;
    color: white;
}

#Span5,
#Span6,
#Span7,
#Span8 {
    width: auto;
    float: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#Span5 {
    width: auto;
    border-right: none;
}

.mencont .head .choose {
    background: rgba(255, 255, 255, 0.3);
}

.tophouse .head .choose {
    background: rgba(255, 255, 255, 0.3);
}

.tophouse .cont {
    padding: 20px;
}

.tophouse .cont .listpic {
    border-bottom: none;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tophouse .cont .listpic:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.tophouse .cont .listpic .img {
    width: 100%;
    padding: 0 0 15px 0;
}

.tophouse .cont .listpic .img div {
    width: 100%;
    border: none;
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tophouse .cont .listpic .img div a {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 150px;
}

.tophouse .cont .listpic .word {
    line-height: normal;
    padding-top: 0;
    color: #666;
}

.tophouse .cont .listpic .word div {
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.tophouse .cont .listpic .word div a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tophouse .cont .listpic .word div a:hover {
    color: #00cec9;
    text-decoration: underline;
}

.tophouse .cont .listpic .word div span {
    color: #ff7675;
    font-weight: 600;
}

.mencont .cont {
    height: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mencont .cont .listpic {
    width: 100%;
    float: none;
}

.mencont .cont .listpic .img {
    width: 100%;
    padding: 0 0 15px 0;
}

.mencont .cont .listpic .img div {
    width: 100%;
    border: none;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mencont .cont .listpic .img div a {
    width: 100%;
    overflow: hidden;
    display: block;
    text-align: center;
    height: 200px;
}

.mencont .cont .listpic .word {
    padding-top: 0;
    line-height: normal;
    color: #666;
}

.mencont .cont .listpic .word div {
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.mencont .cont .listpic .word div a {
    color: #6c5ce7;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mencont .cont .listpic .word div a:hover {
    color: #00cec9;
    text-decoration: underline;
}

.mencont .cont .listpic .word div.goto {
    background: none;
    padding-left: 0;
    margin-top: 15px;
}

.mencont .cont .listpic .word div.goto a {
    font-size: 1rem;
    font-weight: normal;
    color: #2c3e50;
    text-decoration: none;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mencont .cont .listpic .word div.goto a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/**********************/
.searchcontainer .sidead,
.memberaction,
.changeinfo,
.contenttable,
.sidecont,
.abouthouse,
.tophouse,
.mencont {
    background: white;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .MainContainer .sidel {
        width: calc(35% - 15px);
    }

    .MainContainer .mainr {
        width: calc(65% - 15px);
    }

    .searchcontainer .sidead {
        width: calc(25% - 15px);
        float: left;
        margin-right: 15px;
    }

    .searchcontainer .search {
        width: calc(75% - 15px);
        float: left;
        margin-left: 0;
    }

    .selectmodule {
        flex-wrap: nowrap;
    }

    .memberaction .cont div {
        width: calc(50% - 10px);
    }

    .contenttable .moreinf {
        width: calc(35% - 15px);
        float: right;
    }

    .contenttable .housenews {
        width: calc(65% - 15px);
        float: left;
    }

    .tzhousecont .cont .listtz {
        width: calc(50% - 10px);
    }

    .mencont .cont .listpic {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .searchcontainer .sidead {
        width: calc(20% - 15px);
    }

    .searchcontainer .search {
        width: calc(80% - 15px);
    }

    .memberaction .cont div {
        width: calc(25% - 10px);
    }

    .contenttable .moreinf {
        width: calc(30% - 15px);
    }

    .contenttable .housenews {
        width: calc(70% - 15px);
    }

    .tzhousecont .cont .listtz {
        width: calc(33.333% - 15px);
    }

    .mencont .cont .listpic {
        width: calc(33.333% - 15px);
    }
}

@media (max-width: 767px) {
    .searchcontainer {
        padding: 15px;
    }

    .memberaction .cont div {
        width: 100%;
    }

    .changeinfo .cont .h {
        flex-wrap: wrap;
    }

    .changeinfo .cont .h div {
        width: calc(50% - 5px);
        margin-bottom: 10px;
    }

    .contenttable .moreinf,
    .contenttable .housenews {
        width: 100%;
        float: none;
    }

    .tzhousecont .cont .listtz {
        width: 100%;
    }

    .mencont .cont .listpic {
        width: 100%;
    }

    #Span5, #Span6, #Span7, #Span8 {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }
}

/* 3D效果与动画 */
@media (prefers-reduced-motion: no-preference) {
    .searchcontainer,
    .memberaction,
    .changeinfo,
    .contenttable,
    .sidecont,
    .abouthouse,
    .tophouse,
    .mencont {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .searchcontainer:hover,
    .memberaction:hover,
    .changeinfo:hover,
    .contenttable:hover,
    .sidecont:hover,
    .abouthouse:hover,
    .tophouse:hover,
    .mencont:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

/* 赛博朋克风格元素 */
@media (min-width: 1024px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(125deg, #ff00cc 0%, #333399 100%);
        opacity: 0.03;
        z-index: -1;
        pointer-events: none;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00cec9, #6c5ce7);
}