.main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.downloadEtt{
  cursor: pointer;
}
.main_c {
  width: 1400px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main_c_tab {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 30px 0px;
}

.main_c_tab p {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.main_c_tab p span:nth-child(1) {
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #33333300;
  font-size: 12.6px;
  color: #797979;
  border: 0.9px solid #797979;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  line-height: 16px;
  margin-right: 10px;
  box-sizing: border-box;
}

.main_c_tab p.active span:nth-child(1) {
  background: #333333;
  color: #FFFFFF;
  border: 0.9px solid #333333;
}

.main_c_tab p span:nth-child(2) {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0;
  font-weight: 400;

}

.main_c_tab p.active span:nth-child(2) {
  color: #333333;
}

.main_c_tab img {
  width: 12px;
  height: 12px;
  margin: 0px 12px;
}

/* main_c_title */
.main_c_title {
  width: 100%;
  height: auto;
  margin: 5px 0px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.main_c_title p:nth-child(1) {
  width: 50%;
  font-size: 24px;
  color: #1D7A17;
  letter-spacing: 0;
  font-weight: 400;
}

.main_c_title p:nth-child(2) {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 50px;
  box-sizing: border-box;
}

.main_c_title p:nth-child(2) span {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0;
  font-weight: 400;
}

.main_c_title p:nth-child(2) img {
  width: 44px;
  height: 44px;
  margin-left: 15px;
}

/* main_c_warp */
.main_c_warp {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  justify-content: space-between;
  padding: 20px 0px;
  box-sizing: border-box;
  border-top: 1px solid #D8D6D6;
  border-bottom: 1px solid #D8D6D6;
}

.main_c_w_l {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 20px 0px;
  box-sizing: border-box;
}

.main_c_w_l_p {
  font-size: 31px;
  color: #333333;
  /* letter-spacing: 1px; */
  font-weight: 540;
  line-height: 36px;
}

.main_c_w_l_p1{
  color:rgba(51, 51, 51, 1);
  font-size:24px;
  margin-top:20px;
}

.main_c_w_l_btn{
  width:240px;
  height:50px;
  background:rgba(0, 125, 189, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  gap:5px;
  color:#fff;
  border-radius: 10px;
  margin-top:18px;
  cursor:pointer;
  user-select: none;
}

.main_c_w_l_btn span{
  cursor: pointer;
}

.main_c_w_l_btn:hover{
  opacity: .8;
}

.main_c_w_l_btn img{
  width:20px;
  height:20px;
}

.main_c_w_l_sp {
  font-size: 18px;
  color: #666666;
  /* letter-spacing: 1px; */
  font-weight: 400;
  margin: 20px 0px 20px;
}

.input_box {
  position: relative;
  width: 571px;
  height: 54px;
  border: 1px solid #C7C7C7;
  border-radius: 6px;
}

.input_box .label {
  font-size: 16px;
  color: #999;
  font-weight: 400;
  position: absolute;
  z-index: 1000;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input_box .label.focused {
  font-size: 12px;
  color: #017fff;
  top: -8px;
  transform: translateY(0);
  background: white;
  padding: 0 4px;
}

.input_box input {
  z-index: 11;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
  outline-color: #2f80ed;
  outline-width: 1px;
  text-indent: 20px;
  font-size: 18px;
  color: #444444;
  border: 1px solid #007DBD;
 
}

.input_box i {
  width: 40px;
  height: 24px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;

}

.input_box i img {
  width: 24px;
  height: 24px;
}

.input_box .searchResultsBox {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
}

.input_box .searchResultsBox li {
  font-family: "Microsoft YaHei";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #7d7d7d;
  opacity: 0.8;
  padding: 12px 0;
  cursor: pointer;
}

.input_box .searchResultsBox li span {
  color: #41a0ff;
}

.popularSearches {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.popularSearches p {
  font-family: "Microsoft YaHei";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #1f2023;
}

.popularSearches ul {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.popularSearches ul li {
  font-family: "Microsoft YaHei";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #999999;
  cursor: pointer;
}

.popularSearches ul li+li {
  margin-left: 10px;
}

.popularSearches ul li:hover {
  color: #017fff;
}

/*  */


.main_c_w_r {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0px 20px 30px;
  position: relative;
}

.main_c_w_r::before {
  width: 1px;
  height: 336px;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #D8D6D6;
}

.main_c_w_r_p {
  font-size: 16px;
  color: #222222;
  /* letter-spacing: 1px; */
  font-weight: 550;
}
.main_c_w_r_s{
  width: 450px;
  min-height: 224px;
  margin: 25px 60px 0px;
  padding: 20px 20px;
  box-sizing: border-box;
  overflow: hidden;
}
.swiper-slide{
  width: 322px;
  height: 210px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.swiper-slide img{
  width: 322px;
  height: 210px;
  
}



/*  */
.main_c_pro{
  width: 100%;
  height: auto;
  margin: 35px 0px 40px;
  padding: 0px 0px 20px;
  border-bottom: 1px solid #D8D6D6;
  display: flex;
  flex-direction: column;

}
.main_c_p_t{
  width: 100%;
  height: auto;
  font-size: 24px;
color: #333333;
/* letter-spacing: 1px; */
font-weight: 540;
margin-bottom: 28px;
line-height: 36px;
}
.main_c_p_c{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.main_c_p_c ul{
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main_c_p_c ul li{
  list-style-type: none;
  font-size: 16px;
color: #007DBD;
letter-spacing: 0;
font-weight: 400;
margin-bottom: 18px;
cursor: pointer;
border-bottom: 1px solid #007DBD00;
}
.main_c_p_c ul li:hover{
  border-bottom: 1px solid #007DBD;
}



/*  */
/*  main_c_gua*/
.main_c_gua{
  width: 100%;
  height: 206px;
  box-sizing: border-box;
  background: #FFFFFF;
box-shadow: 0 2px 13px 0 rgba(0,0,0,0.36);
border-radius: 12px;
display: flex;
flex-direction: row;
align-items: center;
margin: 0px 0px 40px;
}

.main_c_g_i{
  width: 492px;
  height: 206px;
  border-top-left-radius: 12px;
  border-bottom-left-radius:12px ;
}
.main_c_g_c{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}
.main_c_g_c p:nth-child(1){
  font-size: 20px;
  color: #333333;
  letter-spacing: 0;
  font-weight: 700;
}
.main_c_g_c p:nth-child(2){
  font-size: 16px;
color: #666666;
letter-spacing: 0;
font-weight: 400;
margin: 20px 0px;
}

.main_c_g_c a:nth-child(3){
  width: 115px;
  height: 36px;
  line-height: 36px;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
  background: #007DBD;
  cursor: pointer;
}
/*  */

#suggestionBox{
  width: 572px;
  height: 180px;
  background-color: #ffffff;

  left:'0px';
  overflow-y: scroll;
  z-index: 10;
  background: #FFFFFF;
box-shadow: 0 1px 10px 0 rgba(109,109,109,0.41);
border-radius: 6px;
}
.suggestion-item{
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  padding: 0px 20px;
  box-sizing: border-box;
}
.suggestion-item:hover{
  background-color: #f7f8fa;
}




#suggestionBox1{
  width: 412px;
  height: 180px;
  background-color: #ffffff;

  left:'0px';
  overflow-y: scroll;
  z-index: 10;
  background: #FFFFFF;
box-shadow: 0 1px 10px 0 rgba(109,109,109,0.41);
border-radius: 6px;
}
.suggestion-item1{
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  padding: 0px 20px;
  box-sizing: border-box;
}
.suggestion-item1:hover{
  background-color: #f7f8fa;
}