:root{
  --color-text: #0B0E0C;
  --color-text-primary: #425648;    
  --color-text-secondary: #37483C;
  --color-background: #fdfdfd;/*白*/
  --color-background-grey: rgb(250, 250, 250);/*浅灰*/
  --color-background-secondary: #cabbe9;/*深紫*/
  --color-line: rgb(0,181,173);/*灰绿*/
  --color-line-grey: #e2e2e2;
  --color-line-grey-dark: rgb(202,202,202);
}
body {
  margin:0;
  padding:0;
  background-color: #f2f2f2;
  color:var(--color-text);
  /*background: linear-gradient(to bottom, var(--color-line) 0%, var(--color-line) 30%, white 30%, white 100%);*/
  /*background-repeat: repeat;*/
}
input:focus {
  outline: none;
}
.header {
  width:100%;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid var(--color-line-grey);
}
.page {
  display:flex; /*子元素以flex布局*/
  flex-direction: row; /*主轴方向*/
  flex-wrap: nowrap; /*空间不够如何换行*/
  justify-content: space-between; /*元素在主轴上的对齐方式*/
  align-items: flex-start; /*元素在交叉轴上的对齐方式*/
  
  width:1020px;
  height:auto;
  margin-left:auto;
  margin-right:auto;
  margin-top: 50px;
  padding-bottom:30px;
  border-radius: 4px;
}
.page-left {
  display:flex;
  flex-direction: column; /*主轴方向*/
  align-items: center; /*元素在交叉轴上的对齐方式*/
  width: 200px;
  height: auto;
  padding-bottom:30px;
  border: 3px solid var(--color-line-grey);
  background-color:var(--color-background);
  border-radius: 4px;
}
.page-right {
  display:flex;
  flex-direction: column; /*主轴方向*/
  align-items: center; /*元素在交叉轴上的对齐方式*/
  width:800px;
  height:auto;
  padding-bottom:30px;
  border: 3px solid var(--color-line-grey);
  background-color:var(--color-background);
  border-radius: 4px;
}
.avatar {
  width:120px;
  height:120px;
  border-radius:50%;
  border: 1px solid var(--color-line);
  background-color:var(--color-background-grey);
  margin-top: 40px;
  margin-bottom: 40px;
  overflow:hidden;
}
.url {
  width:740px; /*url面板的宽度*/
  height:auto;
  border:1px solid var(--color-line);
  padding: 10px;
  margin-top: 10px;
  border: 1px dotted var(--color-line-grey);
  border-radius: 4px;
}      
/* 搜索面板 */
#search {
  display: flex;
  flex-direction: column; /*主轴方向*/
  align-items: center; /*元素在交叉轴上的对齐方式*/
  height:auto;
  margin-top: 30px;
  border-radius: 4px;
  border: 1px solid var(--color-line-grey);
  background-color: var(--color-background-grey);
}
.searchradio {
  margin-top: 20px;
}
.searchbar {
  display: flex;
  flex-direction: row; /*主轴方向*/
  justify-content: center; /*元素在主轴上的对齐方式*/
  align-items: center; /*元素在交叉轴上的对齐方式*/
  margin-top: 10px;
  margin-bottom: 40px;
}
.searchbar form{
  display: flex;
  flex-direction: row; /*主轴方向*/
  justify-content: flex-start; /*元素在主轴上的对齐方式*/
  align-items: center; /*元素在交叉轴上的对齐方式*/
}
span.clearkwd {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: var(--color-line-grey);
  border: 2px solid var(--color-line);
  border-right: 1px solid: var(--color-line-drey-dark);
  cursor: pointer;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color:rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 36px;
}
input.kwd {
  display: inline-block;
  width: 400px;
  height:34px;
  line-height:34px;
  font-size: 14px;
  border: 2px solid var(--color-line);
  border-left: 0;
  padding-left: 1rem;
}
span.btn {
  display: inline-block;
  width: 70px;
  height: 36px;
  line-height:36px;
  background-color: var(--color-line);
  border: 2px solid var(--color-line);
  text-align:center;
  color:#fff;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* 网址面板 */
a {
  text-decoration: none;
}
a, a:visited {
  color: var(--color-text);
}
.url ol li a:hover{
  color: var(--color-line);
}
ol,
ul {
  margin: 0;
  padding: 0;
}
.url ol {
  margin-left:1rem;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.url ol li {
  float: left;
  list-style: none;
  width:7em;
  height:2em;
  line-height: 2em;
  text-align:center;
  <!-- margin-top: .3em; -->
  <!-- margin-bottom: .3em; -->
  <!-- margin: 0.5rem 1rem 0.5rem 1rem; -->
}

/*天气信息*/
.weather {
  width:130px;
  height:auto;
  background-color: #f2f2f2;
  padding: 15px;
}
.weather ol {
  list-style: none;
}
.weather ol li {
  margin-top: .5em;
  margin-bottom: .5em;
  font-size: .8rem;
  text-align: left;
}
/* 推送 */
.pushme {
  width:160px;
  height:auto;
  margin-top:10px;  
}
.pushme form {
  padding:0;
  margin:0;
}
.pushme textarea {
  resize: none;
  margin-top: 10px;
  width: 155px;
  height: 200px;
  border: 1px solid var(--color-line-grey);
}
