|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- #page{
- overflow-y: scroll;
- }
-
- .homeDetail{
- background: #ffffff;
- padding-bottom: 4vh;
- }
-
- .dialog_table{
- background: #ffffff;
- padding: 2vh;
- display: flex;
- justify-content: space-between;
- }
- .dialog_table_left{
- width: 70%;
- }
- .dialog_table_right{
- width: 28%;
- }
- .dialog_header{
- display: flex;
- align-items: center;
- }
-
- .dialog_header .name{
- font-size: 16px;
- color: #11234f;
- margin-left: 5px;
- }
-
- .dialog_header .bigWin{
- background: #ffb400;
- height: 2.5vh;
- width: 5%;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 2vh;
- margin-left: 20px;
- }
-
- .detail_header{
- display: flex;
- align-items: center;
- border-bottom: 2px solid #11234f;
- width: calc(100% - 4vh);
- margin: 0 auto;
- padding: 2vh 0;
- }
-
- .detail_tit{
- font-size: 26px;
- color: #333333;
- }
-
- .phoneIcon{
- background: #3fd227;
- height: 2.5vh;
- width: 5%;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 2vh;
- margin-left: 20px;
- }
- .bigWin{
- background: #ffb400;
- height: 2.5vh;
- width: 5%;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 2vh;
- margin-left: 20px;
- }
-
- .phone{
- background: #3fd227;
- line-height: 3vh;
- color: #ffffff;
- padding: 0 1%;
- border-radius: 5px;
- }
- .sanjiao-left{
- border-right-color: #3fd227;
- margin-left: 5px;
- }
- .dialog_main{
- margin-bottom: 2vh;
- }
-
- .dialog_main table{
- margin-top: 1vh;
- }
- .dialog_main table tr td{
- padding: 1vh 0;
- }
- .dialog_main table tr td:nth-child(odd){
- color: #6f6f6f;
- text-align: right;
- padding-right: 1%;
- }
- .dialog_main table tr td:nth-child(even){
- }
-
- .dialog_img{
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- margin-top: 2vh;
- }
-
- .dialog_img img{
- width: 30%;
- margin-right: 5%;
- margin-bottom: 3vh;
- }
-
- .dialog_img img:nth-child(3n){
- margin-right: 0;
- }
-
- .center_table{
- margin: 2vh 0;
- }
-
- .center_table table tr td{
- padding: 1vh 0;
- text-align: center;
- border-top: 1px solid #b9c2d3;
- }
-
- .center_table table tr td:first-child{
- border-left: 1px solid #b9c2d3;
- }
-
- .center_table table tr td:last-child{
- border-right: 1px solid #b9c2d3;
- }
-
- .center_table table tr:last-child td{
- border-bottom: 1px solid #b9c2d3;
- }
-
- .center_table table tr:first-child td{
- background: #e4edfe;
- }
- #container {
- overflow: hidden;
- width: 100%;
- height: 50vh;
- margin: 0;
- font-family: "微软雅黑";
- margin-top: 2vh;
- border-radius: 15px;
- }
- .footer{
- margin-top: 0;
- }
-
- .propertyImg img{
- width: 10%;
- margin-right: 2%;
- margin-bottom: 3vh;
- }
-
- .propertyImg img:nth-child(3n){
- margin-right: 2%;
- }
|