html,body{
  font-family: "Noto Sans TC", sans-serif;
  margin: 0;
  padding: 0;
  color: #2f2f2f;
}
[v-cloak]{
  visibility: hidden;
}
*{
  box-sizing: border-box;
}
a{
  color: #2f2f2f;
  text-decoration: none;
}
.calculator{
  width: 100%;
  max-width: 100% !important;
}
.page-width{
  width: 1400px;
  max-width: 100%;
  padding: 0 27px;
  margin: 0 auto;
}
/*header*/
.header-con{
  margin: 0 auto;
  position: relative;
  height: 95px;
}
.logo{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%,-50%);
  margin-right: 27px;
}
.head-menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.head-menu ul{
  margin: 0;
  padding: 0;
  list-style: none;


}
.head-menu ul li{
  display: inline-block;
  font-size: 16px;
  margin-right: 40px;
  font-weight: 500;
}
.menu-trigger,.menu-close{
  display: none;
}
@keyframes menumove
{
  from {right:-100%;opacity:0}
  to {right:0;opacity:1}
}

@-webkit-keyframes menumove /*Safari and Chrome*/
{
  from {right:-100%;opacity:0}
  to {right:0;opacity:1}
}
@media screen and (max-width: 1600px) {
  .header-con{
    display: flex;
    align-items: center;
  }
  .logo{
    position: static;
    transform: none;
  }
}
@media screen and (max-width: 950px) {
  .head-menu{
    display: none;
  }
  .header-con.showmenu .head-menu{
    display: block;
    animation: menumove .5s;
  }
  .head-menu{
    position: fixed;
    width: 300px;
    max-width: 95%;
    height: 100%;
    background: #fff;
    z-index: 1;
    box-shadow: -5px 0 10px #ccc;
    right:0;
    top: 0;
    padding: 40px 20px;

  }
  .header-con:after{
    content: "";
    position: fixed;
    z-index: 0;
    background: rgba(0,0,0,.1);
    width: 100%;
    height: 100%;
    left:0;
    top: 0;
    display: none;
  }
  .header-con.showmenu:after{
    display: block;
  }
  .head-menu ul li{
    display: block;
    padding: 5px 0;
    font-size: 18px;
  }
  .header-con{
    justify-content: space-between;
  }
  .menu-trigger,.menu-close{
    display: block;
    font-size: 35px;
  }
  .menu-close{
    position: absolute;
    right: 27px;
    top: 27px;
  }
}
/*banner*/
.banner{
  background: #fafafa;
}
.banner .page-width{
  padding-top: 25px;
  padding-bottom: 75px;
}
.breadcrumb ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li{
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 500;
}

.tit1{
  font-size: 35px;
  font-weight: bold;
  color: #2f2f2f;
  margin-top: 70px;
  line-height: 1.2em;
}
.tit1 .span1{
  color: #ec6c49;
}
.tit1 .span2{
  color: #337574;
}
.tit2{
  margin-top: 10px;
  color: #676767;
  font-size: 25px;
  font-weight: 400;
}
.tit2 .span1{
  color: #2f2f2f;
  font-weight: bold;
}
.banner .text{
  font-size: 16px;
  color: #5a5a5a;
  margin-top: 45px;
}
.pointer{
  display: inline-block;
  width: 15px;
  height: 23px;
  background: url('../img/pointer.png') no-repeat center center;
  margin-left: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.banner .page-width{
  background: url('../img/bannerbg.png') no-repeat right bottom;
}
@media screen and (max-width: 800px) {
  .banner .page-width{
    background: none;
  }
}
/*calculator*/

.calculator{
  background: #fcf5eb;
}
.calculator .page-width{
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}
.calcu-main{
  width: 700px;
  padding-bottom: 200px;
}
.calcu-summary{
  width: 415px;
  max-width: 35%;
  position: absolute;
  right: 27px;
  top: 60px;
  background: #fff;
  border-radius: 25px;
  padding: 30px 30px;
  z-index: 2;
}
.calcu-summary.fixed{
  position: fixed;
  top: 50px;
  left: calc(50% + 255px);
}
.calcu-summary.fixed.reach-bottom{
  top: auto;
  bottom: 50px;
  left: auto;
  right: 27px;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .calcu-main{
    padding-bottom: 30px;
    max-width: 100%;
  }
  .calcu-summary,.calcu-summary.fixed{
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
}

.sm-avatar{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sm-avatar .info{

}
.sm-avatar .info .line1{
  font-size: 24px;
  font-weight: 800;
}
.sm-avatar .info .line2{
  font-size: 18px;
  font-weight: 300;
}
.calcu-summary .items-head{
  font-size: 24px;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.fold{
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url('../img/fold.png') no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
}
.calcu-summary .items-tit-bar{
  border-radius: 5px;
  background: #dfdfdf;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
.calcu-summary .items-tit-bar .tit{
  flex: 1;
}
.calcu-summary .items-tit-bar .total{
  width: 100px;
  text-align: right;
}
.calcu-summary .items-list{
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 35px;
}
.calcu-summary .items-list .item{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  /*margin-bottom: 5px;*/
}
.calcu-summary .item .tit{
  flex: 1;
}
.calcu-summary .item .tit .step_title{
  font-weight: 500;
  font-size: 16px;
}
.calcu-summary .item .total{
  width: 100px;
  text-align: right;
  font-weight: 500;
}
.calcu-summary .item.last{
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}
.contact-btn{
  display: block;
  background: #ec6c49;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  width: 120px;
  height: 37px;
  border-radius: 5px;
  text-align: center;
  line-height: 37px;
}
.step-item{
  margin-bottom: 35px;
  position:relative;
}
.step-title{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.step-desc{
  font-size: 15px;
  margin-top: 5px;
  font-weight: 300;
  letter-spacing: 0.8px;
  line-height: 1.6em;
}
.options{
  margin-top: 20px;
}
.options:after{
  content: "";
  clear: both;
  height: 0;
  display: block;
}
.style1 .option_item{
  display: inline-block;
  width: 200px;
  height: 270px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.style1 .option_item img{
  width: 170px;
  height: 185px;
  border-radius: 8px;
  margin-top: 15px;
}
.style1 .option_item h4{
  margin: 15px 0 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.8px;
}
.style1 .option_item:hover,
.style1 .option_item.selected{
  border-width: 1.5px;
  border-color: #ec6c49;
  box-shadow: 0 0 15px RGBA(224, 84, 55, .3);
}

.style2 .option_item{
  display: inline-block;
  width: 200px;
  min-height: 160px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.style2 .option_item img{
  width: 185px;
  height: 110px;
  border-radius: 8px;
  margin-top: 7.5px;
}
.style2 .option_item h4{
  margin: 5px 0 0 0;
  font-size: 15px;
  font-weight: 400;
  padding: 5px;
}
.style2 .option_item:hover,
.style2 .option_item.selected{
  border-width: 1.5px;
  border-color: #ec6c49;
  box-shadow: 0 0 15px RGBA(224, 84, 55, .3);
}


.style3 .option_item{
  display: flex;
  align-items: center;
  float: left;
  width: 280px;
  height: 95px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .style3 .option_item:nth-child(n+3) {
    margin-top: 30px;
  }

  .style1 .option_item:nth-child(n+4) {
    margin-top: 30px;
  }

  .style2 .option_item:nth-child(n+4) {
    margin-top: 30px;
  }
}
.style3 .option_item img{
  width: 90px;
  height: 80px;
  border-radius: 8px;
  margin-left: 7.5px;
}
.style3 .option_item h4{
  font-size: 15px;
  font-weight: 400;
  flex: 1;
  text-align: center;
}
.style3 .option_item:hover,
.style3 .option_item.selected{
  border-width: 1.5px;
  border-color: #ec6c49;
  box-shadow: 0 0 15px RGBA(224, 84, 55, .3);
}
@media screen and (max-width: 1024px) {
  .page-width{
    padding-left: 10px;
    padding-right: 10px;
  }
  .calcu-main{
    width: 100%;
  }
  .style1,.style2,.style3{
    display: flex;
    justify-content: space-between;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .style1 .option_item,
  .style2 .option_item{
    width: calc(33.3% - 7px);
    margin: 0;
    height: auto;
    padding: 5px;
    margin: 0 3.5px;
  }
  .style1 .option_item:nth-child(n+4),
  .style2 .option_item:nth-child(n+4){
    margin-top: 10px;
  }
  .style1 .option_item img,
  .style2 .option_item img{
    width: calc(100% - 10px);
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .style3 .option_item{
    width: calc(50% - 7px);
    margin: 0;
    height: auto;
    padding: 5px;
    margin: 0 3.5px;
  }
  .style3 .option_item:nth-child(n+3){
    margin-top: 7px;
  }
  .style3 .option_item img{
    margin-left: 0;
  }
}
/*dropdown style*/
.options.dropdown{
  position: relative;
  height: 95px;
  width: 582px;
  max-width: 100%;
}
.dropdown-options{
  display: none;
  position: absolute;
  max-height: 285px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  margin-top: 5px;
  background: #fff;
  border-radius: 12px;
  z-index: 2;
}
.options.dropdown.open .dropdown-options{
  display: block;
}
.options.dropdown .option_item{
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
  height: 95px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.options.dropdown .option_item img{
  width: 90px;
  height: 80px;
  border-radius: 8px;
  margin-left: 7.5px;
}
.options.dropdown .option_item h4{
  font-size: 15px;
  font-weight: 400;
  flex: 1;
  text-align: left;
  padding-left: 15px;
}
.dropdown-placeholder .option_item:hover,
.dropdown-placeholder .option_item.selected
.open .dropdown-placeholder .option_item{
  border-width: 1.5px;
  border-color: #ec6c49;
  box-shadow: 0 0 15px RGBA(224, 84, 55, .3);
}
.options.dropdown .dropdown-options .option_item{
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #efefef;
}
.dropdown-placeholder .fold{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
  transition: all .2s;
}
.open .dropdown-placeholder .fold{
  transform: rotate(180deg)  translate(0,50%);
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .options.dropdown{
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .style3{
    flex-wrap: wrap;
  }
  .style3 .option_item{
    width: 100%;
    margin-bottom: 10px;
  }
}
.option_slider{
  width: 588px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .option_slider{
    width: 100%;
  }
}
.slider-val{
  text-align: right;
  font-weight: bold;
  font-size: 20px;
  margin-top: 40px;
}
.slider-minmax{
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.slider-con{
  background: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  margin: 5px 0;
}
.el-slider__bar{
  background-color: #f57f31;
}
.el-slider__button{
  border-color: #f57f31;
}
@keyframes popupmove
{
  from {top:150px;opacity:0}
  to {top:50px;opacity:1}
}

@-webkit-keyframes popupmove /*Safari and Chrome*/
{
  from {top:150px;opacity:0}
  to {top:50px;opacity:1}
}
.popup-tip-con{
  position: absolute;
  left: calc(100% - 60px);
  top: 50px;
  z-index: 3;
  opacity: 1;
  animation: popupmove 2s;
}
@-webkit-keyframes popupmovemb /*Safari and Chrome*/
{
  from {bottom:0px;opacity:0}
  to {bottom:calc(100% - 100px);opacity:1}
}
@media screen and (max-width: 1024px) {

  .popup-tip-con {
    left: auto;
    right: 0;
    bottom: calc(100% - 100px);
    top: auto;
    animation: popupmovemb 2s;
  }
}
.close-popup{
  position: absolute;
  top: 5px;
  left: 5px;
  color: RGBA(224, 84, 55, 1.00);
  text-decoration: none;
  line-height: 1em;
}