.secction_upload h2 {
  font-size: 2.4rem;
  line-height: 2.7rem;
  font-weight: 500;
  max-width: 30.8rem;
}
.secction_upload .label {
  gap: 1rem;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme_color);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.6rem;
  background-color: var(--theme_color);
  padding: 1rem 2.4rem;
  transition: all 0.3s;
}
.secction_upload .label::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.4rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/icon-upload.svg) no-repeat center / contain;
}
.secction_upload .label.start_quote::after {
  background: url(../img/icon-cart.svg) no-repeat center / contain;
  background-size: 31px;

}
.secction_upload .label:hover {
  border-color: #1473d8;
  background-color: #1473d8;
}
.secction_upload .tip {
  color: var(--content_color);
  margin-top: 3.8rem;
  line-height: 2rem;
}
.secction_upload .left {
  width: 64.285714%;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2.6rem 3.8rem 3rem;
}
.secction_upload .left .zone {
  margin-top: 2rem;
  text-align: center;
  border-radius: 0.6rem;
  border: 1px dashed #b7c5ce;
  padding: 5.8rem 1.6rem 1.6rem;
}
.secction_upload .left .img {
  max-width: 8.4rem;
  margin: 0 auto;
}
.secction_upload .left .title {
  font-size: 2rem;
  margin-top: 3.4rem;
  margin-bottom: 2.6rem;
}
.secction_upload .right {
  width: 33.339286%;
  border-radius: 1rem;
  border: 1px solid #c9cfd3;
  padding: 2.6rem 3.6rem 3rem;
}
.secction_upload .right .zone {
  margin-top: 2rem;
  text-align: center;
  border-radius: 0.6rem;
  border: 1px dashed #b7c5ce;
  padding: 2.6rem 1.6rem 1.6rem;
}
.secction_upload .right .img {
  max-width: 11rem;
  margin: 0 auto 2.4rem;
}
.secction_upload .right .label {
  color: var(--theme_color);
  background-color: transparent;
  border-color: #d2d2d7;
}
.secction_upload .right .label::after {
  filter: none;
}
.secction_upload .right .label:hover {
  color: #fff;
  border-color: #1473d8;
  background-color: #1473d8;
}
.secction_upload .right .label:hover::after {
  filter: contrast(0) brightness(2);
}
.secction_upload .right .tip {
  font-size: 1.4rem;
  margin: 1.6rem auto 0;
  max-width: 31.6rem;
}
.dashborad_main {
  padding: 4.8rem 0 15.6rem;
}
.dashborad_main .head {
  margin-bottom: 1.4rem;
}
.dashborad_main .head a {
  font-weight: 500;
  color: var(--theme_color);
  transition: all 0.3s;
}
.dashborad_main .head a:hover {
  color: var(--title_color);
}
.dashborad_main h2 {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 600;
}
.dashborad_main .left {
  width: 39rem;
}
.dashborad_main .left .pagination {
  gap: 0.3rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #687c87;
}
.dashborad_main .left .pagination .current {
  color: var(--title_color);
}
.dashborad_main .dashboard_intro {
  border-radius: 1rem;
  background-color: #fff;
  padding: 2.6rem;
}
.dashborad_main .dashboard_intro_swiper {
  overflow: hidden;
}
.dashborad_main .dashboard_intro_swiper h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.7rem;
}
.dashborad_main .dashboard_intro_swiper .desc {
  color: #4c4c4c;
  font-weight: 300;
  line-height: 2.4rem;
  margin-top: 1.4rem;
}
.dashborad_main .dashboard_intro_swiper .img {
  margin-top: 2.2rem;
  border-radius: 1rem;
  padding-bottom: 57.39645%;
}
.dashborad_main .controls {
  display: grid;
  align-items: center;
  margin-top: 1.4rem;
  grid-template-columns: 1fr auto;
}
.dashborad_main .swiper_btns {
  display: flex;
  gap: 2rem;
}
.dashborad_main .swiper_btns div {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme_color);
}
.dashborad_main .swiper_btns div::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/icon-arrow.svg) no-repeat center / contain;
}
.dashborad_main .swiper_btns div:hover {
  background-color: #1473d8;
}
.dashborad_main .swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.dashborad_main .swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #e6eaed;
}
.dashborad_main .swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.dashborad_main .dashboard_numbers {
  border-radius: 1rem;
  background-color: #fff;
  padding: 3.2rem 2.6rem 2rem;
  margin-top: 2.8rem;
}
.dashborad_main .dashboard_numbers h3 {
  font-size: 1.8rem;
  font-weight: 500;
}
.dashborad_main .dashboard_numbers ul {
  margin-top: 1rem;
}
.dashborad_main .dashboard_numbers li {
  padding: 2rem 0;
  border-bottom: 1px solid #c9cfd3;
}
.dashborad_main .dashboard_numbers li:last-child {
  border-bottom: none;
}
.dashborad_main .dashboard_numbers li span {
  color: var(--theme_color);
  font-size: 3.6rem;
  font-weight: 600;
}
.dashborad_main .dashboard_numbers li p {
  color: #2a4e66;
  font-size: 1.4rem;
  margin-top: 0.8rem;
  font-weight: 500;
}
.dashborad_main .right {
  flex: 1;
  max-width: 96.6rem;
}
.dashborad_main .dashboard_quotes .list > ul {
  display: grid;
  gap: 3.4rem 3.519669%;
  grid-template-columns: repeat(2, 1fr);
}
.dashborad_main .dashboard_orders .nav {
  padding: 4.3rem 0 3.4rem;
}
.dashborad_main .dashboard_orders .nav ul {
  display: flex;
  gap: 4.2rem;
}
.dashborad_main .dashboard_orders .nav .item {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--content_color);
  transition: all 0.3s;
  cursor: pointer;
  padding: 1.4rem 0;
  border-bottom: 3px solid transparent;
}
.dashborad_main .dashboard_orders .nav .item.active {
  font-weight: 600;
}
.dashborad_main .dashboard_orders .nav .item.active,
.dashborad_main .dashboard_orders .nav .item:hover {
  color: var(--title_color);
  border-color: var(--theme_color);
}
.dashborad_main .orders_section .orders_wrap .tr {
  gap: 2.027027%;
  padding: 1.6rem 0;
  grid-template-columns: auto 1fr 10.387387% 14.765766% 17.81982% 18.018018%;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(1),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(1) {
  width: 21.25%;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(2),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(2) {
  width: auto;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(3),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(3) {
  width: 13.25%;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(4),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(4) {
  width: 25.5%;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(5),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(5) {
  width: 10.75%;
}
.dashborad_main .orders_section .orders_wrap .orders_detail table th:nth-child(6),
.dashborad_main .orders_section .orders_wrap .orders_detail table td:nth-child(6) {
  width: 9.75%;
}
.quote_item {
  overflow: hidden;
  border-radius: 1rem;
  background-color: #fff;
  padding: 3.6rem 3.2rem;
}
.quote_item .quote_infos {
  gap: 2rem;
  display: grid;
  grid-template-columns: 15.5rem 1fr;
}
.quote_item .quote_img {
  position: relative;
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-radius: 0.6rem;
}
.quote_item .quote_img_swiper .img {
  padding-bottom: 81.290323%;
}
.quote_item .pagination {
  position: absolute;
  left: 0.8rem;
  bottom: 0.4rem;
  gap: 0.3rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #687c87;
  z-index: 1;
}
.quote_item .pagination .current {
  color: var(--title_color);
}
.quote_item .swiper_btns {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  width: calc(100% - 1.6rem);
  display: flex;
  justify-content: space-between;
}
.quote_item .swiper_btns div {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background-color: rgba(22, 22, 22, 0.4);
  transition: all 0.3s;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote_item .swiper_btns div::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon-arrow.svg) no-repeat center / contain;
}
.quote_item .swiper_btns div:hover {
  background-color: var(--theme_color);
}
.quote_item .swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.quote_item .swiper_btns .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.quote_item .quote_info {
  display: flex;
  flex-direction: column;
}
.quote_item .title {
  font-size: 2rem;
  font-weight: 500;
}
.quote_item .qty {
  color: #687c87;
  font-size: 1.5rem;
  margin: 1.2rem 0;
}
.quote_item .price_wrap {
  margin-top: auto;
  gap: 2rem;
  display: grid;
  align-items: end;
  grid-template-columns: auto 1fr;
  text-align: right;
}
.quote_item .price_wrap .label {
  font-size: 1.5rem;
  font-weight: 500;
}
.quote_item .price_wrap .price {
  color: var(--theme_color);
  font-size: 2.6rem;
  font-weight: 600;
}
.quote_item .quote_metas {
  margin-top: 1.2rem;
}
.quote_item .quote_metas li {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c9cfd3;
  padding: 0.8rem 0;
}
.quote_item .quote_metas li:last-child {
  border-bottom: none;
}
.quote_item .quote_metas li .T {
  color: #687c87;
}
.quote_item .quote_metas li .C {
  font-size: 1.7rem;
  color: #092c47;
  font-weight: 500;
}
.quote_item .quote_btns {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.2rem 1rem;
  grid-template-columns: 1fr;
}
.quote_item .share {
  overflow: hidden;
  text-indent: -999px;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.6rem;
  border: 1px solid #c9cfd3;
  display: flex;
  align-items: center;
  display: none;
  justify-content: center;
  transition: all 0.3s;
}
.quote_item .share::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  background: url(../img/icon-share.svg) no-repeat center / contain;
}
.quote_item .share:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.quote_item .share:hover::after {
  filter: contrast(0) brightness(2);
}
.quote_item .download {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.7rem;
  height: 4.8rem;

  font-weight: 500;
  border-radius: 0.6rem;
  border: 1px solid #c9cfd3;
}
.quote_item .download::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  background: url(../img/icon-download.svg) no-repeat center / contain;
}
.quote_item .download:hover {
  color: #fff;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.quote_item .download:hover::before {
  filter: contrast(0) brightness(2);
}
.quote_item .btn {
  grid-column: 1/-1;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 1.1rem 2rem;
}
