h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

/* 搜索栏样式优化 */
.search-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: linear-gradient(140deg, white, white, #ecf7fd);
}


.search-form .form-group {
  margin-bottom: 0;
  margin-right: 0; /* 使用 gap 代替 margin */
}

.search-form .form-control {
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: none;
  background-color: #f9f9f9;
}

.search-form .form-control:focus {
  border-color: #3f8fe5;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(63, 143, 229, 0.1);
}

.search-form .btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
}

.search-form .btn-primary {
  background-color: #3f8fe5;
  border-color: #3f8fe5;
}

.search-form .btn-primary:hover {
  background-color: #2a7cd1;
  border-color: #2a7cd1;
  transform: translateY(-1px);
}

.search-form .btn-default {
  background-color: #f5f5f5;
  border-color: #e5e5e5;
  color: #666;
}

.search-form .btn-default:hover {
  background-color: #eeeeee;
  color: #333;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .search-form {
    padding: 15px;
  }
  .search-form .form-group {
    width: 100%;
  }
  .search-form .form-control {
    width: 100% !important;
  }
  .search-form .btn {
    width: calc(50% - 5px);
  }
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination-item {
  margin: 0;
  padding: 2px 10px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  min-width: 40px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  user-select: none;
}
.pagination .pagination-item:first-child{
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}
.pagination .pagination-item:last-of-type{
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  margin-right: 10px;
}
.pagination .pagination-item.active {
  background: #4ca2ff;
  color: #fff;
}
.pagination .pagination-item.disabled {
  background: #004181;
  cursor: default;
  color: #c6ddf3;
}
.pagination .pagination-item.blank{
  background: #f0f0f0;
  color: #adadad;
  cursor: default;
}
.pagination .changeLimit{
  font-size: 16px;
  border-radius:10px;
}
.pagination .limittext{
  font-size: 18px;
  line-height: 40px;
}
#projectList{
  display: grid;
  gap: 20px;
}
#projectList .project_item{
  position: relative;
  margin:20px 10px;
  padding:20px 5px;
  background: linear-gradient(140deg, white, white, #ecf7fd);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 -8px 12px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
#projectList .project_item:hover{
  transform: translateY(-5px);
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.2);
}
#projectList .project_item:hover .project_title{
  color: #00162e;
}
#projectList .project_item::before{
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100px;
  height: 20px;
  background: white;
  border-top-left-radius: 20px;
  box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.05);
  z-index: 9;
}
#projectList .project_item::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 100px;
  width: 20px;
  height: 20px;
  background: white;
  border-top-right-radius: 20px;
  box-shadow: 2px -4px 4px 0 rgba(0, 0, 0, 0.05);
  z-index: 10;
}
#projectList .project_title{
  color: #333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}
#projectList .project_title_con{
  min-height: 63px;
}
#projectList .lookDetail{
  color: #3f8fe5;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  bottom: 25px;
}
#projectList .tag{
  display: inline-block;
  margin:5px 10px 5px 0;
  font-size: 14px;
  background: #d7eaff;
  color: #1f60a7;
  padding: 0 10px;
  cursor: pointer;
}
#projectList .tag.tag-category{
  background: #ecc8fc;
  color: #5f1e7a;
}
#projectList .tag.tag-onsale{
  background: #ffcdd1;
  color: #a0131f;
}
#projectList .tag.tag-open{
  background: #ffffff;
  color: #333333;
}
#projectList .tag.tag-price{
  background: #ffe0c3;
  color: #aa5506;
}

.modal-dialog{
    top:30%;
    transform:translate(-50%);
    color: #222;
}
.modal-dialog .modal-header{
  border-bottom-color: #cbe8f9;
  border-bottom-width: 1px;
}
.modal-dialog .modal-content{
  background:linear-gradient(45deg, white, white, #c8e3ff);
  border-radius: 15px;
}
.modal .modal-title{
  font-size: 20px;
  font-weight: bold;
}
.modal .detailInfo{
  padding: 5px;
  font-size: 16px;
  color: #333;
}
.modal .detailTitle{
  font-size: .9em;
}
.modal .detailItem .detailTitle{
 margin-left: 10px;
}
.modal .detailItem{
  margin: 7px 0;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #d6e9ff;
  background: linear-gradient(45deg, #f2f8fd, white, white);
  
}
.modal .detailItem .buynow{
  float: right;
  margin-left: 10px;
  background: #3f8fe5;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal-dialog{
    width: 700px;
  }
}
.modal-content{
  padding: 20px;
}
.offsalenow{
  font-size: 1.5em;
  line-height: 3em;
  color: red;
}
.offsalenow>span{
  margin-left:20px;
}
.offsaleTag{
  position:absolute;
  left:20px;
  top:15px;
  width:80px;
  height:80px;
  text-align: center;
  line-height: 70px;
  font-size: 20px;
  font-weight: bold;
  border:4px solid red;
  border-radius:50%;
  color:red;
  rotate: -15deg;
  opacity: 0.7;
  user-select: none;
}
@media (min-width:1200px) {
    .col-md-5 .order-summary{
      margin-bottom:130px !important;
    }
}
@media (min-width:991px) {
    .col-md-5 .order-summary{
      margin-bottom:152px;
    }
}
@media (max-width:990px) {
    .col-md-5 .order-summary{
      margin-bottom:10px;
    }
}
.add_favorite{
  cursor: pointer;
  float: right;
}

.navbar-nav li a.active{
  color: #f7f7f7;
  background: #007bff;
}
@media (min-width: 768px) {
  .navbar-white .navbar-brand img {
    height: 50px;
  }
  .navbar-white .navbar-brand {
    height: 60px;
    line-height: 60px;
    padding: 5px 15px;
  }
  .navbar-white .navbar-nav>li:hover>a.active {
    color: white;
  }
  .search-form.fixed {
    position: fixed;
    top: 60px;
    width: 1130px;
    z-index: 999;
  }
  #projectList {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
}
@media (max-width: 768px) {
  .navbar-white .navbar-brand {
    height: 60px;
    line-height: 60px;
    padding: 5px 0 0 15px;
  }
  .navbar-white .navbar-brand img {
    height:50px;
  }
}
.navbar-white .navbar-nav>li:not(:last-child)::before{
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 1px;
  height: 0;
  background: #007bff;
  z-index: 9;
}
.navbar-white .navbar-nav>li:not(:last-child):hover::before{
  height: 100%;
}
.navbar-white .navbar-nav>li:not(:last-child)::after {
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #007bff;
}
.navbar-white .navbar-nav>li:not(:last-child):hover::after{
  width: 100%;
}
.navbar-white .navbar-nav>li:not(:last-child) a::before {
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  bottom: 0;
  right: 4px;
  width: 1px;
  height:0;
  background: #007bff;
  z-index: 11;
}
.navbar-white .navbar-nav>li:not(:last-child):hover a::before {
  height: 100%;
}
.navbar-white .navbar-nav>li:not(:last-child) a::after {
  transition: all 0.3s linear;
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  width: 0;
  height: 1px;
  background: #007bff;
  z-index: 11;
}

.navbar-white .navbar-nav>li:not(:last-child):hover a::after {
  width: 100%;
}

.navbar-white .navbar-nav>li:hover>a {
  color: #007bff;
}
.navbar-white .navbar-nav>li:not(:last-child):hover{
  /* transform: scale(1.1) !important; */
}
.add_favorite{
  color: #ff2c65;
  user-select: none;
}

.customer-service-wrapper {
  position: fixed;
  right: 0;
  bottom: 200px;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cs_tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
  color: #fff;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 12px rgba(24, 144, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}
.cs_tag span {
  /* 竖排显示文字 */
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.cs_tag:hover {
  background: linear-gradient(135deg, #40a9ff 0%, #1890ff 100%);
  box-shadow: -6px 6px 16px rgba(24, 144, 255, 0.5);
}

.cs_tag .fa-headset {
  font-size: 18px;
}

.cs-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.cs_tag.active .cs-arrow {
  transform: rotate(180deg);
}

.cs_content {
  position: absolute;
  right: -320px;
  bottom: -100px;
  width: 300px;
  background: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs_content.show {
  right: 0;
}

.cs_title {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
  color: #fff;
  padding: 20px;
}

.cs_title_main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cs_title_main .fa-headset {
  font-size: 24px;
}

.cs_title_tip {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

.cs_body {
  padding: 20px;
}

.cs_phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cs_avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1890ff 0%, #52c41a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.cs_info {
  flex: 1;
}

.cs_name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.cs_phone_num {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs_phone_num a {
  color: #1890ff;
  text-decoration: none;
  font-weight: 500;
}

.cs_phone_num a:hover {
  color: #40a9ff;
  text-decoration: underline;
}

.cs_qrcode {
  text-align: center;
}

.cs_qrcode_label {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  padding: 8px 0;
  border-top: 1px dashed #e8e8e8;
}

.cs_qrcode img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.cs_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 14px;
}

.cs_close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .cs_content {
    width: 280px;
    right: -280px;
  }

  .cs_content.show {
    right: 0;
  }
}
.orderiteminfo{
  font-size: 14px;
  color: #aa4415;
  margin-bottom: 12px;
}
/*# sourceMappingURL=user.css.map */
/*# sourceMappingURL=user.css.map */