/* pages/create/create.wxss */
body{
  background-color: #bdd2ef;
}

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.topinfo{
  width: 90%;
  display: flex;
  align-items: center;
  margin: 18px 5% 20px;
}
.topinfo .left{
  display: flex;
  flex: 1;
  align-items: center;
}
.topinfo .right{
  display: flex;
  align-items: center;
}

.topinfo .right text{
  font-size: 16px;
}

.topinfo .right text.active{
  color: #008888;
}

.info-container {
  display: flex;
  /* height: 100vh; */
  flex-direction: column;
  overflow-x: scroll;
}

.scroll-container {
  position: relative;
  background-color: #000;
  overflow-x: scroll;
}

.scroll-view-style {
  width: 100%;
}

.scroll-view-container {
  width: 100%;

}

.editor-container {
  display: flex;
  justify-content: flex-start;
  height: 170px;
  background-color: #f5f5f5;
  padding-top: 20px;
  padding-left: 20px;
}

.canvas-container{
    background-color: #f8f8f8;
    height: 150px;
}

.horizontal-scale {
  display: flex;
  flex-direction: column;
}

.vertical-scale {
  display: flex;
  width: 100%;
  justify-content: right;
}


.bar{
  width: 96%;
  margin: 40px 2%;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0px;
}
.bar .left{
  display: flex;
  flex: 1;
  align-items: center;
}
.bar .left .lcenter{
  width: 78%;
  margin-left: 20rpx;
  margin-right: 20rpx;
  position: relative;
}

.bar .left .lcenter .line{
  height: 6rpx;
  background-color: #fff;
  margin-bottom: 12rpx;
  width: 100%;
  border-radius: 6rpx;
}

.bar .left .lcenter .progress{
  position: absolute;
  z-index: 99;
  top: -12rpx;
  width: 32rpx;
  height: 32rpx;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2rpx solid #256fc6;
  -webkit-box-shadow: 0 4px 8px rgba(255,75,7,0.3);
  box-shadow: 0 4px 8px rgba(23, 7, 255, 0.61);
}
.bar .left .lcenter .progress .sbox{
  width: 28px;
  height: 28px;
  background-color: #256fc6;
  border-radius: 50%;
  border: 4px solid #fff;
}

.bar .right{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar .right text{
  font-size: 28px;
}


.footer{
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: fixed;
  bottom: 0px;
  border-radius: 20px 20px 0px 0px;
}

.footer .ftop{
  width: 90%;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  margin: 20px 5%;
}
.footer .ftop .item{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
}
.footer .ftop .item text{
  font-size: 14px;
  color: #818181;
  margin-top: 10px;
}

.footer .opt{
  display: flex;
  align-items: center;
  width: 80%;
  margin: 20px 10%;
}
.footer .opt text{
  display: flex;
  justify-content: center;
  flex: 1;
}

.footer .opt text.btn{
  background-color: #256fc6;
  color: #fff;
  padding: 10px 0px;
  border-radius: 60px;
}


.progress{
    width: 100%;
    display: flex;
}