*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f9f9f9;
}
li{
    list-style: none;
}
.themeColor{
    color: #3399FE;
}
a{ color:#333; text-decoration: none; transition: color .3s, background-color .3s; }
a:hover{ text-decoration: none;}
a.link { color: #007dfe; }
a.link:hover{ text-decoration: underline;}
img{
    vertical-align: middle;
  }
.container1{
    width: 1400px;
    margin: auto;
}
.header{
    width: 100%;
    height: 120px;
    line-height: 120px;
    background: #fff;
}
.header .container1 {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.header .logo {
    height: 120px;
}
.header .search-box{
    padding-left: 10px;
    margin-top: 30px;
    width: 600px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #3399FE;
    border-radius: 30px 30px 30px 30px;
   
}
.header .search-box img{
    width: 33px;
    height: 33px;
    vertical-align: middle;
}
.header .search-box a{
    width: 60px;
    height: 60px;
    border: #007dfe;
    line-height: 60px;
    background-color: #007dfe;
    border-radius: 50%;
    text-align: center;
}
.header .search-box .input-box{
    padding:0 10px;
    flex: 1;
    border: none;
    outline:none;
    /* height: 60px; */
}
.header .search-box .input-box:focus-visible{
    border: none !important;
}
/* .header .search-box a{
    display: inline-block;
    width: 87px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #f03e00;
    color: #fff;
} */
.header .login a{
    /* margin-top: 40px; */
    display: inline-block;
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /* border: 1px solid #f03e00; */
}
/* .header .login a:nth-child(1){
    background: #f03e00;
    color:#fff;
} */
.login-line{
    width: 0px;
    height: 23px;
    border: 1px solid #3399FE;
}
.el-dropdown{
    height: 20px;
    line-height: 0.2;
    margin-top: 50px;
}

.footer{
    margin-top: 100px;
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #3399FE;
    color: #fff;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
}